@font-face {
  font-family: "Anton";
  src: url("assets/Anton-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/PlayfairDisplay-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/PlayfairDisplay-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #082749;
  --navy-deep: #061f3c;
  --gold: #aa7431;
  --paper: #fbfaf7;
  --white: #fffefa;
  --ink-muted: #26384c;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --header-height: 64px;
  --page-gutter: clamp(1.25rem, 4vw, 5rem);
  --content-width: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--navy-deep);
  font-family: "Playfair Display", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.top-boundary {
  position: absolute;
  top: 8px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    backdrop-filter 220ms var(--ease-out);
}

.site-header::before {
  content: none;
}

.site-header.is-scrolled {
  background: var(--white);
  border-bottom-color: rgb(8 39 73 / 0.08);
  box-shadow: 0 10px 32px rgb(8 39 73 / 0.08);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
}

.site-header__inner {
  width: min(100%, var(--content-width));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.75rem);
}

.brand {
  display: inline-flex;
  width: clamp(145px, 12vw, 185px);
  height: 48px;
  align-items: center;
  text-decoration: none;
  transform: translateY(2px);
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 1.75vw, 2.15rem);
  color: var(--navy-deep);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  justify-self: center;
}

.site-nav a,
.site-nav span {
  position: relative;
  padding-block: 0.35rem;
  text-decoration: none;
}

.site-nav__mobile-cta {
  display: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.header-cta,
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgb(8 39 73 / 0.1);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 140ms var(--ease-out),
    box-shadow 180ms ease;
}

.cta-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-left: 1.15rem;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease-out);
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  padding: 0.58rem 0.8rem 0.58rem 1.15rem;
  font-size: 0.8rem;
  line-height: 1.15;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  background: var(--paper);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

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

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(251 250 247 / 0.9) 0%, rgb(251 250 247 / 0.8) 25%, rgb(251 250 247 / 0.34) 43%, transparent 66%),
    linear-gradient(0deg, rgb(251 250 247 / 0.18) 0%, transparent 18%),
    rgb(255 255 255 / 0.04);
}

.hero__inner {
  width: min(100%, var(--content-width));
  height: 100%;
  margin-inline: auto;
  padding: calc(var(--header-height) + clamp(2rem, 4.5vh, 4rem)) var(--page-gutter) clamp(2rem, 5vh, 4rem);
  display: flex;
  align-items: center;
}

.hero__content {
  width: min(52vw, 720px);
  transform: translateY(-2vh);
}

.hero__eyebrow {
  margin: 0 0 clamp(1.2rem, 2.6vh, 2rem);
  color: var(--gold);
  font-size: clamp(0.7rem, 0.85vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translateY(-1.65rem);
}

.hero__title {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Anton", sans-serif;
  font-size: clamp(3.55rem, min(9.1vw, 14.2vh), 8.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.89;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.hero__title-outline {
  color: transparent;
  -webkit-text-stroke: clamp(1.5px, 0.14vw, 2.25px) var(--gold);
  paint-order: stroke fill;
}

.hero__copy {
  max-width: 510px;
  margin: clamp(1.35rem, 2.8vh, 2.15rem) 0 0;
  color: var(--ink-muted);
  font-size: clamp(0.95rem, 1.05vw, 1.15rem);
  line-height: 1.55;
  letter-spacing: 0;
}

.hero__cta {
  min-height: 54px;
  margin-top: clamp(1.35rem, 2.9vh, 2.1rem);
  padding: 0.78rem 0.95rem 0.78rem 1.8rem;
  font-size: 1.02rem;
  line-height: 1.2;
  border-width: 2px;
}

.priority-services {
  position: relative;
  scroll-margin-top: var(--header-height);
  background: var(--white);
  min-height: 100svh;
  padding: clamp(2rem, 4.5vh, 4rem) var(--page-gutter);
  display: flex;
  align-items: center;
}

.priority-services::before {
  content: "";
  position: absolute;
  inset: 0 var(--page-gutter) auto;
  height: 1px;
  background: rgb(170 116 49 / 0.38);
}

.priority-services__inner {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.priority-services__header {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 3vh, 2.75rem);
}

.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.priority-services h2 {
  max-width: 820px;
  margin: 0;
  color: var(--navy-deep);
  font-family: "Anton", sans-serif;
  font-size: clamp(2.8rem, min(5.3vw, 7vh), 5.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-wrap: balance;
  text-transform: uppercase;
}

.priority-services__intro {
  max-width: 470px;
  margin: 0 0 0.35rem;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(8 39 73 / 0.15);
  border-bottom: 1px solid rgb(8 39 73 / 0.15);
}

.service-card {
  min-height: clamp(390px, 48vh, 480px);
  padding: clamp(1.35rem, 2vw, 2.25rem);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--navy-deep);
  border-right: 1px solid rgb(8 39 73 / 0.15);
}

.service-card:first-child {
  border-left: 1px solid rgb(8 39 73 / 0.15);
}

.service-card--featured {
  background: var(--navy-deep);
  color: var(--white);
}

.service-card__topline {
  position: relative;
  display: flex;
  min-height: clamp(130px, 18vh, 175px);
  height: clamp(130px, 18vh, 175px);
  margin: calc(clamp(1.35rem, 2vw, 2.25rem) * -1) calc(clamp(1.35rem, 2vw, 2.25rem) * -1) 1.25rem;
  overflow: hidden;
}

.service-card__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  background: var(--navy-deep);
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.service-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.service-image-placeholder {
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgb(170 116 49 / 0.06);
  border: 0;
}

.service-image-placeholder span {
  font-family: "Anton", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__content {
  margin-top: auto;
}

.service-card__more {
  width: fit-content;
  margin-top: 0.85rem;
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.service-card h3 {
  max-width: 9ch;
  margin: 0 0 0.8rem;
  color: inherit;
  font-family: "Anton", sans-serif;
  font-size: clamp(1.8rem, min(2.6vw, 4vh), 3rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  max-width: 37ch;
  margin: 0;
  color: color-mix(in srgb, currentColor 76%, transparent);
  font-size: 0.98rem;
  line-height: 1.45;
}

.service-card__link,
.services-catalog-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.service-card__link {
  width: 100%;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid color-mix(in srgb, currentColor 28%, transparent);
}

.service-card__link svg,
.services-catalog-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease-out);
}

.priority-services__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(1.25rem, 2.4vh, 2rem);
}

.priority-services__footer p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.services-catalog-link {
  min-height: 50px;
  padding: 0.72rem 1.4rem 0.72rem 1.65rem;
  color: var(--navy-deep);
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.about {
  scroll-margin-top: var(--header-height);
  min-height: 100svh;
  padding: clamp(2.25rem, 5vh, 4.5rem) var(--page-gutter);
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
}

.about__inner {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(460px, 1.3fr) minmax(300px, 0.7fr);
  column-gap: clamp(3rem, 7vw, 8rem);
  row-gap: clamp(1rem, 2.2vh, 2rem);
}

.about__heading {
  grid-column: 1 / -1;
  grid-row: 1;
}

.about h2 {
  max-width: 980px;
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(2.8rem, min(5vw, 7vh), 5.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.about__story {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  padding-bottom: 0.5rem;
}

.about__team-photo {
  grid-column: 1;
  grid-row: 2;
  min-height: clamp(290px, 39vh, 440px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--gold);
  border: 1px solid rgb(170 116 49 / 0.55);
  background:
    linear-gradient(135deg, transparent 49.8%, rgb(170 116 49 / 0.18) 50%, transparent 50.2%),
    rgb(255 254 250 / 0.025);
}

.about__team-photo span {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.about__team-photo small {
  color: rgb(255 254 250 / 0.62);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__story p {
  max-width: 650px;
  margin: 0;
  color: rgb(255 254 250 / 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.about__story .about__lead {
  margin-bottom: 0.85rem;
  color: var(--white);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  line-height: 1.4;
}

.about__doctor {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgb(255 254 250 / 0.14);
}

.about__doctor span,
.about__doctor small {
  display: block;
}

.about__doctor span {
  color: var(--white);
  font-weight: 700;
}

.about__doctor small {
  margin-top: 0.3rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__quote {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  margin: 0;
  padding: clamp(1.15rem, 2.4vh, 2rem) 0;
  border-top: 1px solid rgb(170 116 49 / 0.55);
  border-bottom: 1px solid rgb(170 116 49 / 0.55);
}

.about__quote > span {
  color: var(--gold);
  font-family: "Anton", sans-serif;
  font-size: clamp(3.5rem, min(6vw, 8vh), 6rem);
  line-height: 0.72;
}

.about__quote p {
  max-width: 1100px;
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, min(3.7vw, 5vh), 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
}

.about__experience {
  display: flex;
  align-items: flex-end;
  gap: 1.4rem;
}

.about__experience strong {
  color: var(--gold);
  font-family: "Anton", sans-serif;
  font-size: clamp(4.5rem, min(8vw, 10vh), 8rem);
  font-weight: 400;
  line-height: 0.74;
}

.about__experience span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about__essentials {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-top: clamp(1.25rem, 3vh, 2.5rem);
  padding-top: clamp(1.5rem, 3vh, 2.5rem);
  border-top: 1px solid rgb(170 116 49 / 0.55);
}

.about__essentials > p {
  max-width: 650px;
  margin: 0 0 0.4rem;
  color: rgb(255 254 250 / 0.78);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.7;
  text-align: right;
  text-transform: uppercase;
}

.about__essentials > p span {
  margin-inline: 0.55rem;
  color: var(--gold);
}

.about__principles {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(170 116 49 / 0.55);
}

.about__principles > div {
  padding: clamp(1.1rem, 2vh, 1.75rem) clamp(0.8rem, 1.5vw, 1.5rem) 0;
  border-left: 1px solid rgb(255 254 250 / 0.14);
}

.about__principles span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.about__principles h3 {
  margin: 1rem 0 0.55rem;
  font-family: "Anton", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.about__principles p {
  margin: 0;
  color: rgb(255 254 250 / 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.location {
  min-height: 100svh;
  scroll-margin-top: var(--header-height);
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 6vh, 5.5rem) var(--page-gutter);
  background: var(--white);
}

.location__inner {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: stretch;
}

.location__map {
  position: relative;
  min-height: clamp(430px, 66vh, 650px);
  overflow: hidden;
  background: #e8e5dd;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgb(8 39 73 / 0.12);
}

.location__map::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgb(170 116 49 / 0.32);
  border-radius: inherit;
  pointer-events: none;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.location__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding-block: clamp(1rem, 3vh, 2.5rem);
}

.location__info h2 {
  max-width: 620px;
  margin: 0;
  color: var(--navy-deep);
  font-family: "Anton", sans-serif;
  font-size: clamp(3.2rem, min(5.7vw, 8vh), 6.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-transform: uppercase;
}

.location__details {
  width: 100%;
  margin: clamp(2rem, 4vh, 3.25rem) 0 0;
}

.location__details > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0.95rem 0;
  border-top: 1px solid rgb(8 39 73 / 0.14);
}

.location__details dt {
  padding-top: 0.15rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location__details dd {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.location__details a {
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.2em;
}

.location__route {
  width: fit-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: 0.75rem 0.9rem 0.75rem 1.35rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  background: var(--navy-deep);
  border: 1px solid var(--gold);
  border-radius: 999px;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.location__route--waze {
  color: var(--navy-deep);
  background: transparent;
}

.location__route svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease-out);
}

.contact {
  min-height: 100svh;
  scroll-margin-top: var(--header-height);
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 6vh, 5.5rem) var(--page-gutter);
  background: var(--paper);
}

.contact__inner {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: center;
}

.contact__intro h2 {
  max-width: 680px;
  margin: 0;
  color: var(--navy-deep);
  font-family: "Anton", sans-serif;
  font-size: clamp(3.5rem, min(7vw, 10vh), 7.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.contact__intro > p:not(.section-kicker) {
  max-width: 470px;
  margin: clamp(1.5rem, 3vh, 2.5rem) 0 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact__direct {
  margin-top: clamp(2rem, 4vh, 3.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgb(8 39 73 / 0.16);
}

.contact__direct span,
.contact__direct a {
  display: block;
}

.contact__direct span {
  margin-bottom: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.contact__direct a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.05rem;
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 999px;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vh, 2rem) clamp(1.25rem, 2.5vw, 2.5rem);
  padding: clamp(2rem, 3.5vw, 4rem);
  background: var(--white);
  border: 1px solid rgb(8 39 73 / 0.1);
  border-radius: 20px;
  box-shadow: 0 26px 75px rgb(8 39 73 / 0.1);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold);
}

.form-field {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 1rem;
  color: var(--navy-deep);
  font: 1rem/1.3 "Playfair Display", Georgia, serif;
  background: var(--paper);
  border: 1px solid rgb(8 39 73 / 0.15);
  border-radius: 10px;
  outline: 0;
  transition: border-color 160ms ease;
}

.form-field select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgb(170 116 49 / 0.1);
}

.form-field input::placeholder {
  color: rgb(38 56 76 / 0.48);
}

.contact-form__submit {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 1rem 0.8rem 1.4rem;
  color: var(--white);
  font: 700 0.95rem/1.2 "Playfair Display", Georgia, serif;
  background: var(--navy-deep);
  border: 1px solid var(--gold);
  border-radius: 999px;
  margin-top: 0.35rem;
  cursor: pointer;
}

.contact-form__submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-page {
  background: var(--paper);
}

.site-footer {
  padding: clamp(3.5rem, 7vw, 7rem) var(--page-gutter) 1.5rem;
  color: var(--white);
  background: var(--navy-deep);
  border-top: 1px solid rgb(170 116 49 / 0.55);
}

.site-footer__inner,
.site-footer__bottom {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(2.5rem, 5vw, 6rem);
}

.site-footer__brand a {
  width: min(260px, 100%);
  display: block;
}

.site-footer__brand img {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
}

.site-footer__brand p {
  max-width: 350px;
  margin: 1.25rem 0 0;
  color: rgb(255 254 250 / 0.66);
  line-height: 1.55;
}

.site-footer__column h2 {
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__column nav,
.site-footer__column address,
.site-footer__socials {
  display: grid;
  gap: 0.8rem;
}

.site-footer__column address {
  color: rgb(255 254 250 / 0.68);
  font-style: normal;
  line-height: 1.5;
}

.site-footer__column a {
  width: fit-content;
  color: rgb(255 254 250 / 0.78);
  text-decoration: none;
}

.site-footer__column a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem; 
  margin-top: clamp(3rem, 6vw, 6rem);
  padding-top: 1rem;
  border-top: 1px solid rgb(255 254 250 / 0.14);
}

.site-footer__bottom p,
.site-footer__bottom a {
  margin: 0;
  color: rgb(255 254 250 / 0.55);
  font-size: 0.76rem;
  text-decoration: none;
}

.site-footer__bottom a {
  color: var(--gold);
  font-weight: 700;
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(2rem, 5vh, 4rem)) var(--page-gutter) clamp(2rem, 5vh, 4rem);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(8 39 73 / 0.15);
}

.catalog-hero__inner,
.catalog__inner,
.catalog-cta {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.site-footer {
  padding-top: clamp(3rem, 5vw, 5rem);
}

.site-footer__bottom {
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

.catalog-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.catalog-hero__inner > div {
  position: relative;
  z-index: 1;
}

.catalog-hero__mark {
  position: absolute;
  right: -0.03em;
  bottom: -0.32em;
  color: transparent;
  font-family: "Anton", sans-serif;
  font-size: clamp(15rem, 30vw, 34rem);
  line-height: 0.75;
  -webkit-text-stroke: 1px rgb(170 116 49 / 0.16);
  pointer-events: none;
}

.catalog-hero__inner > *,
.catalog-item > *,
.about__inner > * {
  min-width: 0;
}

.catalog-hero h1 {
  max-width: 950px;
  margin: 0;
  color: var(--navy-deep);
  font-family: "Anton", sans-serif;
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.catalog-hero__aside p {
  margin: 0 0 2rem;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.65;
}

.catalog-hero__aside span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.catalog {
  min-height: 100svh;
  padding: clamp(2rem, 4vh, 3.5rem) var(--page-gutter);
  background: var(--white);
}

.catalog__inner {
  min-height: calc(100svh - clamp(4rem, 8vh, 7rem));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgb(8 39 73 / 0.14);
}

.catalog-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 34px minmax(180px, 1fr) 82px;
  grid-template-areas: "image number title consult" "image description description more";
  gap: clamp(0.8rem, 1.5vw, 1.6rem);
  align-items: center;
  min-height: 0;
  padding: 0.75rem clamp(0.75rem, 1.2vw, 1.25rem);
  border-bottom: 1px solid rgb(8 39 73 / 0.14);
  border-right: 1px solid rgb(8 39 73 / 0.14);
  transition: background-color 180ms ease;
}

.catalog-item__image { grid-area: image; width: 100%; height: 88px; object-fit: cover; border-radius: 8px; }
.catalog-item__number { grid-area: number; }
.catalog-item h2 { grid-area: title; }
.catalog-item p { grid-area: description; }
.catalog-item > a:not(.catalog-item__more) { grid-area: consult; }
.catalog-item__more { grid-area: more; color: var(--gold) !important; font-size: .82rem; text-decoration: underline !important; text-underline-offset: .25em; }

.detail-header { min-height: 72px; padding: .65rem var(--page-gutter); display:flex; align-items:center; justify-content:space-between; background:var(--white); border-bottom:1px solid rgb(8 39 73 / .12); }
.detail-header img { width:165px; max-height:50px; object-fit:contain; display:block; }
.detail-header > a:last-child { color:var(--navy-deep); font-weight:700; text-decoration-color:var(--gold); text-underline-offset:.25em; }
.treatment-hero { min-height:calc(100svh - 72px); display:grid; grid-template-columns: .8fr 1.2fr; align-items:center; gap:clamp(3rem,7vw,8rem); padding:clamp(3rem,7vh,6rem) var(--page-gutter); }
.treatment-hero > div { max-width:650px; }
.treatment-hero h1,.treatment-info h2,.treatment-faq h2 { margin:0; font:400 clamp(3.2rem,6vw,7rem)/.94 "Anton",sans-serif; text-transform:uppercase; color:var(--navy-deep); }
.treatment-hero__lead { margin:1.5rem 0 0; color:var(--ink-muted); font-size:clamp(1.05rem,1.4vw,1.3rem); line-height:1.6; }
.treatment-hero__image { width:100%; height:min(68vh,680px); border-radius:18px; }
.treatment-info,.treatment-faq { width:min(calc(100% - (var(--page-gutter)*2)),var(--content-width)); margin:auto; padding:clamp(4rem,8vw,8rem) 0; display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(3rem,8vw,9rem); }
.treatment-info > p { margin:0; max-width:700px; color:var(--ink-muted); font-size:1.15rem; line-height:1.8; }
.treatment-faq { border-top:1px solid rgb(8 39 73 / .15); }
.treatment-faq details { padding:1.4rem 0; border-bottom:1px solid rgb(8 39 73 / .15); }
.treatment-faq summary { color:var(--navy-deep); font-weight:700; cursor:pointer; }
.treatment-faq details p { margin:1rem 0 0; color:var(--ink-muted); line-height:1.6; }
.detail-footer { padding:2rem var(--page-gutter); display:flex; justify-content:space-between; gap:2rem; color:var(--white); background:var(--navy-deep); }
.detail-footer a { color:var(--gold); }

.catalog-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 180ms var(--ease-out);
}

.catalog-item__number {
  color: var(--gold);
  font-family: "Anton", sans-serif;
  letter-spacing: 0.08em;
}

.catalog-item h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Anton", sans-serif;
  font-size: clamp(1.35rem, min(1.7vw, 2.6vh), 2rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: break-word;
  transition: transform 180ms var(--ease-out);
}

.catalog-item p {
  max-width: 54ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.catalog-item a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
}

.catalog-item a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease-out);
}

.catalog-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  min-height: 100svh;
  padding: clamp(3rem, 7vw, 7rem) var(--page-gutter);
}

.catalog-cta h2 {
  max-width: 850px;
  margin: 0;
  color: var(--navy-deep);
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-cta:hover,
  .hero__cta:hover,
  .services-catalog-link:hover {
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 12px 28px rgb(8 39 73 / 0.16);
    transform: translateY(-1px);
  }

  .header-cta:hover .cta-arrow,
  .hero__cta:hover .cta-arrow {
    stroke: var(--navy-deep);
    transform: translate(2px, -2px);
  }

  .service-card__link:hover svg,
  .services-catalog-link:hover svg,
  .catalog-item a:hover svg {
    transform: translateX(4px);
  }

  .catalog-item:hover {
    background: var(--paper);
  }

  .catalog-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
  }

  .catalog-item:hover h2 {
    transform: translateX(6px);
  }

  .contact__direct a:hover {
    color: var(--white);
    background: var(--navy-deep);
  }

  .contact-form__submit:hover {
    background: var(--gold);
  }

  .contact-form__submit:hover svg {
    stroke: var(--navy-deep);
    transform: translate(2px, -2px);
  }

  .location__route:hover {
    color: var(--navy-deep);
    background: var(--gold);
  }

  .location__route:hover svg {
    stroke: var(--navy-deep);
    transform: translate(2px, -2px);
  }
}

.header-cta:active,
.hero__cta:active {
  transform: translateY(1px);
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: minmax(165px, 1fr) auto minmax(165px, 1fr);
    gap: 1rem;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.66rem;
  }

  .header-cta {
    display: inline-flex;
    padding: 0.55rem 0.65rem 0.55rem 0.9rem;
    font-size: 0.74rem;
  }

  .hero__media {
    top: 0;
  }

}

@media (max-width: 900px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    background: transparent;
  }

  .site-header.is-scrolled {
    background: var(--white);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  body.menu-is-open {
    overflow: hidden;
  }

  body.menu-is-open .brand {
    position: relative;
    z-index: 3;
  }

  .brand {
    width: 145px;
    height: 44px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: auto;
    gap: 0;
    padding: calc(var(--header-height) + 2rem) var(--page-gutter) 2rem;
    overflow-y: auto;
    background: var(--white);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 420ms var(--ease-out),
      visibility 420ms;
  }

  .site-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav a,
  .site-nav span {
    display: flex;
    width: min(100%, 420px);
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1rem;
    color: var(--navy-deep);
    font-size: clamp(1rem, 4vw, 1.2rem);
    letter-spacing: 0.09em;
  }

  .site-nav a:first-child {
    color: var(--navy-deep);
  }

  .site-nav > * + * {
    border-top: 1px solid rgb(8 39 73 / 0.09);
  }

  .site-nav .site-nav__mobile-cta {
    display: flex;
    min-height: 58px;
    margin-top: 1.35rem;
    padding: 0.8rem 1rem 0.8rem 1.25rem;
    justify-content: space-between;
    color: var(--white);
    background: var(--navy-deep);
    border: 1px solid var(--gold);
    border-radius: 12px;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .site-nav .site-nav__mobile-cta span {
    min-height: 0;
    padding: 0;
    color: inherit;
    font-size: 0.86rem;
    letter-spacing: inherit;
  }

  .site-nav__mobile-cta svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .menu-toggle {
    position: static;
    z-index: 2;
    display: inline-flex !important;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 0;
    justify-self: end;
    padding: 0;
    background: var(--navy-deep);
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 50%;
    font: 700 0.72rem/1 "Playfair Display", Georgia, serif;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition:
      background-color 180ms ease,
      color 180ms ease;
  }

  .menu-toggle__icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms var(--ease-out);
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--navy-deep);
    color: var(--white);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon {
    stroke: var(--gold);
    transform: rotate(90deg);
  }

  .header-cta {
    display: none;
    min-height: 38px;
    padding-inline: 0.75rem;
  }

  .hero__media {
    left: 0;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, rgb(251 250 247 / 0.84) 0%, rgb(251 250 247 / 0.7) 24%, rgb(251 250 247 / 0.24) 58%, transparent 88%),
      linear-gradient(0deg, rgb(251 250 247 / 0.14) 0%, transparent 22%),
      rgb(255 255 255 / 0.04);
  }

  .hero__content {
    width: min(68vw, 560px);
    transform: translateY(-1vh);
  }

  .priority-services__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .priority-services,
  .about,
  .location,
  .contact,
  .catalog-hero,
  .catalog,
  .catalog-cta {
    min-height: auto;
  }

  .priority-services__intro {
    max-width: 620px;
  }

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

  .service-card {
    min-height: 430px;
  }

  .service-card--featured {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .service-card:nth-child(2) {
    border-left: 1px solid rgb(8 39 73 / 0.15);
  }

  .priority-services__footer {
    align-items: flex-start;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__heading,
  .about__team-photo,
  .about__story,
  .about__quote,
  .about__essentials,
  .about__experience,
  .about__principles {
    grid-column: 1;
    grid-row: auto;
  }

  .about__experience {
    padding-top: 0;
  }

  .about__essentials {
    margin-top: 0;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .location__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .location__map {
    min-height: 480px;
  }

  .contact__intro > p:not(.section-kicker) {
    max-width: 620px;
  }

  .catalog-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .catalog-hero__aside {
    max-width: 620px;
  }

  .catalog-item {
    grid-template-columns: 46px minmax(0, 1fr) 100px;
    grid-template-areas: "number title consult" "image description description" "image more more";
    gap: 1.5rem;
    padding-block: 2rem;
  }

  .treatment-hero,.treatment-info,.treatment-faq { grid-template-columns:1fr; }
  .treatment-hero__image { height:50vh; }

  .catalog__inner {
    min-height: auto;
    display: block;
    border-top: 1px solid rgb(8 39 73 / 0.14);
  }

  .catalog-item p {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .catalog-item__image {
    height: 110px;
  }

  .catalog-cta {
    display: grid;
    align-items: start;
  }

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

@media (min-width: 901px) and (max-height: 760px) {
  .priority-services {
    padding-block: 1.5rem;
  }

  .priority-services__header {
    margin-bottom: 1rem;
  }

  .priority-services__intro,
  .priority-services__footer p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .service-card {
    min-height: 285px;
    padding: 1.15rem 1.35rem;
  }

  .service-card__icon {
    width: 42px;
    height: 42px;
  }

  .priority-services__footer {
    padding-top: 0.8rem;
  }

  .about {
    padding-block: 1.5rem;
  }

  .about__story p,
  .about__principles p {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .about__quote {
    padding-block: 0.9rem;
  }

  .about__experience {
    padding-top: 0.9rem;
  }

  .contact-form {
    gap: 0.9rem 1.5rem;
    padding: 1.35rem 1.75rem;
  }

  .catalog-item p {
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 1rem;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 132px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .hero__media {
    inset: 0;
  }

  .hero__media img {
    object-position: 64% center;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, rgb(251 250 247 / 0.84) 0%, rgb(251 250 247 / 0.66) 36%, rgb(251 250 247 / 0.1) 100%),
      linear-gradient(0deg, rgb(251 250 247 / 0.16) 0%, transparent 38%),
      rgb(255 255 255 / 0.04);
  }

  .hero__inner {
    align-items: flex-end;
    padding-bottom: 2.25rem;
  }

  .hero__content {
    width: 100%;
    transform: none;
  }

  .hero__eyebrow {
    max-width: 24ch;
    margin-bottom: 0.7rem;
    font-size: 0.66rem;
    transform: none;
  }

  .hero__title {
    font-size: clamp(3.15rem, min(18vw, 12.5vh), 5rem);
    line-height: 0.86;
  }

  .hero__copy {
    max-width: 31ch;
    font-size: 0.92rem;
  }

  .hero__cta {
    min-height: 50px;
    padding: 0.72rem 0.85rem 0.72rem 1.4rem;
    font-size: 0.95rem;
  }

  .priority-services {
    padding-block: 4.5rem;
  }

  .priority-services h2 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .service-card,
  .service-card--featured {
    grid-column: auto;
    min-height: 400px;
    padding: 1.75rem;
    border-right: 1px solid rgb(8 39 73 / 0.15);
    border-bottom: 1px solid rgb(8 39 73 / 0.15);
    border-left: 1px solid rgb(8 39 73 / 0.15);
  }

  .service-card h3 {
    font-size: 2.55rem;
  }

  .priority-services__footer {
    display: grid;
    gap: 1.5rem;
  }

  .services-catalog-link {
    width: 100%;
  }

  .about {
    padding-block: 4.75rem;
  }

  .about h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .about__story .about__lead {
    font-size: 1.2rem;
  }

  .about__quote {
    gap: 1rem;
    padding-block: 2.5rem;
  }

  .about__quote > span {
    font-size: 4rem;
  }

  .about__quote p {
    font-size: clamp(2.3rem, 11vw, 3.3rem);
  }

  .about__experience {
    gap: 1rem;
  }

  .about__essentials {
    display: grid;
    gap: 1.5rem;
  }

  .about__essentials > p {
    text-align: left;
  }

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

  .about__principles > div {
    padding: 2rem 0;
    border-bottom: 1px solid rgb(255 254 250 / 0.14);
    border-left: 0;
  }

  .about__principles h3 {
    margin-top: 1.5rem;
  }

  .contact {
    padding-block: 4.75rem;
  }

  .location {
    padding-block: 4.75rem;
  }

  .location__map {
    min-height: 380px;
    border-radius: 12px;
  }

  .location__info h2 {
    font-size: clamp(3.15rem, 14vw, 4.4rem);
  }

  .location__info {
    padding-block: 0;
  }

  .location__details > div {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .location__details dt {
    padding-top: 0;
  }

  .location__route {
    width: 100%;
    justify-content: space-between;
  }

  .contact__intro h2 {
    font-size: clamp(3.15rem, 15vw, 4.5rem);
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .contact-form .form-field,
  .contact-form__submit {
    grid-column: 1;
  }

  .catalog-hero {
    padding-top: calc(var(--header-height) + 4.5rem);
  }

  .catalog-hero h1 {
    max-width: 100%;
    font-size: clamp(3.15rem, 15.5vw, 4.5rem);
  }

  .catalog-item {
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-areas: "image image" "number title" "description description" "consult more";
    gap: 1rem;
  }

  .catalog-item__image { height:180px; }
  .treatment-hero { padding-top:3rem; }
  .treatment-hero__image { height:360px; }
  .detail-header img { width:145px; max-height:44px; }
  .detail-footer { flex-direction:column; }

  .catalog-item h2 {
    font-size: 2.15rem;
  }

  .catalog-item p {
    grid-column: 1 / -1;
    grid-row: auto;
    overflow-wrap: anywhere;
  }

  .catalog-item a {
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid rgb(8 39 73 / 0.1);
  }

  .catalog-cta {
    padding: 4.5rem 1rem;
  }

  .catalog-cta h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .site-footer {
    padding-top: 3.5rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer__brand a {
    width: 220px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Acción principal del bloque de especialidades */
.priority-services .services-catalog-link {
  min-width: 245px;
  min-height: 58px;
  padding: 0.65rem 0.7rem 0.65rem 1.5rem;
  color: var(--white);
  background: var(--navy-deep);
  border: 1px solid var(--gold);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgb(8 39 73 / 0.14);
}

.priority-services .services-catalog-link svg {
  width: 36px;
  height: 36px;
  padding: 9px;
  flex: 0 0 auto;
  stroke: var(--navy-deep);
  background: var(--gold);
  border-radius: 999px;
}

@media (hover: hover) and (pointer: fine) {
  .priority-services .services-catalog-link:hover {
    color: var(--navy-deep);
    background: var(--gold);
    box-shadow: 0 16px 34px rgb(8 39 73 / 0.2);
    transform: translateY(-2px);
  }

  .priority-services .services-catalog-link:hover svg {
    background: var(--white);
    transform: translateX(2px);
  }
}

@media (max-width: 640px) {
  .priority-services .services-catalog-link {
    width: 100%;
    min-width: 0;
  }
}

/* Catálogo editorial */
.catalog-page .catalog-hero {
  min-height: 430px;
  padding-top: calc(var(--header-height) + 4.5rem);
  padding-bottom: 4rem;
  color: var(--white);
  background: var(--navy-deep);
  border-bottom: 0;
}

.catalog-page .catalog-hero__inner {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
}

.catalog-page .catalog-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(3.6rem, 6.5vw, 7rem);
}

.catalog-page .catalog-hero__aside p {
  color: rgb(255 254 250 / 0.72);
}

.catalog-page .catalog-hero__mark {
  right: 0;
  bottom: -0.18em;
  font-size: clamp(13rem, 24vw, 25rem);
  -webkit-text-stroke-color: rgb(170 116 49 / 0.28);
}

.catalog-page .catalog {
  padding: clamp(3rem, 6vw, 6rem) var(--page-gutter);
  background: #f4f1eb;
}

.catalog-page .catalog__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  gap: clamp(1rem, 1.7vw, 1.75rem);
  border: 0;
}

.catalog-page .catalog-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 470px;
  padding: 0 1.4rem 1.4rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgb(8 39 73 / 0.1);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgb(8 39 73 / 0.06);
}

.catalog-page .catalog-item::before {
  inset: 0 0 auto;
  width: auto;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
}

.catalog-page .catalog-item__image {
  width: calc(100% + 2.8rem);
  height: 185px;
  flex: 0 0 auto;
  margin: 0 -1.4rem 1.2rem;
  border: 0;
  border-radius: 0;
}

.catalog-page .catalog-item__number,
.catalog-page .catalog-item h2,
.catalog-page .catalog-item p,
.catalog-page .catalog-item a {
  grid-area: auto;
}

.catalog-page .catalog-item__number {
  margin-bottom: 0.7rem;
  font-size: 0.75rem;
}

.catalog-page .catalog-item h2 {
  min-height: 2.1em;
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 1.8vw, 2.15rem);
}

.catalog-page .catalog-item p {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.catalog-page .catalog-item > a:not(.catalog-item__more) {
  width: 100%;
  margin-top: auto;
  padding: 0.78rem 0;
  border-top: 1px solid rgb(8 39 73 / 0.1);
  border-bottom: 1px solid rgb(8 39 73 / 0.1);
}

.catalog-page .catalog-item__more {
  width: 100%;
  padding-top: 0.8rem;
  text-decoration: none !important;
}

.catalog-page .catalog-cta {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(3.5rem, 6vw, 6rem) max(var(--page-gutter), calc((100vw - var(--content-width)) / 2 + var(--page-gutter)));
  color: var(--white);
  background: var(--navy-deep);
}

.catalog-page .catalog-cta h2 {
  color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .catalog-page .catalog-item:hover {
    background: var(--white);
    box-shadow: 0 22px 50px rgb(8 39 73 / 0.12);
    transform: translateY(-5px);
  }

  .catalog-page .catalog-item:hover::before {
    transform: scaleX(1);
  }
}

@media (max-width: 1180px) {
  .catalog-page .catalog__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .catalog-page .catalog-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 3.5rem);
    padding-bottom: 3rem;
  }

  .catalog-page .catalog-hero__inner,
  .catalog-page .catalog__inner {
    grid-template-columns: 1fr;
  }

  .catalog-page .catalog-item {
    min-height: 430px;
  }

  .catalog-page .catalog-item h2 {
    min-height: 0;
  }

  .catalog-page .catalog-cta {
    padding-inline: var(--page-gutter);
  }
}

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

  .site-header,
  .site-nav,
  .site-nav a::after,
  .header-cta,
  .hero__cta,
  .service-card__link svg,
  .services-catalog-link,
  .services-catalog-link svg {
    transition-duration: 1ms;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--paper);
  }

  .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Composición compacta: el hero conserva el impacto y el resto reduce el recorrido. */
.priority-services,
.about,
.location,
.contact,
.catalog-hero,
.catalog,
.catalog-cta {
  min-height: auto;
}

.priority-services,
.about,
.location,
.contact {
  padding-block: clamp(3.25rem, 5vw, 5.5rem);
}

.priority-services__header {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.priority-services h2,
.about h2,
.location__info h2,
.contact__intro h2 {
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
}

.service-card {
  min-height: 360px;
}

.service-card__topline {
  min-height: 130px;
  height: 130px;
}

.priority-services__footer {
  padding-top: 1.25rem;
}

.about__inner {
  row-gap: 1.25rem;
}

.about__team-photo {
  min-height: 260px;
}

.about__essentials {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
}

.about__experience strong {
  font-size: clamp(4rem, 6vw, 6.5rem);
}

.location__map {
  min-height: 470px;
}

.location__details {
  margin-top: 1.5rem;
}

.location__details > div {
  padding-block: 0.72rem;
}

.contact__inner {
  gap: clamp(3rem, 6vw, 7rem);
}

.contact__intro > p:not(.section-kicker) {
  margin-top: 1.25rem;
}

.contact__direct {
  margin-top: 1.75rem;
}

.contact-form {
  gap: 1.15rem 1.5rem;
  padding: clamp(1.5rem, 2.5vw, 2.75rem);
}

.catalog-hero {
  padding-top: calc(var(--header-height) + clamp(2.5rem, 5vw, 5rem));
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.catalog-hero h1 {
  font-size: clamp(3.5rem, 6.5vw, 7rem);
}

.catalog {
  padding-block: 2rem;
}

.catalog__inner {
  min-height: auto;
  grid-template-rows: repeat(4, minmax(145px, auto));
}

.catalog-cta {
  min-height: auto;
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.treatment-hero {
  min-height: calc(100svh - 72px);
  padding-block: clamp(2.25rem, 4vh, 3.5rem);
}

.treatment-hero__image {
  height: min(62vh, 610px);
}

.treatment-faq {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

@media (max-width: 900px) {
  .priority-services,
  .about,
  .location,
  .contact {
    padding-block: 3.5rem;
  }

  .about__team-photo,
  .location__map {
    min-height: 360px;
  }

  .contact__inner,
  .location__inner,
  .about__inner {
    gap: 2.25rem;
  }
}

@media (max-width: 640px) {
  .priority-services,
  .about,
  .location,
  .contact {
    padding-block: 3rem;
  }

  .priority-services h2,
  .about h2,
  .location__info h2,
  .contact__intro h2 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
  }

  .service-card,
  .service-card--featured {
    min-height: 330px;
  }

  .about__team-photo,
  .location__map {
    min-height: 300px;
  }

  .treatment-hero__image {
    height: 300px;
  }
}
