:root {
  --night: #07334b;
  --night-deep: #042537;
  --blue: #0f78a7;
  --aqua: #75d3d2;
  --ice: #e9f6f5;
  --paper: #f8f6f0;
  --white: #ffffff;
  --ink: #12384d;
  --muted: #607985;
  --orange: #ef785d;
  --line: rgba(18, 56, 77, 0.18);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", "Avenir Next", Arial, sans-serif;
  --shell: 1280px;
  --ease: 300ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}
.shell {
  width: min(calc(100% - 72px), var(--shell));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--orange);
  color: #fff;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  width: 100px;
  height: 62px;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand img {
  width: 100px;
  height: auto;
}
.nav-menu {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 35px);
}
.nav-menu a {
  position: relative;
  padding: 31px 0 27px;
  color: #476777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 22px;
  height: 2px;
  background: var(--orange);
  transition: right var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  right: 0;
}
.header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-meta > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.header-call {
  padding: 10px 14px;
  background: var(--night);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--night);
  transition:
    transform var(--ease),
    opacity var(--ease);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}
h2 {
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 82px);
}
em {
  color: var(--blue);
  font-style: italic;
}
.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background var(--ease),
    color var(--ease),
    transform var(--ease);
}
.button:hover {
  transform: translateY(-3px);
}
.button-light {
  background: #fff;
  color: var(--night);
}
.button-light:hover {
  background: var(--aqua);
}
.button-dark {
  background: var(--night);
  color: #fff;
}
.button-dark:hover {
  background: var(--blue);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

/* A cinematic opening: the real team photograph is the page, not a card inside it. */
.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  overflow: hidden;
  background: var(--night-deep);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -20%;
  bottom: -20%;
  left: -22%;
  width: 13%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(117, 211, 210, 0.48),
    rgba(255, 255, 255, 0.28),
    transparent
  );
  filter: blur(3px);
  transform: skewX(-13deg);
}
.hero.is-transitioning::after {
  animation: hero-light-sweep 1.35s cubic-bezier(0.65, 0, 0.2, 1) both;
}
.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-media {
  z-index: 0;
}
.hero-slide {
  z-index: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  clip-path: polygon(100% 0, 100% 0, 88% 100%, 88% 100%);
  transform: translateZ(0);
}
.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: hero-diagonal-reveal 1.35s cubic-bezier(0.72, 0, 0.18, 1) both;
}
.hero-slide.is-exiting {
  z-index: 1;
  opacity: 1;
  clip-path: inset(0);
  animation: hero-scene-exit 1.45s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform, filter;
}
.hero-slide.is-active img {
  animation: hero-drift 4.9s cubic-bezier(0.18, 0.68, 0.24, 1) both;
}
.hero-slide.is-exiting img {
  animation: hero-image-exit 1.45s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}
.hero-slide-team img {
  object-position: center 60%;
}
.hero-slide-studio img {
  object-position: center center;
}
.hero-slide-care img {
  object-position: 44% center;
}
@keyframes hero-diagonal-reveal {
  0% {
    clip-path: polygon(100% 0, 100% 0, 88% 100%, 88% 100%);
    filter: saturate(0.45) brightness(0.72);
  }
  56% {
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    filter: saturate(0.8) brightness(0.9);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    filter: none;
  }
}
@keyframes hero-scene-exit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.28;
  }
}
@keyframes hero-drift {
  from {
    transform: scale(1.1) translateX(1.4%);
  }
  to {
    transform: scale(1.015) translateX(0);
  }
}
@keyframes hero-image-exit {
  from {
    transform: scale(1.015);
    filter: none;
  }
  to {
    transform: scale(1.1);
    filter: saturate(0.45) brightness(0.62) blur(2px);
  }
}
@keyframes hero-light-sweep {
  0% {
    left: -22%;
    opacity: 0;
  }
  18% {
    opacity: 0.85;
  }
  70% {
    opacity: 0.45;
  }
  100% {
    left: 112%;
    opacity: 0;
  }
}
.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 28, 43, 0.92) 0%,
      rgba(3, 28, 43, 0.71) 39%,
      rgba(3, 28, 43, 0.12) 68%,
      rgba(3, 28, 43, 0.28) 100%
    ),
    linear-gradient(0deg, rgba(3, 28, 43, 0.5), transparent 45%);
}
.hero-stage {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 86px);
  padding-top: 44px;
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
}
.hero-location {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero-copy {
  align-self: end;
  max-width: 650px;
  padding-top: 110px;
}
.hero .eyebrow {
  color: var(--aqua);
}
.hero h1 {
  max-width: 630px;
  margin-bottom: 26px;
  font-size: clamp(54px, 5.25vw, 78px);
  line-height: 0.91;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.14);
}
.hero h1 em {
  color: #fff;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-rating {
  align-self: end;
  min-width: 178px;
  margin-left: 50px;
  padding: 22px 0 4px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.hero-rating .stars {
  display: block;
  margin-bottom: 4px;
  color: #ffd46d;
  font-size: 13px;
  letter-spacing: 3px;
}
.hero-rating strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}
.hero-rating p {
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-scene-nav {
  position: absolute;
  top: 112px;
  right: 0;
  width: 180px;
  display: flex;
  flex-direction: column;
}
.hero-scene-nav button {
  position: relative;
  padding: 12px 0 13px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-align: left;
  transition: color var(--ease);
}
.hero-scene-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 2px;
  background: var(--aqua);
}
.hero-scene-nav button.is-active {
  color: #fff;
}
.hero-scene-nav button.is-active::after {
  right: 0;
  animation: scene-progress 4.5s linear both;
}
.hero-scene-nav span {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.hero-scene-nav strong {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero.is-paused .hero-scene-nav button.is-active::after {
  animation-play-state: paused;
}
@keyframes scene-progress {
  from {
    right: 100%;
  }
  to {
    right: 0;
  }
}

.promise-bar {
  background: var(--aqua);
  color: var(--night);
}
.promise-track {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
}
.promise-track p {
  margin: 0;
  padding: 0 28px;
  border-left: 1px solid rgba(7, 51, 75, 0.25);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.promise-track p:first-child {
  padding-left: 0;
  border-left: 0;
}
.promise-track p span {
  margin-right: 12px;
  opacity: 0.55;
  font-size: 10px;
}
.promise-track > a {
  padding: 13px 16px;
  background: var(--night);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.promise-track > a span {
  margin-left: 12px;
}

.philosophy {
  padding: 150px 0;
  background: var(--paper);
}
.philosophy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(80px, 12vw, 170px);
  align-items: start;
}
.philosophy-intro {
  position: sticky;
  top: 130px;
}
.philosophy-intro h2 {
  max-width: 690px;
}
.philosophy-intro > p:last-child {
  max-width: 570px;
  color: var(--muted);
  font-size: 17px;
}
.principle-list {
  counter-reset: principle;
  border-top: 1px solid var(--line);
}
.principle {
  min-height: 180px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}
.principle > span {
  padding-top: 3px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}
.principle h3 {
  margin-bottom: 10px;
  color: var(--night);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}
.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.studio-story {
  position: relative;
  min-height: 820px;
  background: var(--night);
}
.studio-visual {
  position: absolute;
  inset: 0 0 0 26%;
  overflow: hidden;
}
.studio-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--night) 0%,
    rgba(7, 51, 75, 0.2) 48%,
    rgba(7, 51, 75, 0.08)
  );
}
.studio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-visual > p {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.studio-card {
  position: relative;
  z-index: 3;
  width: min(620px, calc(100% - 72px));
  margin-left: max(36px, calc((100vw - var(--shell)) / 2));
  padding: 150px 0 100px;
  color: #fff;
}
.studio-card .eyebrow {
  color: var(--aqua);
}
.studio-card h2 {
  max-width: 600px;
}
.studio-card > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.73);
}
.studio-card blockquote {
  max-width: 430px;
  margin: 70px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--aqua);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.3;
}

.doctor {
  padding: 150px 0;
  overflow: hidden;
  background: #dfeeed;
}
.doctor-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 11vw, 160px);
  align-items: center;
}
.doctor-portrait {
  position: relative;
  margin: 0;
  padding: 50px 0 0 52px;
}
.doctor-portrait::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  left: 0;
  top: 0;
  border: 1px solid var(--blue);
  border-radius: 50%;
}
.portrait-window {
  position: relative;
  height: 650px;
  overflow: hidden;
  border-radius: 240px 240px 0 0;
  background: #b8d4d7;
  box-shadow: 20px 20px 0 var(--aqua);
}
.portrait-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.doctor-portrait figcaption {
  position: relative;
  width: 86%;
  margin: -34px 0 0 auto;
  padding: 18px 22px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(7, 51, 75, 0.12);
}
.doctor-portrait figcaption span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.doctor-portrait figcaption strong {
  color: var(--night);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}
.doctor-copy h2 {
  max-width: 740px;
}
.doctor-copy > p {
  max-width: 650px;
  color: var(--muted);
}
.doctor-copy .lead {
  color: var(--night);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}
.doctor-principles {
  margin: 38px 0;
  padding: 0;
  border-top: 1px solid rgba(7, 51, 75, 0.25);
  list-style: none;
}
.doctor-principles li {
  padding: 15px 0;
  display: flex;
  gap: 22px;
  border-bottom: 1px solid rgba(7, 51, 75, 0.25);
  color: var(--night);
  font-size: 13px;
  font-weight: 700;
}
.doctor-principles span {
  color: var(--orange);
  font-size: 10px;
}

.services {
  padding: 150px 0;
  background: #fff;
}
.services-intro {
  margin-bottom: 76px;
  display: grid;
  grid-template-columns: 1.2fr 0.65fr;
  gap: 90px;
  align-items: end;
}
.services-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}
.services-intro > p {
  margin: 0 0 6px;
  color: var(--muted);
}
.service-directory {
  border-top: 2px solid var(--night);
}
.service-row {
  min-height: 245px;
  padding: 35px 0;
  display: grid;
  grid-template-columns: 72px 1.05fr 1fr 1fr;
  gap: clamp(24px, 4vw, 62px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.service-number {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}
.service-row h3 {
  margin: -3px 0 0;
  color: var(--night);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
}
.service-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.service-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-row li {
  position: relative;
  padding: 3px 0 3px 15px;
  color: #496977;
  font-size: 12px;
}
.service-row li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--aqua);
}
.urgent-band {
  margin-top: 48px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1.25fr auto;
  gap: 45px;
  align-items: center;
  background: var(--night);
  color: #fff;
}
.urgent-band span {
  color: var(--aqua);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.urgent-band h3 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}
.urgent-band > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.care-promise {
  margin: 0;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 0.55fr 1.7fr auto;
  gap: 45px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.care-promise > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.care-promise p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.care-promise strong {
  display: block;
  color: var(--night);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}
.care-promise > a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--night);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.first-visit {
  padding: 150px 0;
  background: var(--ice);
}
.visit-heading {
  position: relative;
  margin-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}
.visit-heading .eyebrow {
  grid-column: 1 / -1;
}
.visit-heading h2 {
  max-width: 820px;
  margin: 0;
}
.visit-heading > p:last-child {
  margin: 0 0 8px 30px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.visit-path {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}
.visit-path li {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.visit-path span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}
.visit-path h3 {
  max-width: 270px;
  margin: 86px 0 14px;
  color: var(--night);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
}
.visit-path p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.visit-link {
  margin: 36px 0 0 auto;
  width: fit-content;
  display: flex;
  gap: 25px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--night);
  font-size: 12px;
  font-weight: 700;
}

.specials {
  padding: 0 0 140px;
  background: var(--ice);
}
.specials-layout {
  padding: 58px 62px;
  display: grid;
  grid-template-columns: 0.42fr 1.35fr 0.7fr auto;
  gap: 38px;
  align-items: center;
  background: var(--orange);
  color: #fff;
}
.specials-layout .eyebrow {
  margin: 0;
  color: var(--night);
}
.specials-layout h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
}
.specials-layout > p:not(.eyebrow) {
  margin: 0;
  font-size: 13px;
}
.specials-layout > a {
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.conversation {
  padding: 150px 0;
  background: var(--paper);
}
.conversation-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(80px, 12vw, 170px);
}
.faq-heading {
  align-self: start;
  position: sticky;
  top: 130px;
}
.faq-heading h2 {
  font-size: clamp(48px, 5vw, 72px);
}
.faq-heading > p:last-child {
  color: var(--muted);
}
.faq-list {
  border-top: 2px solid var(--night);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  color: var(--night);
  font-family: var(--serif);
  font-size: 22px;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 21px;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 24px;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details > div {
  padding: 0 55px 26px 0;
  color: var(--muted);
  font-size: 14px;
}
.faq-list details p {
  margin: 0;
}
.faq-list details a {
  color: var(--blue);
  text-decoration: underline;
}

.location {
  padding: 140px 0 150px;
  background: var(--ice);
}
.location-heading {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}
.location-heading .eyebrow {
  margin: 0 0 18px;
}
.location-heading h2 {
  margin: 0;
  font-size: clamp(52px, 5.8vw, 78px);
}
.location-heading h2 em {
  color: var(--blue);
}
.location-heading > div > p {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
}
.location-stage {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 10px solid #fff;
  box-shadow:
    18px 18px 0 var(--aqua),
    0 26px 58px rgba(7, 51, 75, 0.12);
}
.location-map {
  position: relative;
  min-height: 540px;
  background: #c9dfe1;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.78) contrast(0.96);
}
.location-coordinates {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--night);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.location-panel {
  padding: 38px 42px 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 42px;
  align-items: center;
  background: var(--night);
  color: #fff;
}
.location-panel-kicker {
  margin: 0;
  color: var(--aqua);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.location-facts {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.location-facts > div {
  min-width: 0;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.location-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.location-facts > div:last-child {
  padding-right: 0;
}
.location-facts dt {
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.location-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}
.location-facts dd a {
  color: #fff;
}
.location-facts small {
  margin-top: 7px;
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.55;
}
.location-directions {
  min-width: 220px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  background: #fff;
  color: var(--night);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    background var(--ease),
    color var(--ease);
}
.location-directions:hover {
  background: var(--orange);
  color: #fff;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--night-deep);
  color: #fff;
}
.contact-photo {
  position: absolute;
  inset: 0 50% 0 0;
}
.contact-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 37, 55, 0.18), var(--night-deep));
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
}
.contact-layout {
  position: relative;
  z-index: 2;
  min-height: 850px;
  padding-top: 130px;
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(80px, 11vw, 155px);
  align-items: center;
}
.contact-copy {
  align-self: end;
  padding: 40px 0;
}
.contact-copy .eyebrow {
  color: var(--aqua);
}
.contact-copy h2 {
  font-size: clamp(52px, 6vw, 82px);
}
.contact-copy h2 em {
  color: var(--aqua);
}
.contact-copy > p {
  color: rgba(255, 255, 255, 0.75);
}
.contact-details {
  margin: 45px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.contact-details > div {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.contact-details dt {
  color: var(--aqua);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.contact-details dd {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
}
.contact-form {
  padding: 46px;
  background: #fff;
  color: var(--night);
  box-shadow: 18px 18px 0 var(--aqua);
}
.form-heading {
  margin-bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.form-heading p {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
}
.form-heading span {
  color: var(--muted);
  font-size: 11px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--night);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid #a9bec7;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--night);
  font-size: 16px;
  text-transform: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  border-bottom-width: 2px;
}
.contact-form select {
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2307334b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.contact-form textarea {
  resize: vertical;
}
.prototype-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.form-status {
  min-height: 24px;
  margin: 9px 0 0;
  color: var(--blue);
  font-size: 12px;
}

.footer {
  padding-top: 90px;
  background: var(--paper);
}
.footer-top {
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.9fr;
  gap: 60px;
}
.footer-brand {
  width: 112px;
  height: 66px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.footer-brand img {
  width: 112px;
}
.footer-brand-block p {
  max-width: 280px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.footer h2 {
  margin: 0 0 20px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-hours dl {
  margin: 0;
}
.footer-hours dl > div {
  padding: 3px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  color: var(--muted);
  font-size: 12px;
}
.footer-hours dt {
  color: var(--night);
}
.footer-hours dd {
  margin: 0;
  text-align: right;
  white-space: nowrap;
}
.footer-visit address {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}
.footer-visit a {
  font-size: 12px;
  font-weight: 700;
}
.footer-call {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}
.footer-call p {
  color: var(--muted);
  font-size: 12px;
}
.footer-call a {
  display: block;
  color: var(--night);
  font-family: var(--serif);
  font-size: 25px;
}
.footer-bottom {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom p:nth-child(2) {
  text-align: center;
}
.footer-bottom a {
  justify-self: end;
  color: var(--night);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}
.reveal.delay-1 {
  transition-delay: 100ms;
}
.reveal.delay-2 {
  transition-delay: 200ms;
}
.reveal.delay-3 {
  transition-delay: 300ms;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .nav-menu {
    gap: 16px;
  }
  .nav-menu a {
    font-size: 10px;
  }
  .header-meta > span {
    display: none;
  }
  .philosophy-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
  }
  .service-row {
    grid-template-columns: 55px 0.9fr 1fr;
  }
  .service-row ul {
    grid-column: 3;
  }
  .service-row > p {
    grid-column: 2;
  }
  .specials-layout {
    grid-template-columns: 0.5fr 1.5fr 1fr;
  }
  .specials-layout > a {
    grid-column: 3;
    justify-self: start;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }
  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }
  .nav {
    height: 76px;
  }
  .header-meta {
    margin-left: auto;
  }
  .header-call {
    display: none;
  }
  .nav-toggle {
    display: block;
    z-index: 3;
  }
  .nav-menu {
    position: fixed;
    inset: 76px 0 auto;
    z-index: 2;
    margin: 0;
    padding: 28px 20px 42px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-125%);
    transition:
      opacity var(--ease),
      visibility var(--ease),
      transform var(--ease);
  }
  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }
  .nav-menu a::after {
    display: none;
  }
  .hero,
  .hero-stage {
    min-height: calc(100svh - 76px);
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 28, 43, 0.91), rgba(3, 28, 43, 0.45)),
      linear-gradient(0deg, rgba(3, 28, 43, 0.7), transparent 60%);
  }
  .hero-stage {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 590px;
    padding-top: 135px;
  }
  .hero h1 {
    max-width: 560px;
    font-size: clamp(50px, 9.2vw, 70px);
  }
  .hero-rating {
    margin: 34px 0 0;
    padding: 15px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
  .hero-rating .stars,
  .hero-rating strong {
    display: inline-block;
    margin-right: 10px;
  }
  .hero-scene-nav {
    top: 95px;
    right: 0;
    width: 160px;
  }
  .promise-track {
    grid-template-columns: 1fr 1fr;
    padding: 18px 0;
  }
  .promise-track p {
    padding: 10px 20px;
  }
  .promise-track p:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
  .promise-track > a {
    justify-self: end;
  }
  .philosophy,
  .doctor,
  .services,
  .first-visit,
  .conversation,
  .location {
    padding: 105px 0;
  }
  .philosophy-layout,
  .doctor-layout,
  .services-intro,
  .conversation-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .philosophy-intro,
  .faq-heading {
    position: static;
  }
  .studio-story {
    min-height: 940px;
  }
  .studio-visual {
    inset: 0;
    height: 54%;
  }
  .studio-visual::after {
    background: linear-gradient(0deg, var(--night), rgba(7, 51, 75, 0.06) 60%);
  }
  .studio-card {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 490px;
  }
  .doctor-portrait {
    width: min(570px, 86%);
    margin-inline: auto;
  }
  .portrait-window {
    height: 620px;
  }
  .doctor-copy {
    max-width: 700px;
  }
  .service-row {
    grid-template-columns: 55px 1fr 1fr;
  }
  .service-row h3 {
    grid-column: 2;
  }
  .service-row > p {
    grid-column: 3;
  }
  .service-row ul {
    grid-column: 2 / -1;
    padding-left: 0;
  }
  .urgent-band {
    grid-template-columns: 1fr 1fr;
  }
  .urgent-band .button {
    grid-column: 2;
    justify-self: start;
  }
  .care-promise {
    grid-template-columns: 0.5fr 1.5fr;
  }
  .care-promise > a {
    grid-column: 2;
    justify-self: start;
  }
  .visit-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .visit-heading > p:last-child {
    margin-left: 0;
  }
  .visit-path {
    grid-template-columns: 1fr;
  }
  .visit-path li {
    min-height: 240px;
  }
  .visit-path h3 {
    margin-top: 50px;
  }
  .specials {
    padding-bottom: 105px;
  }
  .specials-layout {
    grid-template-columns: 1fr 1fr;
  }
  .specials-layout .eyebrow {
    grid-column: 1 / -1;
  }
  .specials-layout h2 {
    grid-column: 1 / -1;
  }
  .specials-layout > a {
    grid-column: 2;
  }
  .location-heading {
    margin-bottom: 52px;
  }
  .location-stage {
    border-width: 8px;
    box-shadow:
      12px 12px 0 var(--aqua),
      0 20px 42px rgba(7, 51, 75, 0.11);
  }
  .location-map {
    min-height: 480px;
  }
  .location-panel {
    padding: 34px;
  }
  .location-facts {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }
  .location-facts > div {
    padding: 0 24px;
  }
  .location-facts > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  .location-facts > div:nth-child(even) {
    padding-right: 0;
  }
  .contact-photo {
    inset: 0;
    opacity: 0.33;
  }
  .contact-photo::after {
    background: rgba(4, 37, 55, 0.7);
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .contact-copy {
    max-width: 630px;
  }
  .contact-form {
    max-width: 700px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }
  h2 {
    font-size: 47px;
  }
  .brand {
    width: 82px;
    height: 52px;
  }
  .brand img {
    width: 82px;
  }
  .hero-location {
    font-size: 8px;
  }
  .hero-location span:last-child {
    display: none;
  }
  .hero-copy {
    padding-top: 145px;
  }
  .hero h1 {
    max-width: 355px;
    font-size: clamp(43px, 12.2vw, 58px);
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-scene-nav {
    top: 80px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .hero-scene-nav button {
    grid-template-columns: 22px 1fr;
  }
  .hero-scene-nav strong {
    font-size: 8px;
  }
  .hero-slide-team img {
    object-position: 54% 58%;
  }
  .hero-slide-studio img {
    object-position: 58% center;
  }
  .hero-slide-care img {
    object-position: 40% center;
  }
  .promise-track {
    grid-template-columns: 1fr;
  }
  .promise-track p,
  .promise-track p:nth-child(3) {
    padding: 10px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(7, 51, 75, 0.2);
  }
  .promise-track > a {
    width: 100%;
    margin-top: 8px;
    text-align: center;
  }
  .philosophy,
  .doctor,
  .services,
  .first-visit,
  .conversation,
  .location {
    padding: 84px 0;
  }
  .principle {
    min-height: 155px;
    grid-template-columns: 38px 1fr;
  }
  .principle h3 {
    font-size: 26px;
  }
  .studio-story {
    min-height: 850px;
  }
  .studio-visual {
    height: 46%;
  }
  .studio-card {
    width: calc(100% - 30px);
    padding-top: 410px;
  }
  .studio-card blockquote {
    margin-top: 45px;
  }
  .doctor-portrait {
    width: 100%;
    padding: 35px 0 0 26px;
  }
  .portrait-window {
    height: 520px;
    border-radius: 170px 170px 0 0;
    box-shadow: 11px 11px 0 var(--aqua);
  }
  .doctor-copy .lead {
    font-size: 21px;
  }
  .services-intro {
    margin-bottom: 50px;
  }
  .service-row {
    padding: 30px 0;
    grid-template-columns: 38px 1fr;
    gap: 18px;
  }
  .service-row h3 {
    grid-column: 2;
    font-size: 29px;
  }
  .service-row > p,
  .service-row ul {
    grid-column: 2;
  }
  .urgent-band {
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .urgent-band .button {
    grid-column: 1;
    width: 100%;
  }
  .care-promise {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .care-promise > a {
    grid-column: 1;
    justify-self: start;
  }
  .visit-path li {
    padding: 25px;
  }
  .specials-layout {
    width: 100%;
    padding: 45px 25px;
    grid-template-columns: 1fr;
  }
  .specials-layout > p:not(.eyebrow),
  .specials-layout > a {
    grid-column: 1;
  }
  .specials-layout > a {
    justify-self: start;
  }
  .faq-list summary {
    font-size: 19px;
  }
  .location-heading {
    margin-bottom: 40px;
  }
  .location-heading h2 {
    font-size: 46px;
  }
  .location-heading > div > p {
    margin-top: 18px;
  }
  .location-stage {
    border-width: 6px;
    box-shadow:
      8px 8px 0 var(--aqua),
      0 16px 32px rgba(7, 51, 75, 0.1);
  }
  .location-map {
    min-height: 360px;
  }
  .location-coordinates {
    right: 10px;
    bottom: 10px;
  }
  .location-panel {
    padding: 30px 24px 34px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .location-directions {
    min-width: 0;
    width: 100%;
    grid-row: 3;
  }
  .location-facts {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 8px;
    border-top: 0;
  }
  .location-facts > div,
  .location-facts > div:nth-child(odd),
  .location-facts > div:nth-child(even) {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .location-facts dd {
    font-size: 18px;
  }
  .contact-layout {
    min-height: 0;
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .contact-details,
  .field-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 30px 22px;
    box-shadow: 9px 9px 0 var(--aqua);
  }
  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .footer {
    padding-top: 70px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-brand-block {
    grid-column: auto;
  }
  .footer-call {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .footer-bottom {
    padding: 20px 0;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
  }
  .footer-bottom p:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-slide,
  .hero-slide img {
    transition: none;
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   NAV DROPDOWN — inner pages & updated home nav
═══════════════════════════════════════════════════════ */
.nav-menu .nav-group {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-group .nav-parent {
  padding: 31px 0 27px;
  color: #476777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.nav-group .nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 22px;
  height: 2px;
  background: var(--orange);
  transition: right var(--ease);
}
.nav-group:hover .nav-parent::after,
.nav-group .nav-parent.is-active::after {
  right: 0;
}
.nav-sub-toggle {
  display: none;
  width: 28px;
  height: 28px;
  margin-left: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: -18px;
  z-index: 200;
  min-width: 220px;
  padding: 8px 0 10px;
  background: #fff;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 4px 0 0 var(--aqua), 0 12px 36px rgba(7, 51, 75, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--ease),
    visibility var(--ease),
    transform var(--ease);
  pointer-events: none;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background: transparent;
}
.nav-group:hover .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 10px 22px 10px 20px;
  border-left: 3px solid transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease);
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover {
  background: var(--ice);
  color: var(--blue);
  border-left-color: var(--aqua);
  padding-left: 22px;
}
.nav-dropdown a.is-active {
  color: var(--night);
  font-weight: 700;
  border-left-color: var(--orange);
  background: rgba(239, 120, 93, 0.05);
}
.nav-dropdown .dropdown-group-label {
  padding: 14px 22px 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}
.nav-dropdown .dropdown-group-label::after { display: none !important; }
.nav-dropdown .dropdown-group-label:first-child {
  padding-top: 8px;
  border-top: 0;
}

/* Services mega-dropdown */
.nav-mega {
  min-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.nav-mega-col {
  padding: 8px 0;
  border-right: 1px solid var(--line);
}
.nav-mega-col:last-child {
  border-right: 0;
}
.nav-mega-col .dropdown-group-label {
  padding: 10px 18px 4px;
}
.nav-mega-col a {
  padding: 7px 18px;
  font-size: 10.5px;
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO — inner page header
═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 56px 0 64px;
  background: var(--night);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/studio.webp") center/cover no-repeat;
  opacity: 0.1;
}
.page-hero .shell {
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  color: var(--aqua);
  margin-bottom: 14px;
}
.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1;
}
.page-hero .page-lede {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.65;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color var(--ease);
}
.breadcrumb a:hover {
  color: var(--aqua);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}
.breadcrumb .current {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   INNER PAGE LAYOUT
═══════════════════════════════════════════════════════ */
.page-body {
  padding: 80px 0 120px;
  background: var(--paper);
}
.page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}
.page-content {
  min-width: 0;
}
.page-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 22px;
}
.page-content h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 48px 0 14px;
  color: var(--night);
}
.page-content h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 34px 0 10px;
  color: var(--blue);
}
.page-content p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.page-content ul,
.page-content ol {
  padding-left: 0;
  list-style: none;
  margin: 0 0 22px;
}
.page-content ul li,
.page-content ol li {
  position: relative;
  padding: 5px 0 5px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.page-content ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--aqua);
}
.page-content ol {
  counter-reset: list-counter;
}
.page-content ol li {
  counter-increment: list-counter;
}
.page-content ol li::before {
  content: counter(list-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  top: 7px;
}

/* Info box */
.info-box {
  margin: 40px 0;
  padding: 30px 36px;
  background: var(--ice);
  border-left: 3px solid var(--aqua);
}
.info-box p {
  margin: 0;
  color: var(--night);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
}

/* Highlight card */
.highlight-card {
  margin: 44px 0;
  padding: 40px 44px;
  background: var(--night);
  color: #fff;
}
.highlight-card h3 {
  margin-top: 0;
  color: #fff;
  font-size: 27px;
}
.highlight-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}
.highlight-card a {
  color: var(--aqua);
  text-decoration: underline;
}

/* Special offer box */
.offer-card {
  margin: 28px 0;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: #fff;
}
.offer-card .offer-name {
  margin: 0 0 4px;
  color: var(--night);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}
.offer-card .offer-price {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--serif);
}
.offer-card .offer-detail {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* CTA inline */
.page-cta {
  margin: 50px 0 0;
  padding: 40px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.page-cta p {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}
.page-cta a {
  min-height: 50px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--night);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background var(--ease),
    transform var(--ease);
  white-space: nowrap;
}
.page-cta a:hover {
  background: var(--night);
  color: #fff;
  transform: translateY(-2px);
}

/* Blog list */
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-card { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 36px 0; border-bottom: 1px solid var(--line); align-items: start; }
.blog-card:first-child { padding-top: 0; }
.blog-card-img { display: block; border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.blog-card-img img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform .4s ease; }
.blog-card-img:hover img { transform: scale(1.04); }
.blog-card-body { min-width: 0; }
.blog-card-meta { margin-bottom: 10px; }
.blog-card-meta time { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.blog-card h2 { margin: 0 0 12px; font-size: clamp(17px, 2vw, 21px); }
.blog-card h2 a { color: var(--night); text-decoration: none; transition: color var(--ease); }
.blog-card h2 a:hover { color: var(--blue); }
.blog-card p { color: var(--muted); line-height: 1.7; margin: 0 0 14px; }
.blog-read-more { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-decoration: none; transition: color var(--ease); }
.blog-read-more:hover { color: var(--orange); }

/* Blog post hero image */
.blog-hero-img { margin: 0 0 32px; border-radius: 2px; overflow: hidden; }
.blog-hero-img img { width: 100%; max-height: 420px; object-fit: cover; display: block; }

@media (max-width: 820px) {
  .blog-card { grid-template-columns: 1fr; gap: 16px; }
  .blog-card-img img { height: 200px; }
}

/* Sidebar navigation */
.sidebar-nav {
  position: sticky;
  top: 110px;
}
.sidebar-nav-section {
  margin-bottom: 30px;
}
.sidebar-nav-label {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sidebar-nav a {
  display: block;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  border-left: 2px solid transparent;
  transition:
    color var(--ease),
    border-color var(--ease),
    background var(--ease);
}
.sidebar-nav a:hover {
  color: var(--night);
  border-color: var(--aqua);
  background: rgba(117, 211, 210, 0.08);
}
.sidebar-nav a.is-active {
  color: var(--night);
  border-color: var(--orange);
  background: rgba(239, 120, 93, 0.06);
  font-weight: 700;
}
.sidebar-nav-cta {
  margin-top: 28px;
  padding: 22px;
  background: var(--night);
  color: #fff;
}
.sidebar-nav-cta p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.6;
}
.sidebar-nav-cta a {
  display: block;
  padding: 12px 16px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition: background var(--ease);
}
.sidebar-nav-cta a:hover {
  background: var(--blue);
}

/* Contact form page variant */
.contact-page {
  padding: 80px 0 120px;
  background: var(--paper);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.contact-page-form {
  background: #fff;
  padding: 48px;
  box-shadow: 12px 12px 0 var(--aqua);
}
.contact-page-aside {
  padding-top: 10px;
}
.contact-page-aside h3 {
  margin-bottom: 22px;
  font-size: 28px;
}
.contact-page-aside dl {
  margin: 0;
}
.contact-page-aside dl > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
}
.contact-page-aside dt {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-top: 3px;
}
.contact-page-aside dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--night);
}
.contact-page-aside dd a {
  color: var(--night);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — inner pages
═══════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-nav {
    position: static;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
  }
  .sidebar-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .sidebar-nav-cta {
    grid-column: 1 / -1;
  }
  .page-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .nav-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-group .nav-parent::after {
    display: none;
  }
  .nav-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    border-radius: 0;
    border-top: 0;
    transition:
      max-height 0.3s ease,
      visibility 0.3s;
    pointer-events: auto;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown a { padding-left: 28px; border-left: 0; font-size: 11px; white-space: normal; }
  .nav-dropdown a:hover { padding-left: 28px; }
  .nav-group.is-open .nav-dropdown {
    visibility: visible;
    max-height: 800px;
  }
  .nav-mega {
    grid-template-columns: 1fr;
  }
  .nav-mega-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-mega-col:last-child {
    border-bottom: 0;
  }
  .page-hero h1 {
    font-size: clamp(32px, 7vw, 50px);
  }
  .highlight-card {
    padding: 30px;
  }
  .info-box {
    padding: 22px 24px;
  }
  .offer-card {
    padding: 22px 24px;
  }
}
@media (max-width: 560px) {
  .sidebar-nav {
    grid-template-columns: 1fr;
  }
  .page-body {
    padding: 55px 0 90px;
  }
  .page-content h2 {
    font-size: 34px;
  }
  .page-cta {
    padding: 28px;
  }
  .contact-page-form {
    padding: 28px 22px;
  }
}
