:root {
  --ink: #163542;
  --ink-soft: #506772;
  --navy: #0f3544;
  --navy-deep: #092a37;
  --cyan: #19b4d8;
  --cyan-dark: #0797bc;
  --cyan-soft: #eaf8fc;
  --coral: #ef476f;
  --coral-dark: #df345d;
  --white: #ffffff;
  --line: #d9e7eb;
  --surface: #f7fbfc;
  --shadow: 0 22px 60px rgba(23, 64, 79, 0.12);
  --shadow-soft: 0 12px 34px rgba(23, 64, 79, 0.09);
  --radius-sm: 12px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 126px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

p:last-child {
  margin-bottom: 0;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--cyan-dark);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  border-radius: 10px;
  background: var(--coral);
  content: "";
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
}

.section-heading.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 72px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

.heading-line {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--cyan) 0 64%, var(--coral) 64% 100%);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.3;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  transition: transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button:focus-visible,
.nav-link:focus-visible,
.nav-cta:focus-visible,
.section-link-card:focus-visible,
.gallery-item:focus-visible,
.contact-action:focus-visible,
.footer-bottom a:focus-visible,
.lightbox-close:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(25, 180, 216, 0.45);
  outline-offset: 4px;
}

.button-primary {
  padding: 0 22px;
  color: var(--white);
  background: var(--cyan);
  box-shadow: 0 12px 26px rgba(25, 180, 216, 0.27);
}

.button-primary:hover {
  background: var(--cyan-dark);
  box-shadow: 0 16px 32px rgba(25, 180, 216, 0.33);
}

.button-link {
  min-height: auto;
  padding: 8px 4px;
  color: var(--ink);
}

.button-link svg {
  width: 21px;
  height: 21px;
  color: var(--coral);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(16, 52, 68, 0.1);
}

.topbar {
  height: 38px;
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy);
  font-size: 12px;
  line-height: 1;
}

.topbar-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

a.topbar-link {
  transition: color 0.2s ease;
}

a.topbar-link:hover {
  color: var(--white);
}

.topbar-link svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
  stroke-width: 1.8;
}

.topbar-location {
  margin-left: auto;
}

.nav-wrap {
  height: 88px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 220px;
  height: 58px;
}

.brand-crop {
  display: block;
  width: 220px;
  height: 58px;
  overflow: visible;
}

.brand img {
  width: 220px;
  max-width: 100%;
  transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.nav-link {
  position: relative;
  padding: 34px 0 31px;
  color: #425963;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 20px;
  border-radius: 7px;
  color: var(--white);
  background: var(--coral);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(239, 71, 111, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--cyan-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 150px;
  background:
    radial-gradient(circle at 7% 15%, rgba(25, 180, 216, 0.11), transparent 28%),
    linear-gradient(90deg, #f7fcfd 0%, #f7fcfd 51%, #eff9fc 51%, #eff9fc 100%);
}

.hero::before {
  position: absolute;
  top: 8%;
  left: -110px;
  width: 240px;
  height: 240px;
  border: 48px solid rgba(25, 180, 216, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 670px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 58px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 26px 0;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--cyan-dark);
  font-size: 0.84em;
}

.hero-text {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.62;
}

.hero-text p {
  margin-bottom: 10px;
}

.hero-text .hero-lead {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  right: calc((100vw - min(100vw - 48px, var(--container))) / -2);
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-radius: 0 0 0 84px;
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 53, 68, 0.16), transparent 32%);
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: -34px;
  display: grid;
  width: min(340px, 78%);
  min-height: 106px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 14px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 18px 45px rgba(239, 71, 111, 0.3);
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.hero-note p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.hero-note-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--coral);
  background: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 60px;
  right: -90px;
  width: 260px;
  height: 260px;
}

.orbit-two {
  top: 103px;
  right: -48px;
  width: 176px;
  height: 176px;
}

/* Section link cards */
.section-links {
  position: relative;
  z-index: 5;
  margin-top: -78px;
}

.section-links-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
}

.section-link-card {
  position: relative;
  display: grid;
  min-height: 166px;
  align-items: center;
  padding: 30px 34px;
  border-right: 1px solid #edf2f4;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: 66px 1fr 24px;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-link-card:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.section-link-card:last-child {
  border-right: 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.section-link-card.featured {
  z-index: 2;
  min-height: 188px;
  margin-top: -11px;
  margin-bottom: -11px;
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 60px rgba(23, 64, 79, 0.17);
}

.section-link-card:hover {
  z-index: 3;
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(23, 64, 79, 0.16);
}

.section-link-card > span:nth-child(2) {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.card-icon,
.price-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
}

.card-icon::after,
.price-icon::after {
  position: absolute;
}

.card-icon.cyan,
.price-icon.cyan {
  background: var(--cyan);
}

.card-icon.coral,
.price-icon.coral {
  background: var(--coral);
}

.card-icon svg,
.price-icon svg {
  width: 33px;
  height: 33px;
  stroke-width: 1.55;
}

.card-arrow {
  width: 20px;
  height: 20px;
  color: var(--coral);
  transition: transform 0.25s ease;
}

.section-link-card:hover .card-arrow {
  transform: translateX(4px);
}

/* Philosophy */
.philosophy {
  overflow: clip;
  padding-top: 152px;
}

.philosophy::before {
  position: absolute;
  top: 530px;
  right: -110px;
  width: 250px;
  height: 250px;
  border: 48px solid var(--cyan-soft);
  border-radius: 50%;
  content: "";
}

.philosophy-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 82px;
}

.profile-sticky {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.profile-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 0.71;
  margin: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 10px var(--radius-lg);
  background: var(--cyan-soft);
  box-shadow: var(--shadow);
}

.profile-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.profile-credential {
  position: relative;
  z-index: 2;
  width: calc(100% - 42px);
  margin: -54px 0 0 42px;
  padding: 24px;
  border-radius: 16px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.profile-credential svg {
  width: 37px;
  height: 37px;
  margin-bottom: 13px;
  color: var(--cyan);
}

.profile-credential p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.58;
}

.philosophy-copy {
  color: #425b66;
  font-size: 16px;
  line-height: 1.86;
}

.philosophy-copy p {
  margin-bottom: 28px;
}

.philosophy-copy .intro-copy {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
}

.philosophy-copy u,
.service-copy u {
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.philosophy-copy blockquote {
  position: relative;
  margin: 42px 0;
  padding: 30px 34px 30px 40px;
  overflow: hidden;
  border-radius: 14px;
  color: var(--ink);
  background: var(--cyan-soft);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.55;
}

.philosophy-copy blockquote::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: var(--coral);
  content: "";
}

.philosophy-copy blockquote p {
  margin: 0;
}

.philosophy-copy h3 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 20px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
}

.philosophy-copy h3::before {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 8px;
  background: var(--coral);
  content: "";
}

.philosophy-copy .closing-copy {
  margin-top: 42px;
  padding: 30px 32px;
  border: 1px solid rgba(25, 180, 216, 0.24);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 18px;
  font-weight: 700;
}

.philosophy-details {
  display: grid;
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 64px;
  align-items: start;
}

.philosophy-details > p {
  margin: 0;
}

.philosophy-details > blockquote,
.philosophy-details > p:nth-of-type(3),
.philosophy-details > .about-page-cta {
  grid-column: 1 / -1;
}

.philosophy-details > blockquote {
  margin: 56px 0 42px;
}

.philosophy-details > p:nth-of-type(3) {
  max-width: 940px;
  justify-self: center;
}

.about-page-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.why-section {
  overflow: clip;
  background: var(--surface);
}

.why-section::before {
  position: absolute;
  top: 190px;
  left: -120px;
  width: 270px;
  height: 270px;
  border: 52px solid var(--cyan-soft);
  border-radius: 50%;
  content: "";
}

.why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 72px;
}

.why-visual {
  position: relative;
}

.why-image {
  position: relative;
  z-index: 1;
  height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 12px var(--radius-lg);
  background: var(--cyan-soft);
  box-shadow: var(--shadow);
}

.why-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.why-accent {
  position: absolute;
  z-index: 3;
  right: 52px;
  bottom: -32px;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 8px solid var(--surface);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
  box-shadow: 0 16px 34px rgba(239, 71, 111, 0.25);
}

.why-dots {
  position: absolute;
  z-index: 0;
  right: -24px;
  bottom: -28px;
  width: 150px;
  height: 118px;
  background-image: radial-gradient(var(--cyan) 2px, transparent 2px);
  background-size: 14px 14px;
}

.why-copy {
  max-width: 1080px;
  margin-inline: auto;
  columns: 2;
  column-gap: 64px;
  column-rule: 1px solid var(--line);
}

.why-copy p {
  break-inside: auto;
}

.why-copy .closing-copy {
  column-span: all;
}

/* Services */
.soft-section {
  overflow: hidden;
  background: var(--cyan-soft);
}

.soft-section::before {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(25, 180, 216, 0.24);
  border-radius: 50%;
  content: "";
}

.split-layout {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 86px;
}

.split-copy {
  position: relative;
  z-index: 2;
}

.service-copy {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.82;
}

.service-copy p {
  margin-bottom: 24px;
}

.split-visual {
  position: relative;
}

.service-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 12px var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tall-image {
  height: 760px;
}

.tall-image img {
  object-position: 47% center;
}

.service-badge {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 52px;
  display: flex;
  width: 170px;
  height: 170px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 9px solid var(--cyan-soft);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 18px 34px rgba(239, 71, 111, 0.3);
  text-align: center;
}

.service-badge svg {
  width: 42px;
  height: 42px;
}

.service-badge span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.notice-card {
  display: grid;
  margin-top: 38px;
  padding: 24px 26px;
  border-left: 5px solid var(--coral);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: 58px 1fr;
  gap: 20px;
}

.notice-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
}

.notice-icon svg {
  width: 30px;
  height: 30px;
}

.notice-card h3 {
  margin: 3px 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.notice-card p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.pricing-section {
  overflow: hidden;
  padding-block: 120px 136px;
  background: var(--white);
}

.pricing-section::before {
  position: absolute;
  bottom: 54px;
  left: 18px;
  width: 190px;
  height: 140px;
  background-image: radial-gradient(rgba(25, 180, 216, 0.34) 2px, transparent 2px);
  background-size: 14px 14px;
  content: "";
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 28px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: flex-start;
  padding: 42px 40px;
  overflow: hidden;
  border: 1px solid #edf2f4;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 64, 79, 0.11);
  flex-direction: column;
  transition: box-shadow 0.25s ease, translate 0.25s ease;
}

.price-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--cyan);
  content: "";
}

.price-card:hover {
  box-shadow: 0 26px 64px rgba(23, 64, 79, 0.16);
  translate: 0 -5px;
}

.price-card .price-icon {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
}

.price-copy {
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
}

.price-copy h3 {
  min-height: 48px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.price-copy strong {
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
  white-space: nowrap;
}

.price-copy p {
  display: flex;
  align-items: center;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
}

.price-copy p span {
  color: var(--cyan-dark);
  font-size: 15px;
  font-weight: 800;
}

.price-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 7px;
  color: var(--white);
  background: var(--cyan);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.price-button:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
}

.price-card-featured {
  min-height: 430px;
  margin-block: -20px;
  border-color: transparent;
  color: var(--white);
  background: var(--cyan);
  box-shadow: 0 24px 60px rgba(25, 180, 216, 0.28);
}

.price-card-featured::before {
  background: var(--coral);
}

.price-card-featured .price-copy h3,
.price-card-featured .price-copy strong {
  color: var(--white);
}

.price-card-featured .price-copy p {
  border-top-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

.price-card-featured .price-copy p span {
  color: var(--white);
}

.price-button-coral {
  background: var(--coral);
}

.price-button-coral:hover {
  background: var(--coral-dark);
}

.rehabilitation {
  padding-top: 132px;
  background: var(--surface);
}

.rehab-layout {
  display: grid;
  gap: 66px;
}

.rehab-visual {
  position: relative;
  top: auto;
}

.landscape-image {
  height: 500px;
  min-height: 0;
}

.landscape-image img {
  object-position: 54% center;
}

.visual-dots {
  position: absolute;
  z-index: 2;
  right: -26px;
  bottom: -24px;
  width: 122px;
  height: 122px;
  background-image: radial-gradient(var(--coral) 2px, transparent 2px);
  background-size: 14px 14px;
}

.compact-notice {
  max-width: 760px;
  margin: 46px auto 0;
  border-left-color: var(--cyan);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.rehab-layout .service-copy {
  max-height: none;
  overflow: visible;
  columns: 2;
  column-gap: 58px;
  column-rule: 1px solid var(--line);
}

.rehab-layout .service-copy p {
  break-inside: auto;
}

/* Credentials */
.credentials {
  overflow: hidden;
  padding: 112px 0 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.credentials::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.credentials-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 84px;
}

.credentials-copy {
  align-self: center;
  padding: 22px 0 112px;
  font-size: 17px;
  line-height: 1.8;
}

.credentials-copy > p {
  max-width: 650px;
  margin-bottom: 22px;
}

.light-heading {
  margin-bottom: 34px;
}

.light-heading .eyebrow {
  color: #82dff1;
}

.light-heading h2 {
  color: var(--white);
}

.button-light {
  margin-top: 14px;
  padding: 0 22px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.button-light:hover {
  color: var(--white);
  background: var(--coral);
}

.button-light svg {
  color: var(--cyan-dark);
}

.credentials-visual {
  position: relative;
  height: 630px;
}

.credentials-visual::before {
  position: absolute;
  right: -40px;
  bottom: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.credentials-visual figure {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 600px;
  margin: 0;
  overflow: hidden;
  border-radius: 170px 170px 0 0;
}

.credentials-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.credentials-cross {
  position: absolute;
  z-index: 3;
  top: 58px;
  right: -28px;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 8px solid var(--navy);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 38px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.credentials-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.credentials-orbit-one {
  top: -120px;
  left: -140px;
  width: 430px;
  height: 430px;
}

.credentials-orbit-two {
  top: -66px;
  left: -86px;
  width: 320px;
  height: 320px;
}

/* Gallery */
.gallery {
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  height: 680px;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--cyan-soft);
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}

.gallery-main {
  grid-row: 1 / -1;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 42, 55, 0.36));
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.3, 1);
}

.gallery-main img {
  object-position: 53% center;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-plus {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 27px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(239, 71, 111, 0.28);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-plus,
.gallery-item:focus-visible .gallery-plus {
  opacity: 1;
  transform: translateY(0);
}

/* About / experience page */
.about-page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 118px;
  background:
    radial-gradient(circle at 8% 18%, rgba(25, 180, 216, 0.14), transparent 28%),
    linear-gradient(112deg, #f8fcfd 0%, #edf9fc 100%);
}

.about-page-hero::before {
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 540px;
  height: 540px;
  border: 82px solid rgba(25, 180, 216, 0.08);
  border-radius: 50%;
  content: "";
}

.about-page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 84px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
  color: #70838b;
  font-size: 12px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--cyan-dark);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--coral);
}

.about-page-copy h1 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.about-intro-card {
  display: grid;
  margin-top: 44px;
  padding: 30px 32px;
  border-left: 5px solid var(--coral);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  grid-template-columns: 58px 1fr;
  gap: 22px;
}

.about-intro-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan);
}

.about-intro-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.55;
}

.about-intro-card h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.about-intro-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.about-more {
  display: inline-flex;
  margin-left: 6px;
  color: var(--coral);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.about-more:hover {
  color: var(--coral-dark);
}

.about-page-visual {
  position: relative;
  height: 680px;
}

.about-page-portrait {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 82%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 190px 190px 30px 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-page-portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: inherit;
  content: "";
}

.about-page-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-spine-detail {
  position: absolute;
  z-index: 3;
  bottom: 38px;
  left: 0;
  width: 41%;
  aspect-ratio: 0.78;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 90px 90px 18px 18px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(23, 64, 79, 0.2);
}

.about-spine-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
}

.about-medical-mark {
  position: absolute;
  z-index: 4;
  top: 54px;
  left: 7%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 8px solid var(--cyan-soft);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(239, 71, 111, 0.28);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 38px;
  font-weight: 600;
}

.about-hero-orbit {
  position: absolute;
  border: 1px solid rgba(25, 180, 216, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-orbit-one {
  top: -130px;
  left: -150px;
  width: 400px;
  height: 400px;
}

.about-hero-orbit-two {
  top: -75px;
  left: -95px;
  width: 290px;
  height: 290px;
}

.training-section {
  overflow: hidden;
  background: var(--white);
}

.training-timeline {
  position: relative;
  max-width: 1020px;
  margin-inline: auto;
}

.training-timeline::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 113px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), rgba(25, 180, 216, 0.12));
  content: "";
}

.training-item {
  position: relative;
  display: grid;
  align-items: start;
  margin-bottom: 18px;
  grid-template-columns: 82px 1fr;
  gap: 62px;
}

.training-item::before {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 106px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 2px rgba(239, 71, 111, 0.18);
  content: "";
}

.training-item time {
  padding-top: 21px;
  color: var(--cyan-dark);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: right;
}

.training-item p {
  margin: 0;
  padding: 22px 26px;
  border: 1px solid #e2ecef;
  border-radius: 12px;
  color: var(--ink-soft);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(23, 64, 79, 0.055);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.training-item:hover p {
  border-color: rgba(25, 180, 216, 0.42);
  box-shadow: var(--shadow-soft);
  transform: translateX(5px);
}

.education-section {
  position: relative;
  overflow: hidden;
  background: var(--cyan-soft);
}

.education-orbit {
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 410px;
  height: 410px;
  border: 66px solid rgba(25, 180, 216, 0.09);
  border-radius: 50%;
}

.education-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.education-card {
  display: grid;
  min-height: 220px;
  align-items: start;
  padding: 32px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: 64px 1fr;
  gap: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.education-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.education-card-wide {
  grid-column: 1 / -1;
}

.education-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan);
}

.education-icon.coral-icon {
  background: var(--coral);
}

.education-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.55;
}

.education-card h3 {
  margin: 2px 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.education-card p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.education-card time {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 7px;
  color: var(--coral-dark);
  background: rgba(239, 71, 111, 0.09);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

/* Contact and footer */
.contact-band {
  padding: 70px 0;
  color: var(--white);
  background: var(--cyan);
}

.contact-band-inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
}

.contact-band .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.contact-band .eyebrow::before {
  background: var(--coral);
}

.contact-band h2 {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 800;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-action {
  display: grid;
  min-width: 310px;
  align-items: center;
  padding: 13px 20px 13px 13px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 30px rgba(9, 42, 55, 0.12);
  grid-template-columns: 46px 1fr;
  gap: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.25s ease;
}

.contact-action:hover {
  transform: translateX(-4px);
}

.contact-action-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: var(--cyan);
}

.contact-action-icon.coral-bg {
  background: var(--coral);
}

.contact-action-icon svg {
  width: 23px;
  height: 23px;
}

.location-map {
  padding-block: 118px 150px;
  background: var(--white);
}

.map-frame {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.72) saturate(0.65) contrast(0.95);
}

.site-footer {
  position: relative;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  background: var(--cyan);
}

.site-footer::before {
  position: absolute;
  bottom: 72px;
  left: 0;
  width: 280px;
  height: 190px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.34) 2px, transparent 2px);
  background-size: 15px 15px;
  content: "";
  opacity: 0.42;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  padding-top: 82px;
  padding-bottom: 70px;
  grid-template-areas: "brand location contact hours";
  grid-template-columns: 1.25fr 0.82fr 0.82fr 1.15fr;
  gap: 46px;
}

.footer-brand {
  grid-area: brand;
}

.footer-brand img {
  width: 245px;
  height: auto;
}

.footer-location {
  grid-area: location;
}

.footer-contact {
  grid-area: contact;
}

.footer-hours {
  min-height: 282px;
  margin-top: -126px;
  padding: 38px 34px;
  border-radius: 14px 14px 0 0;
  background:
    linear-gradient(135deg, rgba(239, 71, 111, 0.96), rgba(239, 71, 111, 0.89)),
    radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.18), transparent 42%);
  box-shadow: 0 20px 48px rgba(116, 30, 52, 0.22);
  grid-area: hours;
}

.footer-column h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-hours h2 {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-hours h2 svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.footer-column p,
.footer-column a {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  line-height: 1.6;
}

.footer-column a {
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--navy);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: none;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  border-top: 0;
  color: var(--ink-soft);
  background: var(--white);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

.footer-bottom a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-bottom a:hover {
  background: var(--coral);
  transform: translateY(-3px);
}

.footer-bottom svg {
  width: 18px;
  height: 18px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 40px;
  place-items: center;
  visibility: hidden;
  background: rgba(6, 28, 37, 0.92);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.open {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  object-fit: contain;
  transform: scale(0.97);
  transition: transform 0.25s ease;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: var(--coral);
}

.lightbox-close svg {
  width: 23px;
  height: 23px;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.25, 1);
}

.reveal-delay-short {
  transition-delay: 0.1s;
}

.reveal-delay {
  transition-delay: 0.2s;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 112px;
  }

  .topbar {
    height: 34px;
  }

  .nav-wrap {
    height: 78px;
  }

  .site-nav {
    gap: 14px;
  }

  .nav-link {
    padding: 29px 0 27px;
    font-size: 11.5px;
  }

  .nav-link::after {
    bottom: 20px;
  }

  .brand {
    width: 180px;
  }

  .brand-crop {
    width: 180px;
  }

  .brand img {
    width: 180px;
    transform: none;
  }

  .hero-grid {
    min-height: 620px;
    grid-template-columns: minmax(0, 1fr) minmax(410px, 1fr);
    gap: 36px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-text .hero-lead {
    font-size: 17px;
  }

  .section-link-card {
    padding: 26px 24px;
    grid-template-columns: 60px 1fr 18px;
    gap: 16px;
  }

  .section-link-card > span:nth-child(2) {
    font-size: 14px;
  }

  .philosophy-layout,
  .split-layout {
    gap: 54px;
  }

  .tall-image {
    height: 700px;
  }

  .landscape-image {
    height: 480px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding: 96px 0;
  }

  .topbar {
    display: none;
  }

  .nav-wrap {
    height: 78px;
  }

  .brand {
    width: 190px;
  }

  .brand-crop {
    width: 190px;
  }

  .brand img {
    width: 190px;
    transform: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 24px 28px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 26px 50px rgba(15, 53, 68, 0.14);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid #edf2f4;
    font-size: 14px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 16px;
  }

  .hero {
    padding: 64px 0 132px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-visual {
    min-height: 610px;
  }

  .hero-image-wrap {
    right: -24px;
    left: -24px;
    border-radius: 0 0 0 58px;
  }

  .hero-image-wrap img {
    object-position: 62% center;
  }

  .section-links-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-link-card,
  .section-link-card.featured {
    min-height: 118px;
    margin: 0;
    border: 0;
    border-radius: 12px;
  }

  .philosophy {
    padding-top: 124px;
  }

  .philosophy-layout {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 42px;
  }

  .profile-credential {
    width: 100%;
    margin-left: 0;
  }

  .profile-credential p {
    font-size: 12px;
  }

  .philosophy-copy {
    font-size: 15px;
    line-height: 1.78;
  }

  .philosophy-copy .intro-copy {
    font-size: 16px;
  }

  .philosophy-details {
    margin-top: 56px;
    padding-top: 52px;
    column-gap: 40px;
  }

  .why-layout {
    gap: 56px;
  }

  .why-image {
    height: 460px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .consultation-layout .split-visual {
    order: -1;
  }

  .tall-image {
    height: 620px;
  }

  .tall-image img {
    object-position: center 45%;
  }

  .service-badge {
    right: 28px;
  }

  .rehab-visual {
    position: relative;
    top: auto;
  }

  .landscape-image {
    height: 440px;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 520px);
  }

  .price-card-featured {
    margin-block: 0;
  }

  .credentials {
    padding-top: 92px;
  }

  .credentials-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 36px;
  }

  .credentials-copy {
    padding-bottom: 92px;
    font-size: 15px;
  }

  .credentials-visual {
    height: 560px;
  }

  .credentials-visual figure {
    height: 530px;
  }

  .gallery-grid {
    height: 580px;
  }

  .contact-band-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-action {
    min-width: 0;
  }

  .location-map {
    padding-block: 96px 130px;
  }

  .map-frame {
    height: 460px;
  }

  .footer-grid {
    padding-top: 70px;
    grid-template-areas:
      "brand hours"
      "location contact";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
  }

  .footer-hours {
    margin-top: -104px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading.centered {
    margin-bottom: 48px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .eyebrow {
    font-size: 10.5px;
  }

  .hero {
    padding: 48px 0 120px;
    background: var(--surface);
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: 45px;
  }

  .hero h1 span {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.72em;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-text .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-image-wrap {
    right: -16px;
    left: -16px;
    border-radius: 0 0 0 42px;
  }

  .hero-image-wrap img {
    object-position: 64% center;
  }

  .hero-note {
    right: 12px;
    bottom: -40px;
    width: calc(100% - 24px);
    padding: 18px;
  }

  .section-links {
    margin-top: -64px;
  }

  .section-link-card {
    padding: 22px;
    grid-template-columns: 54px 1fr 18px;
    gap: 14px;
  }

  .card-icon {
    width: 54px;
    height: 54px;
  }

  .card-icon svg {
    width: 28px;
    height: 28px;
  }

  .philosophy {
    padding-top: 102px;
  }

  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .profile-sticky {
    position: relative;
    top: auto;
  }

  .profile-image {
    max-height: 610px;
    aspect-ratio: 0.78;
  }

  .philosophy-copy {
    font-size: 15px;
    line-height: 1.75;
  }

  .philosophy-copy p {
    margin-bottom: 24px;
  }

  .philosophy-copy blockquote {
    margin: 32px 0;
    padding: 24px 24px 24px 28px;
    font-size: 18px;
  }

  .philosophy-details {
    margin-top: 48px;
    padding-top: 44px;
    grid-template-columns: 1fr;
  }

  .philosophy-details > p,
  .philosophy-details > blockquote,
  .philosophy-details > p:nth-of-type(3),
  .philosophy-details > .about-page-cta {
    grid-column: 1;
  }

  .philosophy-details > p + p {
    margin-top: 28px;
  }

  .philosophy-details > blockquote {
    margin: 36px 0 32px;
  }

  .about-page-cta {
    justify-content: flex-start;
    margin-top: 32px;
  }

  .philosophy-copy .closing-copy {
    padding: 24px;
    font-size: 16px;
  }

  .why-layout {
    gap: 46px;
  }

  .why-image {
    height: 340px;
  }

  .why-accent {
    right: 22px;
    bottom: -25px;
    width: 68px;
    height: 68px;
    border-width: 6px;
    font-size: 32px;
  }

  .why-dots {
    right: -8px;
  }

  .why-copy {
    columns: 1;
    column-rule: 0;
  }

  .tall-image,
  .landscape-image {
    height: 490px;
    min-height: 0;
  }

  .service-badge {
    right: 10px;
    bottom: 28px;
    width: 132px;
    height: 132px;
    border-width: 7px;
  }

  .service-badge svg {
    width: 34px;
    height: 34px;
  }

  .notice-card {
    padding: 22px;
    grid-template-columns: 46px 1fr;
    gap: 16px;
  }

  .notice-icon {
    width: 46px;
    height: 46px;
  }

  .price-card {
    min-height: 360px;
    padding: 34px 30px;
  }

  .price-card-featured {
    min-height: 390px;
  }

  .price-card .price-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
  }

  .price-copy h3 {
    min-height: 0;
  }

  .price-copy strong {
    font-size: 40px;
  }

  .rehabilitation {
    padding-top: 92px;
  }

  .rehab-layout {
    gap: 44px;
  }

  .rehab-layout .service-copy {
    columns: 1;
    column-rule: 0;
  }

  .rehab-layout .landscape-image {
    height: 360px;
  }

  .visual-dots {
    right: -8px;
    bottom: -20px;
  }

  .credentials {
    padding-top: 78px;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .credentials-copy {
    padding: 0 0 28px;
  }

  .credentials-visual {
    width: min(100%, 470px);
    height: 560px;
    margin-inline: auto;
  }

  .credentials-visual figure {
    height: 530px;
  }

  .credentials-cross {
    right: 2px;
  }

  .gallery-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-main {
    height: 320px;
    grid-row: auto;
  }

  .gallery-plus {
    opacity: 1;
    transform: none;
  }

  .contact-band {
    padding: 58px 0;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-action {
    width: 100%;
  }

  .location-map {
    padding-block: 78px 104px;
  }

  .map-frame {
    height: 380px;
    border-radius: 12px;
  }

  .site-footer {
    padding-top: 0;
  }

  .footer-grid {
    padding-top: 58px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "location"
      "contact"
      "hours";
    gap: 36px;
    padding-bottom: 52px;
  }

  .footer-hours {
    min-height: 0;
    margin-top: 6px;
    border-radius: 14px;
  }

  .footer-brand img {
    width: 230px;
  }

  .footer-bottom {
    padding-inline: 16px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 390px) {
  .brand,
  .brand-crop {
    width: 170px;
  }

  .brand img {
    width: 170px;
    transform: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .profile-image {
    max-height: 520px;
  }

  .tall-image,
  .landscape-image {
    height: 420px;
  }

  .gallery-item,
  .gallery-main {
    height: 280px;
  }
}

@media (max-width: 1120px) {
  .about-page-hero-grid {
    min-height: 620px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 48px;
  }

  .about-page-visual {
    height: 620px;
  }

  .about-intro-card {
    padding: 26px;
  }
}

@media (max-width: 920px) {
  .about-page-hero {
    padding: 72px 0 96px;
  }

  .about-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about-page-copy {
    max-width: 720px;
  }

  .about-page-visual {
    width: min(100%, 650px);
    height: 660px;
    margin-inline: auto;
  }

  .training-timeline {
    max-width: 820px;
  }

  .education-card {
    min-height: 238px;
  }
}

@media (max-width: 680px) {
  .about-page-hero {
    padding: 52px 0 78px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .about-page-copy h1 {
    font-size: 46px;
  }

  .about-intro-card {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
    padding: 24px;
  }

  .about-intro-card p {
    font-size: 14px;
  }

  .about-page-visual {
    height: 540px;
  }

  .about-page-portrait {
    width: 88%;
    border-radius: 130px 130px 24px 24px;
  }

  .about-spine-detail {
    bottom: 24px;
    width: 43%;
    border-width: 7px;
    border-radius: 68px 68px 14px 14px;
  }

  .about-medical-mark {
    top: 34px;
    left: 3%;
    width: 62px;
    height: 62px;
    border-width: 6px;
    font-size: 31px;
  }

  .training-timeline::before {
    top: 18px;
    bottom: 18px;
    left: 13px;
  }

  .training-item {
    padding-left: 42px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .training-item::before {
    top: 12px;
    left: 6px;
  }

  .training-item time {
    padding-top: 0;
    font-size: 18px;
    text-align: left;
  }

  .training-item p {
    padding: 19px 20px;
    font-size: 14px;
  }

  .training-item:hover p {
    transform: none;
  }

  .education-grid {
    grid-template-columns: 1fr;
  }

  .education-card,
  .education-card-wide {
    min-height: 0;
    padding: 25px;
    grid-column: auto;
    grid-template-columns: 54px 1fr;
    gap: 17px;
  }

  .education-icon {
    width: 52px;
    height: 52px;
  }

  .education-icon svg {
    width: 29px;
    height: 29px;
  }

  .education-card h3 {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .about-page-copy h1 {
    font-size: 41px;
  }

  .about-page-visual {
    height: 465px;
  }

  .education-card,
  .education-card-wide {
    grid-template-columns: 1fr;
  }
}
