@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --bg: #0d0f11;
  --bg-soft: #15181b;
  --surface: #1c2024;
  --surface-soft: #24282d;
  --text: #f5efe6;
  --muted: #baaa95;
  --gold: #c69a59;
  --gold-soft: rgba(198, 154, 89, 0.14);
  --line: rgba(255, 255, 255, 0.08);
  --white-panel: #f7f1e8;
  --white-text: #1e1b18;
  --white-muted: #6e665e;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --shell: 1240px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(198, 154, 89, 0.13), transparent 24%),
    linear-gradient(180deg, #0b0c0d 0%, #111315 100%);
}

body.site-light {
  background:
    radial-gradient(circle at top right, rgba(198, 154, 89, 0.1), transparent 22%),
    linear-gradient(180deg, #f6f0e8 0%, #fbf8f3 100%);
  color: var(--white-text);
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: Georgia, serif;
  line-height: 0.98;
  font-weight: 600;
}

.shell {
  width: min(calc(100% - 24px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(10, 11, 12, 0.88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

/* Final refinement: premium glass navigation without changing its layout. */
.site-header {
  isolation: isolate;
  background: linear-gradient(110deg, rgba(8, 10, 10, 0.94), rgba(17, 18, 17, 0.86));
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(205, 161, 92, 0.46), transparent);
}

.site-light .site-header {
  background: linear-gradient(110deg, rgba(250, 246, 238, 0.95), rgba(250, 246, 238, 0.84));
}

/* Slow, restrained movement only on the results storytelling imagery. */
.results-page .results-card--full-case,
.results-page .results-journey-media {
  animation: premier-results-float 9s ease-in-out infinite;
  will-change: transform;
}

.results-page .results-card--full-case:nth-child(2) {
  animation-delay: -3s;
}

.results-page .results-journey-media img {
  animation: premier-results-breathe 18s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes premier-results-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes premier-results-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}

@media (prefers-reduced-motion: reduce) {
  .results-page .results-card--full-case,
  .results-page .results-journey-media,
  .results-page .results-journey-media img {
    animation: none;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 11px 15px;
  border-radius: 10px;
  color: #111;
  background: var(--gold-bright, #e9c883);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.results-disclaimer {
  max-width: 74ch;
  margin: -12px 0 24px;
  padding: 12px 15px;
  border-left: 3px solid #8d642a;
  color: #5f554b;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.55;
}

@media (scripting: none) {
  [data-reveal],
  .results-marquee {
    opacity: 1 !important;
    transform: none !important;
  }
}

.site-light .site-header {
  background: rgba(247, 241, 232, 0.88);
  border-bottom-color: rgba(30, 27, 24, 0.08);
}

@keyframes premier-results-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--marquee-distance)), 0, 0); }
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(320px, 500px);
  align-items: center;
  gap: 16px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* The replacement lockup already contains the wordmark and Lagos line. */
.brand__text {
  display: none;
}

.brand__logo {
  width: min(176px, 22vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand--with-logo {
  gap: 12px;
}

.brand__logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter:
    brightness(1.18)
    contrast(1.12)
    saturate(1.02)
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.18))
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 700;
}

.site-light .brand__mark {
  background: rgba(30, 27, 24, 0.06);
}

.brand__text strong,
.brand__text span {
  display: block;
}

.brand__text strong {
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.brand__text span {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.94);
}

.site-light .site-nav {
  color: rgba(30, 27, 24, 0.86);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold);
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-header .header-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 540px;
  min-width: 0;
  align-items: stretch;
  justify-content: end;
  gap: 12px;
  flex-wrap: nowrap;
}

.site-header .header-actions > .button {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  min-height: 52px;
  padding-inline: 14px;
  font-size: 0.88rem;
  justify-content: center;
  text-align: center;
}

.hero-actions .button,
.cta-actions .button,
.team-intro__actions .button {
  flex: 0 1 auto;
}

.hero-actions,
.cta-actions,
.team-intro__actions {
  margin-top: 22px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--ghost .button__icon svg {
  fill: currentColor;
  stroke: none;
}

.button__icon--whatsapp {
  color: #25d366;
  display: inline-grid;
  place-items: center;
}

.button__icon--whatsapp svg,
.button__icon--whatsapp img {
  width: 20px;
  height: 20px;
  display: block;
}

.button__icon--whatsapp img {
  filter: none;
  object-fit: contain;
}

.button__icon--whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.button__icon--trail {
  margin-left: 2px;
}

.button__icon--trail svg {
  fill: none;
  stroke: currentColor;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.button:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.site-light .button--ghost {
  border-color: rgba(30, 27, 24, 0.12);
  background: rgba(30, 27, 24, 0.03);
}

.button--gold {
  background: var(--gold);
  color: #171310;
  box-shadow: 0 16px 34px rgba(198, 154, 89, 0.2);
}

.button--dark {
  background: #111111;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.title-line {
  display: block;
  text-wrap: balance;
}

.hero {
  padding: 26px 0 0;
}

.hero-board,
.panel,
.card,
.image-card,
.footer-panel,
.journey-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-light .hero-board,
.site-light .panel,
.site-light .card,
.site-light .image-card,
.site-light .footer-panel,
.site-light .journey-panel {
  border-color: rgba(30, 27, 24, 0.09);
}

.hero-board,
.journey-panel,
.image-card {
  overflow: hidden;
}

.hero-board img,
.journey-panel img,
.image-card img {
  width: 100%;
  height: auto;
}

.metrics-bar {
  margin-top: 18px;
  border-radius: 26px;
  background: var(--white-panel);
  color: var(--white-text);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.metric {
  padding: 20px 18px;
  text-align: center;
  border-right: 1px solid rgba(31, 29, 27, 0.09);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.metric span {
  color: var(--white-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.section {
  padding: 54px 0 0;
}

.section--white {
  margin-top: 54px;
  padding: 54px 0;
  background:
    radial-gradient(circle at top right, rgba(198, 154, 89, 0.1), transparent 22%),
    linear-gradient(180deg, #f6f0e8 0%, #fbf8f3 100%);
  color: var(--white-text);
}

.section-head {
  max-width: 1160px;
  margin-bottom: 28px;
}

.section-head h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 0.8rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.45vw, 3.05rem);
  margin-bottom: 0.8rem;
  line-height: 0.98;
  text-wrap: balance;
}

.section-head p,
.panel p,
.card p,
.card li {
  line-height: 1.8;
}

.section-head p,
.panel p,
.card p,
.card li {
  color: var(--muted);
}

.section-head p {
  max-width: 60ch;
  text-wrap: pretty;
}

.section--white .section-head p,
.section--white .panel p,
.section--white .card p,
.section--white .card li {
  color: var(--white-muted);
}

.grid-2,
.grid-3,
.grid-4,
.split,
.compare-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.split {
  grid-template-columns: 320px 1fr;
  align-items: start;
}

.compare-grid {
  grid-template-columns: 0.88fr 1.12fr;
  grid-template-areas:
    "copy card"
    "art card";
  align-items: start;
  column-gap: 18px;
  row-gap: 18px;
}

.compare-copy {
  grid-area: copy;
}

.compare-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.9rem;
}

.compare-copy p {
  color: var(--white-muted);
  line-height: 1.8;
  max-width: 31ch;
}

.compare-art-wrap {
  grid-area: art;
}

.panel {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.site-light .panel,
.site-light .card {
  background: rgba(255, 255, 255, 0.66);
}

.panel h2,
.panel h3 {
  margin-bottom: 0.9rem;
}

.panel h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.checklist {
  padding-left: 18px;
  margin: 0;
}

.checklist li + li {
  margin-top: 10px;
}

.card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.card--link {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card--link:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 154, 89, 0.28);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.card--link:hover .card__visual img {
  transform: scale(1.03);
}

.card__visual {
  background: #0f1012;
  position: relative;
  overflow: hidden;
}

.card__visual--portrait {
  aspect-ratio: 4 / 5;
}

.card__visual--portrait-real {
  background:
    radial-gradient(circle at 50% 18%, rgba(198, 154, 89, 0.18), transparent 34%),
    linear-gradient(180deg, #15211d 0%, #0f1614 100%);
}

.card__visual--portrait-real img {
  object-position: center top;
  transform: scale(1.02);
}

.card__visual--result {
  aspect-ratio: 4 / 4.15;
}

.card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.03) brightness(0.995);
  transition: transform 220ms ease;
}

#hairline-case .card__visual,
#crown-case .card__visual {
  aspect-ratio: 1024 / 500;
}

#hairline-case .card__visual img,
#crown-case .card__visual img {
  object-fit: contain;
  object-position: center center;
  background: #f5efe6;
  transform: none;
}

.beard-visual {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.beard-visual--before {
  background:
    radial-gradient(148px 176px at 21% 63%, rgba(231, 215, 203, 1) 0%, rgba(231, 215, 203, 0.995) 42%, transparent 58%),
    radial-gradient(112px 126px at 20% 49%, rgba(236, 220, 209, 0.998) 0%, rgba(236, 220, 209, 0.985) 44%, transparent 60%),
    radial-gradient(78px 92px at 28% 76%, rgba(221, 203, 192, 0.998) 0%, rgba(221, 203, 192, 0.975) 48%, transparent 62%),
    radial-gradient(64px 52px at 35% 55%, rgba(241, 226, 216, 0.985) 0%, rgba(241, 226, 216, 0.92) 52%, transparent 70%),
    radial-gradient(36px 30px at 37% 46%, rgba(244, 229, 219, 0.94) 0%, rgba(244, 229, 219, 0.8) 54%, transparent 72%),
    linear-gradient(90deg, rgba(238, 225, 216, 0.92) 0%, rgba(238, 225, 216, 0.42) 39%, transparent 48%);
  mix-blend-mode: normal;
  opacity: 1;
  filter: none;
}

.beard-visual--after {
  background:
    radial-gradient(46px 74px at 75% 55%, rgba(14, 10, 9, 0.34), transparent 72%),
    radial-gradient(28px 36px at 82% 46%, rgba(10, 7, 6, 0.24), transparent 74%),
    radial-gradient(18px 18px at 70% 36%, rgba(16, 12, 11, 0.16), transparent 74%);
  mix-blend-mode: multiply;
  opacity: 0.95;
}

.card--beard-case .card__visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 48%;
  height: 100%;
  background:
    radial-gradient(144px 188px at 44% 60%, rgba(233, 216, 204, 0.98) 0%, rgba(233, 216, 204, 0.9) 50%, transparent 60%),
    radial-gradient(72px 80px at 56% 56%, rgba(239, 223, 212, 0.88) 0%, rgba(239, 223, 212, 0.72) 52%, transparent 66%),
    linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 100%);
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 1;
}

.card--beard-case .card__visual > img,
.card--beard-case .beard-visual {
  position: relative;
  z-index: 2;
}

.card__body {
  padding: 16px 16px 20px;
}

.card__body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
  line-height: 1.08;
}

.card__body > p {
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.card__detail-list {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.55rem;
}

.card__detail-list span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.card__meta {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-light .card__meta {
  color: var(--white-muted);
}

.compare-card {
  grid-area: card;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  overflow: hidden;
  background: #fffdf9;
  color: var(--white-text);
  border: 1px solid rgba(30, 27, 24, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-self: stretch;
}

.compare-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 20px;
}

.compare-side--dark {
  background: #171816;
  color: #f5f0e8;
}

.compare-art {
  margin-top: 18px;
  aspect-ratio: 16 / 9.6;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(30, 27, 24, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.compare-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.05) brightness(0.99);
  transition: transform 260ms ease, filter 260ms ease;
}

.compare-art-actions {
  margin-top: 20px;
}

.compare-art:hover img {
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.07) brightness(1);
}

.compare-side h3 {
  font-size: 1.22rem;
  line-height: 1.08;
  margin-bottom: 0.95rem;
}

.compare-side ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-side li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.compare-side__note {
  margin: auto 0 0;
  padding-top: 0;
  color: inherit;
  opacity: 0.82;
  line-height: 1.58;
  font-size: 0.92rem;
}

.compare-side__note--light {
  color: var(--white-muted);
  opacity: 1;
}

.compare-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 241, 214, 0.9), rgba(255, 241, 214, 0) 42%),
    linear-gradient(180deg, #e2c28f 0%, #b98a49 100%);
  box-shadow:
    0 0 0 1px rgba(198, 154, 89, 0.18),
    0 6px 12px rgba(198, 154, 89, 0.24);
}

.compare-vs {
  display: grid;
  place-items: center;
  width: 74px;
  background: linear-gradient(180deg, #d9b57a, #b68441);
  color: #1a140f;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.feature-points {
  display: grid;
  gap: 12px;
}

.feature-point {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.site-light .feature-point {
  border-color: rgba(30, 27, 24, 0.08);
  background: rgba(30, 27, 24, 0.03);
}

.feature-point strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.site-light .feature-point strong {
  color: var(--white-text);
}

.footer-panel {
  margin-top: 54px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  position: relative;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1.05fr 0.95fr;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.footer-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.footer-grid p,
.footer-grid li {
  line-height: 1.8;
  color: var(--muted);
}

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

.footer-contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.footer-contact__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 6px;
  color: var(--gold);
}

.footer-contact__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 8px rgba(198, 154, 89, 0.1));
}

.site-light .footer-grid p,
.site-light .footer-grid li {
  color: var(--white-muted);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-logo {
  width: 138px;
  height: auto;
  object-fit: contain;
  padding: 8px 10px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 50% 50%, rgba(198, 154, 89, 0.12), transparent 72%);
  border: 1px solid rgba(198, 154, 89, 0.3);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 22px rgba(198, 154, 89, 0.12);
  filter:
    brightness(1.28)
    contrast(1.22)
    saturate(1.06)
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.2));
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--gold);
  transition: transform 160ms ease, color 160ms ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  color: #e0b575;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-badge {
  display: grid;
  place-items: center;
  min-width: 68px;
  min-height: 68px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid rgba(198, 154, 89, 0.34);
  color: #f2eadf;
  font-family: Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.footer-badge--isaps {
  min-width: 88px;
  min-height: 88px;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}

.footer-member-note {
  margin: 0;
  color: var(--muted);
}

.footer-grid > div {
  position: relative;
  padding: 10px 12px;
  border-radius: 22px;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-grid > div:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow: inset 0 0 0 1px rgba(198, 154, 89, 0.08);
  transform: translateY(-2px);
}

.site-light .footer-grid > div:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,244,238,0.74));
  box-shadow: inset 0 0 0 1px rgba(198, 154, 89, 0.12);
}

.footer-grid ul a,
.footer-contact-list a,
.footer-bottom__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  margin-left: -10px;
  border-radius: 999px;
  position: relative;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-grid ul a::before,
.footer-contact-list a::before,
.footer-bottom__links a::before {
  content: "";
  width: 0;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(198, 154, 89, 0.9), rgba(224, 181, 117, 0.35));
  transition: width 180ms ease;
}

.footer-grid ul a:hover,
.footer-grid ul a:focus-visible,
.footer-contact-list a:hover,
.footer-contact-list a:focus-visible,
.footer-bottom__links a:hover,
.footer-bottom__links a:focus-visible {
  color: #f5e8d6;
  background: rgba(198, 154, 89, 0.1);
  box-shadow: inset 0 0 0 1px rgba(198, 154, 89, 0.16);
  transform: translateX(4px);
  text-decoration: none;
}

.footer-grid ul a:hover::before,
.footer-grid ul a:focus-visible::before,
.footer-contact-list a:hover::before,
.footer-contact-list a:focus-visible::before,
.footer-bottom__links a:hover::before,
.footer-bottom__links a:focus-visible::before {
  width: 12px;
}

.site-light .footer-grid ul a:hover,
.site-light .footer-grid ul a:focus-visible,
.site-light .footer-contact-list a:hover,
.site-light .footer-contact-list a:focus-visible,
.site-light .footer-bottom__links a:hover,
.site-light .footer-bottom__links a:focus-visible {
  color: var(--black);
  background: rgba(198, 154, 89, 0.12);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bottom__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(198, 154, 89, 0.1), transparent 20%),
    linear-gradient(90deg, rgba(15, 16, 17, 0) 58%, rgba(15, 16, 17, 0.18) 74%, rgba(15, 16, 17, 0.52) 100%);
  pointer-events: none;
}

.site-footer {
  padding: 0 0 36px;
}

@media (max-width: 1080px) {
  .metrics-grid,
  .grid-4,
  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .compare-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "art"
      "card";
  }

  .hero-logo-panel {
    width: 148px;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    padding: 14px 0 18px;
  }

  .site-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .metrics-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .compare-card {
    grid-template-columns: 1fr;
  }

  .compare-vs {
    width: 100%;
    min-height: 64px;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(31, 29, 27, 0.09);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .brand--with-logo {
    align-items: flex-start;
  }

  .brand__logo {
    width: 62px;
    height: 62px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shell {
    width: min(calc(100% - 16px), var(--shell));
  }

  .site-nav {
    gap: 10px 16px;
    font-size: 0.84rem;
  }

  .button {
    width: 100%;
  }

  .header-actions {
    display: grid;
    width: 100%;
  }

  .site-header .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }

  .site-header .header-actions .button {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
    font-size: 0.76rem;
    min-height: 54px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }

  .hero-copy-card,
  .team-intro,
  .panel,
  .cta-banner__copy,
  .page-hero__panel {
    padding: 24px;
  }

  .team-intro {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero-copy-card h1,
  .section-head h2,
  .cta-banner__copy h2,
  .page-hero__panel h1 {
    max-width: none;
    font-size: clamp(1.78rem, 8.4vw, 2.46rem);
  }

  .hero-copy-card h1 {
    line-height: 0.96;
  }

  .team-intro h2 {
    max-width: none;
    width: 100%;
    font-size: clamp(1.74rem, 7.4vw, 2.34rem);
    line-height: 0.98;
    text-wrap: pretty;
    margin-inline: auto;
  }

  .team-intro p {
    max-width: none;
    width: 100%;
    line-height: 1.7;
    margin-inline: auto;
  }

  .team-intro .eyebrow,
  .team-intro .header-actions {
    justify-content: center;
    margin-inline: auto;
  }

  .team-intro .header-actions {
    width: 100%;
  }

  .hero-copy-card > p:not(.eyebrow),
  .section-head p,
  .compare-copy p,
  .cta-banner__copy p,
  .journey-layout .panel > p:not(.eyebrow) {
    max-width: none;
  }

  .hero-logo-panel {
    top: 16px;
    right: 16px;
    width: 126px;
    padding: 10px;
  }

  .hero-reassurance {
    display: grid;
    gap: 8px;
  }

  .stats-strip {
    width: calc(100% - 16px);
    transform: translateY(-6px);
  }
}

/* Final navigation and readability QA. This keeps the visible menu on one line
   at desktop sizes while the existing mobile layout remains free to wrap. */
@media (min-width: 821px) {
  .site-nav {
    flex-wrap: nowrap;
    gap: 8px clamp(8px, 1vw, 16px);
  }

  .site-nav a {
    white-space: nowrap;
  }
}

/* Prevent accidental word splits while preserving the individual page scales. */
:where(h1, h2, h3, h4) {
  max-inline-size: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

:where(p, li) {
  text-wrap: pretty;
}

.site-main {
  padding-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy-card,
.hero-visual-card,
.stats-strip,
.team-intro,
.cta-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  position: relative;
  overflow: hidden;
}

.hero-copy-card h1 {
  font-size: clamp(1.86rem, 2.26vw, 2.52rem);
  margin-bottom: 1rem;
  max-width: 14.8ch;
  line-height: 0.97;
  text-wrap: balance;
}

.hero-headline__line {
  display: block;
}

@media (min-width: 900px) {
  .hero-headline__line {
    white-space: nowrap;
  }
}

.hero-copy-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy-card > p:not(.eyebrow) {
  max-width: 43ch;
  text-wrap: pretty;
}

.hero-copy-card::before {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,154,89,0.16), transparent 72%);
  pointer-events: none;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.hero-feature {
  padding: 16px 16px 15px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    radial-gradient(circle at top left, rgba(198,154,89,0.08), transparent 58%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  min-width: 0;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hero-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 14px;
  color: var(--gold);
}

.hero-feature__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 12px rgba(198, 154, 89, 0.14));
}

.hero-feature strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 0.95rem;
}

.hero-feature span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 154, 89, 0.22);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual-card {
  overflow: hidden;
  background: #111;
  position: relative;
}

.hero-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(circle at 20% 18%, rgba(198, 154, 89, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}

.hero-media__image,
.hero-media__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  animation: media-breathe 14s ease-in-out infinite;
}

.hero-media__video {
  background: #111;
  z-index: 2;
}

.hero-media__image--fallback {
  z-index: 1;
}

.hero-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,16,16,0.08), rgba(16,16,16,0.18));
  pointer-events: none;
}

.hero-logo-panel {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
  width: 160px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(16, 16, 16, 0.42);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  animation: hero-watermark-drift 18s ease-in-out infinite;
}

.hero-logo-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.94;
}

@keyframes media-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

@keyframes hero-watermark-drift {
  0% {
    top: 22px;
    right: 22px;
    left: auto;
    bottom: auto;
    transform: translate3d(0, 0, 0);
  }

  25% {
    top: auto;
    right: 22px;
    left: auto;
    bottom: 22px;
    transform: translate3d(0, 0, 0);
  }

  50% {
    top: auto;
    right: auto;
    left: 22px;
    bottom: 22px;
    transform: translate3d(0, 0, 0);
  }

  75% {
    top: 22px;
    right: auto;
    left: 22px;
    bottom: auto;
    transform: translate3d(0, 0, 0);
  }

  100% {
    top: 22px;
    right: 22px;
    left: auto;
    bottom: auto;
    transform: translate3d(0, 0, 0);
  }
}

.stats-strip {
  position: relative;
  z-index: 6;
  width: min(1180px, calc(100% - 48px));
  margin: 30px auto 0;
  overflow: hidden;
  background: var(--white-panel);
  color: var(--white-text);
  animation: statsFloat 6.2s ease-in-out infinite;
  box-shadow:
    0 38px 78px rgba(20, 16, 11, 0.19),
    0 16px 28px rgba(20, 16, 11, 0.11),
    0 1px 0 rgba(255, 255, 255, 0.64) inset;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stats-item {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(31, 29, 27, 0.09);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.stats-item:last-child {
  border-right: 0;
}

.stats-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 12px;
  color: var(--gold);
}

.stats-item__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 10px rgba(198, 154, 89, 0.12));
}

.stats-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.stats-item span {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.stats-item:hover {
  transform: translateY(-4px);
  background: rgba(198, 154, 89, 0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.stats-item:nth-child(1) {
  animation: statsCardLift 6.5s ease-in-out infinite;
}

.stats-item:nth-child(2) {
  animation: statsCardLift 6.5s ease-in-out infinite 0.3s;
}

.stats-item:nth-child(3) {
  animation: statsCardLift 6.5s ease-in-out infinite 0.6s;
}

.stats-item:nth-child(4) {
  animation: statsCardLift 6.5s ease-in-out infinite 0.9s;
}

.stats-item:nth-child(5) {
  animation: statsCardLift 6.5s ease-in-out infinite 1.2s;
}

.stats-item:nth-child(4) span {
  max-width: 19ch;
  margin-inline: auto;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(560px, 1.18fr) minmax(0, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.team-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  min-height: 100%;
  padding: 34px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  position: relative;
  overflow: hidden;
}

.team-intro h2 {
  font-size: clamp(2.14rem, 2.7vw, 3rem);
  margin-bottom: 0.9rem;
  max-width: 11.4ch;
  width: 100%;
  line-height: 0.98;
  text-wrap: balance;
}

@media (max-width: 920px) and (min-width: 641px) {
  .hero-copy-card h1 {
    font-size: clamp(1.85rem, 3vw, 2.45rem);
  }

  .team-intro h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
  }
}

.team-intro p {
  color: var(--muted);
  line-height: 1.72;
  max-width: 45ch;
  margin-bottom: 0;
  text-wrap: pretty;
}

.team-intro::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,154,89,0.13), transparent 72%);
}

.result-note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(30, 27, 24, 0.04);
  border: 1px solid rgba(30, 27, 24, 0.08);
  color: var(--white-muted);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 20px;
  align-items: stretch;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.journey-step {
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018)),
    radial-gradient(circle at top left, rgba(198,154,89,0.08), transparent 62%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.journey-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.journey-step__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 10px rgba(198, 154, 89, 0.1));
}

.journey-step span {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
}

.journey-step h3 {
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

.journey-step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.journey-step:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 154, 89, 0.18);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.journey-layout .panel > p:not(.eyebrow) {
  max-width: 42ch;
}

.journey-side {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  background:
    radial-gradient(circle at 18% 30%, rgba(198, 154, 89, 0.12), transparent 36%),
    linear-gradient(180deg, #111315 0%, #181a1d 100%);
}

.journey-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04) brightness(0.98);
  mix-blend-mode: normal;
  opacity: 1;
  transition: transform 240ms ease;
}

.journey-side::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 12, 13, 0.56) 0%, rgba(11, 12, 13, 0.18) 22%, rgba(11, 12, 13, 0) 44%),
    linear-gradient(180deg, rgba(11, 12, 13, 0.04) 0%, rgba(11, 12, 13, 0.18) 100%);
  pointer-events: none;
}

.journey-side:hover img,
.cta-banner__visual:hover img {
  transform: scale(1.03);
}

.cta-banner {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  background: linear-gradient(135deg, #171818 0%, #0f1011 100%);
}

.cta-banner__copy {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.cta-banner__copy::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 154, 89, 0.14), transparent 72%);
  pointer-events: none;
}

.cta-banner__copy h2 {
  font-size: clamp(1.84rem, 3.12vw, 2.72rem);
  margin-bottom: 0.9rem;
  max-width: 11.8ch;
  line-height: 0.98;
  color: var(--text);
  text-wrap: balance;
}

.cta-banner__copy p {
  color: rgba(245, 239, 230, 0.82);
  line-height: 1.8;
  max-width: 41ch;
}

.cta-banner__copy .eyebrow {
  color: rgba(198, 154, 89, 0.96);
}

.cta-banner__copy .title-line {
  color: var(--text);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.cta-banner__copy .cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  align-items: stretch;
}

.cta-banner__copy .cta-actions .button {
  width: 100%;
  min-width: 0;
  padding-inline: 14px;
}

.cta-banner__copy .button--ghost {
  color: #f7f1e8;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-banner__copy .button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-banner__visual {
  min-height: 320px;
  background: #111;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.05) brightness(0.98);
  mix-blend-mode: normal;
  opacity: 1;
  transition: transform 240ms ease;
}

.cta-banner__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 16, 17, 0.48) 0%, rgba(15, 16, 17, 0.08) 26%, rgba(15, 16, 17, 0) 48%),
    linear-gradient(180deg, rgba(15, 16, 17, 0.04) 0%, rgba(15, 16, 17, 0.18) 100%);
  pointer-events: none;
}

.page-hero {
  padding: 28px 0 0;
}

.page-hero__panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.site-light .page-hero__panel {
  border-color: rgba(30, 27, 24, 0.09);
  background: rgba(255,255,255,0.74);
}

.page-hero__panel h1 {
  font-size: clamp(1.84rem, 2.9vw, 2.9rem);
  line-height: 0.97;
  margin-bottom: 0.9rem;
  text-wrap: balance;
}

.page-hero__panel p {
  color: var(--muted);
  line-height: 1.8;
}

.site-light .page-hero__panel p {
  color: var(--white-muted);
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(198, 154, 89, 0.16), transparent 26%),
    linear-gradient(115deg, rgba(198, 154, 89, 0.04), transparent 44%);
  pointer-events: none;
}

.about-hero > * {
  position: relative;
  z-index: 1;
}

.about-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero__copy h1 {
  max-width: 12.2ch;
}

.about-hero__copy p:last-child {
  max-width: 66ch;
}

.about-hero__brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 28px);
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(198, 154, 89, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
    radial-gradient(circle at 18% 16%, rgba(198, 154, 89, 0.18), transparent 28%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 18px 30px rgba(0, 0, 0, 0.18);
}

.about-hero__brand-panel--logo-only {
  align-items: center;
  justify-content: center;
}

.site-light .about-hero__brand-panel {
  border-color: rgba(198, 154, 89, 0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(249,244,238,0.82)),
    radial-gradient(circle at 18% 16%, rgba(198, 154, 89, 0.14), transparent 30%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.74),
    0 18px 34px rgba(50, 36, 20, 0.08);
}

.about-hero__brand-mark {
  width: min(100%, 228px);
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(198, 154, 89, 0.22);
  background: rgba(15, 16, 17, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 10px 18px rgba(0, 0, 0, 0.16);
}

.site-light .about-hero__brand-mark {
  background: rgba(255,255,255,0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.88),
    0 12px 20px rgba(60, 39, 17, 0.08);
}

.about-hero__brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    brightness(1.22)
    contrast(1.16)
    saturate(1.02)
    drop-shadow(0 1px 0 rgba(255,255,255,0.18));
}

.site-light .about-hero__brand-mark img {
  filter:
    brightness(0.9)
    contrast(1.14)
    saturate(0.96);
}

.about-hero__brand-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-hero__brand-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-hero__brand-copy strong {
  display: block;
  font-size: clamp(1.18rem, 1.52vw, 1.44rem);
  line-height: 1.18;
  text-wrap: balance;
}

.about-hero__brand-copy p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.72;
}

.about-hero__brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero__brand-chips span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(198, 154, 89, 0.2);
  background: rgba(198, 154, 89, 0.08);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-light .about-hero__brand-chips span {
  background: rgba(198, 154, 89, 0.1);
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero__copy h1,
  .about-hero__brand-copy strong {
    max-width: none;
  }

  .about-hero__brand-mark {
    width: min(100%, 210px);
  }
}

.results-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 22px;
  align-items: stretch;
}

.results-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.results-hero-copy h1 {
  max-width: 12.4ch;
  font-size: clamp(1.84rem, 2.42vw, 2.44rem);
}

.results-hero-copy > p:last-of-type {
  max-width: 54ch;
  text-wrap: pretty;
}

.results-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.results-hero-points span {
  border: 1px solid rgba(198, 154, 89, 0.22);
  background: rgba(198, 154, 89, 0.08);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.results-hero-media {
  min-height: 100%;
}

.results-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.results-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.results-proof-card {
  padding: 20px 20px 22px;
  border: 1px solid rgba(30, 27, 24, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(198, 154, 89, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.results-proof-card strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.55rem;
  color: rgba(34, 27, 21, 0.96);
  text-shadow: none;
}

.results-proof-card span {
  color: rgba(59, 48, 39, 0.9);
  line-height: 1.6;
}

.results-section-head {
  display: grid;
  grid-template-columns: minmax(460px, 1.08fr) minmax(360px, 0.92fr);
  align-items: end;
  column-gap: 30px;
  max-width: none;
}

.results-section-head h2 {
  max-width: 11.8ch;
  margin-bottom: 0;
}

.results-section-head p {
  max-width: 40ch;
}

.results-grid {
  align-items: stretch;
}

.results-card {
  display: flex;
  flex-direction: column;
}

.results-card .card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.results-card__eyebrow {
  margin: 0 0 0.1rem;
}

.results-card__list {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
}

.results-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--white-muted);
  line-height: 1.52;
}

.results-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 241, 214, 0.92), rgba(255, 241, 214, 0) 42%),
    linear-gradient(180deg, #e2c28f 0%, #b98a49 100%);
  box-shadow:
    0 0 0 1px rgba(198, 154, 89, 0.18),
    0 4px 10px rgba(198, 154, 89, 0.18);
}

.results-storyboard {
  align-items: stretch;
}

.results-journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 20px;
  align-items: stretch;
}

.results-journey-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.results-journey-copy h2 {
  max-width: 17ch;
  font-size: clamp(2.4rem, 3.2vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.results-timeline {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.results-timeline div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-light .results-timeline div {
  border-top-color: rgba(30, 27, 24, 0.08);
}

.results-timeline strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.results-timeline span {
  color: var(--muted);
  line-height: 1.6;
}

.site-light .results-timeline span {
  color: var(--white-muted);
}

.results-journey-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.services-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-hero-copy h1 {
  font-size: clamp(1.88rem, 2.8vw, 2.92rem);
  margin-bottom: 0.95rem;
  max-width: 13.8ch;
  line-height: 0.97;
}

.services-hero-copy p:last-of-type {
  max-width: 43ch;
  margin-bottom: 0;
}

.services-hero-media {
  min-height: 100%;
}

.services-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
}

.services-section-head {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(320px, 0.92fr);
  align-items: end;
  column-gap: 26px;
  max-width: none;
}

.services-section-head h2 {
  max-width: 13.2ch;
  margin-bottom: 0;
}

.service-overview-grid {
  align-items: stretch;
}

.service-summary-card {
  min-height: 100%;
}

.service-summary-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.service-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  color: var(--white-muted);
  line-height: 1.6;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 241, 214, 0.92), rgba(255, 241, 214, 0) 42%),
    linear-gradient(180deg, #e2c28f 0%, #b98a49 100%);
  box-shadow:
    0 0 0 1px rgba(198, 154, 89, 0.18),
    0 6px 12px rgba(198, 154, 89, 0.18);
}

.service-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.service-spotlight__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-spotlight__content h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  max-width: 13ch;
}

.service-spotlight__content > p {
  max-width: 48ch;
}

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

.service-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-method {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.service-method h3 {
  font-size: 1.5rem;
  line-height: 1.04;
  margin-bottom: 0.85rem;
}

.service-method p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.service-method__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-method__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(198, 154, 89, 0.08);
  border: 1px solid rgba(198, 154, 89, 0.18);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.services-secondary-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

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

.service-process-step p {
  max-width: 24ch;
}

.about-intro-grid {
  align-items: stretch;
}

.about-intro-grid .image-card {
  min-height: 100%;
}

.about-intro-grid .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-feature-points {
  margin-top: 20px;
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.about-stat {
  padding: 18px 18px 17px;
  border-radius: 20px;
  border: 1px solid rgba(30, 27, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(30, 27, 24, 0.03), rgba(30, 27, 24, 0.02)),
    radial-gradient(circle at top left, rgba(198, 154, 89, 0.1), transparent 58%);
}

.about-stat strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white-text);
}

.about-stat span {
  color: var(--white-muted);
  line-height: 1.65;
}

.about-manifesto {
  display: grid;
  gap: 18px;
}

.about-manifesto__intro {
  display: grid;
  gap: 20px;
}

.about-manifesto__media {
  min-height: 260px;
}

.about-manifesto__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.07);
}

.about-manifesto__intro h2,
.about-story-layout h2,
.about-process__heading h2 {
  max-width: 14ch;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-principle {
  min-height: 100%;
}

.about-principle h3,
.about-process-step h3 {
  margin-bottom: 0.65rem;
}

.about-principle p:last-child,
.about-process-step p {
  color: var(--white-muted);
  line-height: 1.72;
}

.about-story-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.about-bullet-list {
  display: grid;
  gap: 18px;
}

.about-bullet-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(30, 27, 24, 0.08);
}

.about-bullet-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-bullet-list strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white-text);
}

.about-bullet-list span {
  color: var(--white-muted);
  line-height: 1.68;
}

.about-process {
  display: grid;
  gap: 18px;
}

.about-process__heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.about-process__heading-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-process__heading-copy p:last-child {
  max-width: 46ch;
  margin-bottom: 0;
}

.about-process__visual {
  min-height: 0;
  height: clamp(280px, 30vw, 390px);
  overflow: hidden;
}

.about-process__visual img,
.about-process__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.results-card--full-case .card__visual--result {
  aspect-ratio: 2 / 1;
  background: #151310;
}

.results-card--full-case .card__visual--result img {
  object-fit: contain;
  transform: none;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-process-step {
  position: relative;
  overflow: hidden;
}

.about-process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(198, 154, 89, 0.92), rgba(198, 154, 89, 0));
}

.about-process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(198, 154, 89, 0.26);
  background: rgba(198, 154, 89, 0.08);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.83rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-option {
  display: block;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(30, 27, 24, 0.08);
  background: rgba(30, 27, 24, 0.03);
}

.contact-option strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-hero-grid,
.contact-route-layout,
.contact-action-grid,
.contact-expect-grid {
  display: grid;
  gap: 18px;
}

.contact-hero-grid,
.contact-route-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: stretch;
}

.contact-hero-copy,
.contact-route-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero-copy h1 {
  max-width: 14.2ch;
}

.contact-hero-copy > p:last-of-type {
  max-width: 52ch;
}

.contact-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-hero-points span {
  border: 1px solid rgba(198, 154, 89, 0.18);
  background: rgba(198, 154, 89, 0.08);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-hero-actions,
.contact-route-actions {
  margin-top: 22px;
  flex-wrap: wrap;
}

.contact-hero-media,
.contact-visit-media {
  min-height: 100%;
}

.contact-hero-media {
  position: relative;
}

.contact-hero-brand {
  position: absolute;
  z-index: 3;
  top: 12%;
  right: 7%;
  width: clamp(170px, 42%, 300px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(207, 164, 96, 0.3);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.contact-hero-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.contact-hero-media img,
.contact-visit-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.contact-visit-media--hospital img {
  object-position: center 18%;
  filter: saturate(1.03) contrast(1.04) brightness(0.99);
}

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

.contact-action-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(198, 154, 89, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-action-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 154, 89, 0.28);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.contact-action-card strong {
  display: block;
  margin: 0.9rem 0 0.45rem;
  font-size: 1.08rem;
  line-height: 1.1;
}

.contact-action-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-action-card__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-action-card__icon svg,
.contact-action-card__icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-action-card__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-action-card__meta {
  display: block;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-route-card h2 {
  max-width: 7.2ch;
  font-size: clamp(2.8rem, 5vw, 4.55rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-wrap: balance;
  margin-bottom: 1rem;
}

.contact-route-card > p:not(.eyebrow) {
  max-width: 41ch;
}

.contact-detail-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-detail-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-detail-item strong,
.contact-detail-item span {
  display: block;
}

.contact-detail-item strong {
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail-item span {
  color: var(--muted);
  line-height: 1.7;
}

.contact-visit-media {
  position: relative;
  overflow: hidden;
}

.contact-visit-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px 20px 18px;
  border-radius: 22px;
  background: rgba(15, 18, 16, 0.82);
  border: 1px solid rgba(198, 154, 89, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.contact-visit-overlay__label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-visit-overlay strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.35;
}

.contact-section-head h2 {
  max-width: 18ch;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(2.2rem, 3.2vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.contact-section-head {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
  gap: 0;
}

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

.contact-expect-card {
  position: relative;
  padding-top: 64px;
}

.contact-expect-card__number {
  position: absolute;
  left: 28px;
  top: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(198, 154, 89, 0.12);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-expect-card h3 {
  font-size: 1.36rem;
  line-height: 1.08;
}

.contact-cta-banner .cta-banner__copy h2 {
  max-width: 12ch;
}

.contact-cta-visual img {
  object-position: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.hero-feature,
.stats-item,
.journey-step,
.grid-3 .card,
.footer-grid > div,
.compare-copy,
.compare-art-wrap,
.compare-card,
.cta-banner__copy,
.cta-banner__visual {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms ease;
}

[data-reveal].is-visible .hero-feature,
[data-reveal].is-visible .stats-item,
[data-reveal].is-visible .journey-step,
[data-reveal].is-visible .grid-3 .card,
[data-reveal].is-visible .footer-grid > div,
[data-reveal].is-visible .compare-copy,
[data-reveal].is-visible .compare-art-wrap,
[data-reveal].is-visible .compare-card,
[data-reveal].is-visible .cta-banner__copy,
[data-reveal].is-visible .cta-banner__visual {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible .hero-feature:nth-child(1),
[data-reveal].is-visible .stats-item:nth-child(1),
[data-reveal].is-visible .journey-step:nth-child(1),
[data-reveal].is-visible .grid-3 .card:nth-child(1),
[data-reveal].is-visible .footer-grid > div:nth-child(1) {
  transition-delay: 70ms;
}

[data-reveal].is-visible .hero-feature:nth-child(2),
[data-reveal].is-visible .stats-item:nth-child(2),
[data-reveal].is-visible .journey-step:nth-child(2),
[data-reveal].is-visible .grid-3 .card:nth-child(2),
[data-reveal].is-visible .footer-grid > div:nth-child(2) {
  transition-delay: 130ms;
}

[data-reveal].is-visible .hero-feature:nth-child(3),
[data-reveal].is-visible .stats-item:nth-child(3),
[data-reveal].is-visible .journey-step:nth-child(3),
[data-reveal].is-visible .grid-3 .card:nth-child(3),
[data-reveal].is-visible .footer-grid > div:nth-child(3) {
  transition-delay: 190ms;
}

[data-reveal].is-visible .stats-item:nth-child(4),
[data-reveal].is-visible .journey-step:nth-child(4),
[data-reveal].is-visible .footer-grid > div:nth-child(4) {
  transition-delay: 250ms;
}

[data-reveal].is-visible .stats-item:nth-child(5),
[data-reveal].is-visible .footer-grid > div:nth-child(5) {
  transition-delay: 310ms;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(248px, calc(100vw - 36px));
  padding: 10px 14px 10px 10px;
  border-radius: 22px;
  background: rgba(13, 16, 15, 0.965);
  color: #fff;
  border: 1px solid rgba(198, 154, 89, 0.14);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
  background: rgba(15, 18, 17, 0.985);
  border-color: rgba(198, 154, 89, 0.28);
}

.floating-whatsapp:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.floating-whatsapp__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow:
    0 8px 20px rgba(37, 211, 102, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.floating-whatsapp__icon svg,
.floating-whatsapp__icon img {
  width: 22px;
  height: 22px;
  display: block;
  filter: none;
  object-fit: contain;
}

.floating-whatsapp__icon svg {
  fill: #fff;
  filter: none;
}

.floating-whatsapp__text {
  min-width: 0;
  display: block;
}

.floating-whatsapp__eyebrow {
  display: none;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(198, 154, 89, 0.72);
}

.floating-whatsapp__label {
  display: block;
  margin-top: 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.service-detail-hero,
.service-detail-section,
.service-detail-process,
.service-detail-faq,
.service-detail-comparison {
  display: grid;
  gap: 20px;
}

.service-detail-hero {
  grid-template-columns: minmax(0, 1.34fr) minmax(260px, 0.66fr);
  align-items: stretch;
}

.service-detail-hero__copy,
.service-detail-section__copy,
.service-detail-comparison__copy,
.service-detail-faq__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-hero__copy h1,
.service-detail-section__copy h2,
.service-detail-comparison__copy h2,
.service-detail-faq__intro h2 {
  max-width: 12.4ch;
  text-wrap: balance;
}

.service-detail-hero__copy h1 {
  font-size: clamp(1.34rem, 1.66vw, 1.92rem);
  line-height: 0.98;
}

.service-detail-hero__copy p,
.service-detail-section__copy > p,
.service-detail-comparison__copy > p,
.service-detail-faq__intro > p {
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.78;
  text-wrap: pretty;
}

.service-detail-hero__visual img,
.service-detail-section__visual img,
.service-detail-comparison__visual img,
.service-detail-process__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-proof .panel,
.service-detail-faq-grid .panel {
  min-height: 100%;
}

.service-detail-proof h3,
.service-detail-faq-grid h3 {
  font-size: 1.34rem;
}

.service-detail-process {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
}

.service-detail-process__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-step {
  min-height: 100%;
}

.service-detail-step p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 0;
}

.service-detail-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(198, 154, 89, 0.24);
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 700;
}

.service-detail-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 20px;
  align-items: stretch;
}

.service-detail-faq-list {
  display: grid;
  gap: 18px;
}

.service-detail-faq-list p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 0;
}

.service-detail-comparison {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: stretch;
}

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.service-link-card {
  min-height: 100%;
  padding: 20px 18px;
}

.service-link-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.service-link-card p {
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 0;
}

@keyframes statsFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes statsCardLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .team-layout,
  .journey-layout,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .about-story-layout,
  .about-principles,
  .about-process-grid,
  .about-process__heading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hero-grid,
  .contact-hero-grid,
  .contact-route-layout,
  .results-hero-grid,
  .service-detail-hero,
  .service-detail-process,
  .service-detail-faq-grid,
  .service-detail-comparison,
  .service-spotlight,
  .service-method-grid,
  .service-process-grid,
  .results-proof-strip,
  .contact-expect-grid,
  .results-journey-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .team-intro {
    text-align: center;
    align-items: center;
  }

  .team-intro h2,
  .team-intro p {
    max-width: none;
    width: 100%;
    margin-inline: auto;
  }

  .hero-copy-card {
    text-align: center;
  }

  .hero-copy-card > p:not(.eyebrow),
  .hero-reassurance {
    margin-inline: auto;
    justify-content: center;
  }
}

@media (min-width: 981px) {
  .section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    column-gap: 24px;
    align-items: end;
  }

  .section-head h1,
  .section-head h2 {
    margin-bottom: 0;
  }

  .section-head p {
    max-width: none;
    margin-bottom: 0;
  }
}

@media (max-width: 820px) {
  .hero-feature-grid,
  .stats-grid,
  .journey-steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-row,
  .about-story-layout,
  .about-principles,
  .about-process-grid,
  .about-process__heading {
    grid-template-columns: 1fr;
  }

  .services-hero-grid,
  .contact-hero-grid,
  .contact-route-layout,
  .results-hero-grid,
  .service-detail-hero,
  .service-detail-process,
  .service-detail-faq-grid,
  .service-detail-comparison,
  .service-spotlight,
  .service-method-grid,
  .service-process-grid,
  .results-proof-strip,
  .contact-action-grid,
  .contact-expect-grid,
  .results-journey-layout {
    grid-template-columns: 1fr;
  }

  .service-detail-proof,
  .service-detail-process__steps,
  .service-link-grid {
    grid-template-columns: 1fr;
  }

  .stats-item {
    border-right: 0;
    border-bottom: 1px solid rgba(31, 29, 27, 0.09);
  }

  .stats-item:last-child {
    border-bottom: 0;
  }

  .hero-media {
    min-height: 340px;
  }

  .results-hero-copy,
  .services-hero-copy,
  .contact-hero-copy,
  .blog-hero-copy,
  .blog-featured__copy,
  .article-hero__copy,
  .blog-summary-band__copy,
  .service-detail-hero__copy,
  .service-detail-section__copy,
  .service-detail-faq__intro,
  .results-journey-copy,
  .section-head {
    text-align: center;
    align-items: center;
  }

  .results-hero-copy > p:last-of-type,
  .services-hero-copy p:last-of-type,
  .contact-hero-copy > p:last-of-type,
  .blog-hero-copy > p:last-of-type,
  .blog-featured__copy > p:last-of-type,
  .article-hero__copy > p:last-of-type,
  .blog-summary-band__copy p,
  .service-detail-hero__copy p,
  .service-detail-section__copy > p,
  .service-detail-faq__intro > p,
  .results-journey-copy p,
  .section-head p {
    margin-inline: auto;
    max-width: 44ch;
  }

  .results-hero-points,
  .contact-hero-points,
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-header .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .site-header .header-actions > .button {
    min-height: 52px;
    padding-inline: 10px;
    font-size: 0.82rem;
    white-space: normal;
    line-height: 1.18;
  }

  .page-hero__panel,
  .panel,
  .image-card,
  .journey-panel {
    padding: 22px;
  }

  .about-manifesto__intro h2,
  .about-story-layout h2,
  .about-process__heading h2 {
    max-width: none;
  }

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

  .cta-banner__copy .cta-actions .button {
    font-size: 0.82rem;
    padding-inline: 10px;
    min-height: 54px;
    white-space: normal;
    line-height: 1.2;
  }

  .services-hero-copy h1,
  .results-hero-copy h1,
  .services-section-head h2,
  .service-spotlight__content h2,
  .results-section-head h2,
  .results-journey-copy h2 {
    max-width: none;
  }

  .hero-copy-card h1,
  .team-intro h2,
  .blog-hero-copy h1,
  .blog-featured__copy h2,
  .service-detail-hero__copy h1,
  .contact-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.76rem, 9vw, 2.56rem);
  }

  .services-hero-media img,
  .contact-hero-media img,
  .contact-visit-media img,
  .results-hero-media img,
  .results-journey-media img {
    min-height: 320px;
  }

  .contact-visit-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .floating-whatsapp {
    right: 12px;
    left: auto;
    bottom: 12px;
    width: auto;
    max-width: min(230px, calc(100vw - 24px));
    padding: 10px 12px 10px 10px;
  }

  .floating-whatsapp__label {
    font-size: 0.76rem;
  }

  .floating-whatsapp__icon {
    width: 36px;
    height: 36px;
  }

.floating-whatsapp__icon img {
  width: 20px;
  height: 20px;
}

  .floating-whatsapp__text {
    max-width: 136px;
  }
}

.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.faq-hero__copy,
.faq-hero__card {
  padding: 30px;
}

.faq-hero__card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.faq-hero__card strong {
  font-size: 1rem;
  color: var(--white);
}

.faq-section-head {
  margin-bottom: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--copy);
  line-height: 1.75;
}

.faq-item[open] {
  box-shadow:
    0 24px 50px rgba(31, 23, 14, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.faq-item[open] summary {
  color: #1d1611;
}

.beard-visual,
.card--beard-case .card__visual::before {
  display: none;
}

.card--beard-case .card__visual > img {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .faq-hero,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.blog-hero-grid,
.blog-featured,
.article-hero,
.article-layout,
.blog-summary-band {
  display: grid;
  gap: 20px;
}

.blog-hero-grid,
.blog-featured,
.article-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: stretch;
}

.blog-hero-copy,
.blog-featured__copy,
.article-hero__copy,
.blog-summary-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-hero-copy h1,
.blog-featured__copy h2,
.article-hero__copy h1 {
  max-width: 15.8ch;
  font-size: clamp(1.68rem, 2.24vw, 2.28rem);
  line-height: 0.98;
  text-wrap: balance;
}

.results-section-head p,
.services-section-head p {
  max-width: 58ch;
}

.blog-cta-banner {
  grid-template-columns: minmax(0, 1.28fr) minmax(220px, 0.72fr);
}

.blog-cta-banner .cta-banner__copy h2 {
  max-width: 11.4ch;
  font-size: clamp(1.38rem, 1.72vw, 1.82rem);
  line-height: 1.04;
}

.blog-cta-banner .cta-banner__copy p {
  max-width: 34ch;
}

.blog-cta-banner .cta-banner__copy .cta-actions {
  max-width: 560px;
}

.blog-hero-copy > p:last-of-type,
.blog-featured__copy > p:last-of-type,
.article-hero__copy > p:last-of-type {
  max-width: 54ch;
  text-wrap: pretty;
}

.blog-hero-media img,
.blog-featured__media img,
.article-hero__media img,
.article-sidebar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-media img,
.article-hero__media img {
  min-height: 430px;
}

.blog-topic-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-topic-chip {
  padding: 20px 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(30, 27, 24, 0.08);
  background:
    radial-gradient(circle at top right, rgba(198, 154, 89, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.blog-topic-chip strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.blog-topic-chip span {
  color: var(--white-muted);
  line-height: 1.65;
}

.blog-grid {
  align-items: stretch;
}

.blog-card {
  min-height: 100%;
}

.blog-card .card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.blog-card__actions .button {
  width: auto;
}

.blog-card__visual {
  min-height: 320px;
}

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

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(198, 154, 89, 0.22);
  background: rgba(198, 154, 89, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-side-note strong,
.article-sidebar__block strong,
.article-callout strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.02rem;
}

.blog-side-note p,
.article-sidebar__block p,
.article-callout p {
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.4fr);
  align-items: start;
}

.article-prose,
.article-sidebar {
  display: grid;
  gap: 18px;
}

.article-prose h2,
.article-prose h3 {
  margin-bottom: 0.75rem;
}

.article-prose h2 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  max-width: 14ch;
}

.article-prose h3 {
  font-size: 1.5rem;
}

.article-prose p,
.article-prose li,
.article-sidebar__block p,
.article-sidebar__block li {
  color: var(--white-muted);
  line-height: 1.84;
  font-size: 1rem;
}

.article-callout {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(198, 154, 89, 0.18);
  background:
    radial-gradient(circle at top right, rgba(198, 154, 89, 0.1), transparent 38%),
    rgba(198, 154, 89, 0.06);
}

.article-sidebar__cta {
  width: 100%;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.share-chip {
  appearance: none;
  border: 1px solid rgba(198, 154, 89, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 16px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-light .share-chip {
  color: var(--white-text);
  background: rgba(30, 27, 24, 0.03);
}

.share-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 154, 89, 0.38);
  background: rgba(198, 154, 89, 0.08);
}

.blog-summary-band {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(30, 27, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.64), rgba(255,255,255,0.72)),
    radial-gradient(circle at top right, rgba(198, 154, 89, 0.12), transparent 40%);
  box-shadow: var(--shadow);
}

.blog-summary-band__copy h2 {
  margin-bottom: 0.55rem;
}

.blog-summary-band__copy p {
  max-width: 46ch;
  color: var(--white-muted);
  line-height: 1.72;
  margin-bottom: 0;
}

.blog-summary-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 1080px) {
  .blog-hero-grid,
  .blog-featured,
  .article-hero,
  .article-layout,
  .blog-summary-band {
    grid-template-columns: 1fr;
  }

  .blog-topic-strip {
    grid-template-columns: 1fr;
  }

  .blog-summary-band__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .blog-hero-copy h1,
  .blog-featured__copy h2,
  .article-hero__copy h1,
  .article-prose h2 {
    max-width: none;
  }

  .blog-hero-media img,
  .article-hero__media img {
    min-height: 320px;
  }

  .share-row {
    flex-direction: column;
  }

  .share-chip {
    width: 100%;
  }
}

/* Text polish pass: widen cramped desktop copy blocks and normalize heading rhythm
   without changing the overall visual direction. */
@media (min-width: 981px) {
  .hero-copy-card h1 {
    max-width: 13.2ch;
    font-size: clamp(2rem, 2.42vw, 2.72rem);
    line-height: 0.99;
  }

  .hero-copy-card > p:not(.eyebrow) {
    max-width: 46ch;
  }

  .page-hero__panel h1 {
    max-width: 16ch;
    font-size: clamp(2.1rem, 2.75vw, 3rem);
    line-height: 0.99;
    text-wrap: pretty;
  }

  .about-hero__copy h1 {
    max-width: 11.6ch;
    font-size: clamp(2.26rem, 2.9vw, 3.22rem);
  }

  .about-hero__brand-copy strong {
    max-width: 16ch;
  }

  .services-hero-grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  }

  .services-hero-copy h1 {
    max-width: 16.4ch;
    font-size: clamp(2.18rem, 2.58vw, 3rem);
    line-height: 0.99;
    text-wrap: pretty;
  }

  .services-hero-copy p:last-of-type {
    max-width: 49ch;
  }

  .services-section-head,
  .results-section-head {
    align-items: center;
    column-gap: clamp(24px, 3vw, 48px);
  }

  .services-section-head {
    grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.94fr);
  }

  .results-section-head {
    grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.92fr);
  }

  .services-section-head h2,
  .results-section-head h2 {
    max-width: 13.6ch;
    font-size: clamp(2.12rem, 2.72vw, 3.02rem);
    line-height: 1;
  }

  .services-section-head p,
  .results-section-head p {
    max-width: 46ch;
    justify-self: start;
  }

  .team-layout {
    grid-template-columns: minmax(480px, 0.98fr) minmax(0, 1.02fr);
  }

  .team-intro h2 {
    max-width: 13.4ch;
    font-size: clamp(2.34rem, 2.95vw, 3.12rem);
    line-height: 1;
  }

  .team-intro p {
    max-width: 42ch;
  }

  .about-manifesto__intro h2,
  .service-detail-section__copy h2,
  .service-detail-comparison__copy h2,
  .service-detail-faq__intro h2 {
    max-width: 14.8ch;
    font-size: clamp(2rem, 2.45vw, 2.84rem);
    line-height: 1;
    text-wrap: pretty;
  }

  .about-manifesto__intro p,
  .service-detail-section__copy > p,
  .service-detail-comparison__copy > p,
  .service-detail-faq__intro > p {
    max-width: 58ch;
  }

  .service-detail-hero {
    grid-template-columns: minmax(0, 1.48fr) minmax(260px, 0.62fr);
  }

  .service-detail-hero__copy h1 {
    max-width: 15.8ch;
    font-size: clamp(1.92rem, 2.16vw, 2.56rem);
    line-height: 1;
    text-wrap: pretty;
  }

  .service-detail-hero__copy p {
    max-width: 47ch;
  }

  .blog-hero-copy h1,
  .blog-featured__copy h2,
  .article-hero__copy h1 {
    max-width: 17ch;
    font-size: clamp(1.9rem, 2.34vw, 2.48rem);
    line-height: 1;
  }

  .blog-cta-banner .cta-banner__copy h2 {
    max-width: 14.4ch;
    font-size: clamp(1.72rem, 1.98vw, 2.18rem);
    line-height: 1.02;
  }

  .blog-cta-banner .cta-banner__copy p {
    max-width: 42ch;
  }
}

@media (max-width: 980px) and (min-width: 641px) {
  .page-hero__panel h1,
  .services-hero-copy h1,
  .service-detail-hero__copy h1,
  .blog-hero-copy h1,
  .blog-featured__copy h2,
  .article-hero__copy h1 {
    max-width: 16ch;
    line-height: 1;
    text-wrap: pretty;
  }

  .services-section-head,
  .results-section-head,
  .team-layout,
  .service-detail-hero {
    grid-template-columns: 1fr;
  }

  .services-section-head p,
  .results-section-head p,
  .team-intro p,
  .hero-copy-card > p:not(.eyebrow),
  .service-detail-hero__copy p {
    max-width: none;
  }
}

/* Final text readability sweep: widen headline measure, reduce awkward wraps,
   and let mobile layouts default to the alignment that reads best. */

@media (min-width: 981px) {
  .hero-copy-card h1 {
    max-width: 15.6ch;
    font-size: clamp(2.18rem, 2.72vw, 3.08rem);
    line-height: 0.98;
  }

  .hero-copy-card > p:not(.eyebrow) {
    max-width: 52ch;
  }

  .page-hero__panel h1 {
    max-width: 17.8ch;
    font-size: clamp(2rem, 2.48vw, 2.82rem);
    line-height: 0.99;
  }

  .about-hero__copy h1 {
    max-width: 15.6ch;
    font-size: clamp(2.22rem, 2.82vw, 3.18rem);
  }

  .services-hero-copy h1 {
    max-width: 17.8ch;
    font-size: clamp(2rem, 2.34vw, 2.82rem);
  }

  .services-hero-copy p:last-of-type,
  .results-hero-copy p:last-of-type,
  .contact-hero-copy p:last-of-type,
  .blog-hero-copy p:last-of-type,
  .service-detail-hero__copy p {
    max-width: 54ch;
  }

  .services-section-head,
  .results-section-head {
    grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.82fr);
    align-items: center;
    column-gap: clamp(20px, 2.4vw, 36px);
  }

  .services-section-head h2,
  .results-section-head h2 {
    max-width: 15.2ch;
    font-size: clamp(2rem, 2.48vw, 2.82rem);
    line-height: 1.02;
  }

  .services-section-head p,
  .results-section-head p {
    max-width: 42ch;
  }

  .team-layout {
    grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

  .team-intro {
    justify-content: flex-start;
  }

  .team-intro h2 {
    max-width: 15.2ch;
    font-size: clamp(2.48rem, 3.04vw, 3.28rem);
    line-height: 0.99;
  }

  .team-intro p {
    max-width: 46ch;
  }

  .about-manifesto__intro h2,
  .about-process__heading h2,
  .service-detail-section__copy h2,
  .service-detail-comparison__copy h2,
  .service-detail-faq__intro h2 {
    max-width: 18.4ch;
    font-size: clamp(1.92rem, 2.2vw, 2.62rem);
    line-height: 1.03;
  }

  .about-manifesto__intro p,
  .about-process__heading p,
  .service-detail-section__copy > p,
  .service-detail-comparison__copy > p,
  .service-detail-faq__intro > p {
    max-width: 62ch;
  }

  .service-detail-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  }

  .service-detail-hero__copy h1 {
    max-width: 18.6ch;
    font-size: clamp(1.78rem, 2.02vw, 2.34rem);
    line-height: 1.02;
  }

  .blog-hero-copy h1,
  .blog-featured__copy h2,
  .article-hero__copy h1 {
    max-width: 18.4ch;
    font-size: clamp(1.78rem, 2.1vw, 2.34rem);
    line-height: 1.02;
  }

  .blog-cta-banner .cta-banner__copy h2 {
    max-width: 16.8ch;
    font-size: clamp(1.66rem, 1.84vw, 2rem);
    line-height: 1.06;
  }
}

@media (max-width: 640px) {
  .hero-copy-card,
  .team-intro,
  .services-hero-copy,
  .results-hero-copy,
  .contact-hero-copy,
  .blog-hero-copy,
  .service-detail-hero__copy,
  .about-hero__copy,
  .about-intro-copy,
  .about-manifesto__intro,
  .about-process__heading,
  .service-detail-section__copy,
  .service-detail-comparison__copy,
  .service-detail-faq__intro,
  .cta-banner__copy {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .team-intro h2,
  .hero-copy-card h1,
  .page-hero__panel h1,
  .services-hero-copy h1,
  .results-hero-copy h1,
  .contact-hero-copy h1,
  .blog-hero-copy h1,
  .service-detail-hero__copy h1,
  .about-manifesto__intro h2,
  .about-process__heading h2,
  .service-detail-section__copy h2,
  .service-detail-comparison__copy h2,
  .service-detail-faq__intro h2,
  .services-section-head h2,
  .results-section-head h2,
  .contact-section-head h2,
  .blog-featured__copy h2,
  .article-hero__copy h1,
  .cta-banner__copy h2 {
    max-width: none;
    width: 100%;
    text-align: left;
    margin-inline: 0;
    font-size: clamp(1.76rem, 7vw, 2.34rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-copy-card > p:not(.eyebrow),
  .team-intro p,
  .services-hero-copy p,
  .results-hero-copy p,
  .contact-hero-copy p,
  .blog-hero-copy p,
  .service-detail-hero__copy p,
  .about-hero__copy p,
  .about-intro-copy p,
  .about-manifesto__intro p,
  .about-process__heading p,
  .service-detail-section__copy > p,
  .service-detail-comparison__copy > p,
  .service-detail-faq__intro > p,
  .services-section-head p,
  .results-section-head p,
  .contact-section-head p,
  .cta-banner__copy p {
    max-width: none;
    width: 100%;
    text-align: left;
    margin-inline: 0;
  }

  .team-intro .eyebrow,
  .team-intro .header-actions,
  .hero-reassurance,
  .services-section-head,
  .results-section-head,
  .contact-section-head {
    justify-content: flex-start;
    text-align: left;
    margin-inline: 0;
  }

  .team-intro .header-actions,
  .hero-actions,
  .cta-actions {
    width: 100%;
  }
}

/* Full replacement wordmark needs a landscape lockup, not the former square mark box. */
.brand__logo {
  width: min(176px, 22vw);
  height: auto;
  max-height: 58px;
}

/* Homepage results rail: three independent, compact cards at every viewport. */
.results-marquee-viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 4px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
}

.results-marquee-viewport .results-marquee {
  --results-gap: clamp(14px, 1.6vw, 22px);
  display: flex !important;
  grid-template-columns: none !important;
  align-items: stretch;
  gap: var(--results-gap);
  width: max-content;
  max-width: none;
  margin: 0;
  opacity: 0;
  will-change: transform;
}

.results-marquee-viewport .results-marquee > .card {
  flex: 0 0 clamp(270px, calc((min(100vw, 1240px) - 84px) / 3), 386px) !important;
  width: clamp(270px, calc((min(100vw, 1240px) - 84px) / 3), 386px) !important;
  min-width: 0 !important;
  max-width: 386px !important;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(31, 23, 14, 0.1);
  transform: none;
}

.results-marquee-viewport .card__visual--result {
  width: 100%;
  aspect-ratio: 16 / 10 !important;
  min-height: 0 !important;
  max-height: none !important;
  background: #eee7dd;
}

.results-marquee-viewport .card__visual--result img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.results-marquee-viewport .card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 17px 18px 18px;
}

.results-marquee-viewport .card__body h3 {
  margin: 0 0 7px;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
}

.results-marquee-viewport .card__body > p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.results-marquee-viewport .card__meta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.76rem;
}

.results-marquee-viewport .results-marquee.is-ready {
  opacity: 1;
  animation: premier-results-marquee 34s linear infinite;
}

.results-marquee-viewport .results-marquee:hover,
.results-marquee-viewport .results-marquee:focus-within,
.results-marquee-viewport .results-marquee.is-paused {
  animation-play-state: paused;
}

.results-marquee-viewport .results-marquee > .card:hover {
  transform: translateY(-4px) !important;
}

.results-marquee-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

.results-marquee-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(93, 66, 32, 0.16);
  border-radius: 999px;
  color: #5d4b36;
  background: rgba(255, 255, 255, 0.56);
  font: 700 0.74rem/1 var(--font-body, sans-serif);
  cursor: pointer;
}

.results-marquee-toggle:hover {
  color: #2a2118;
  border-color: rgba(141, 100, 42, 0.38);
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 720px) {
  .results-marquee-viewport {
    margin-inline: calc(-1 * var(--shell-pad, 20px));
    width: calc(100% + (2 * var(--shell-pad, 20px)));
    max-width: none;
    padding-inline: var(--shell-pad, 20px);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .results-marquee-viewport .results-marquee {
    --results-gap: 14px;
  }

  .results-marquee-viewport .results-marquee > .card {
    flex-basis: clamp(238px, 72vw, 286px) !important;
    width: clamp(238px, 72vw, 286px) !important;
    max-width: 286px !important;
    border-radius: 18px;
  }

  .results-marquee-viewport .card__body {
    padding: 14px 15px 15px;
  }

  .results-marquee-viewport .card__body > p {
    font-size: 0.84rem;
  }

  .results-marquee-viewport .results-marquee.is-ready {
    animation-duration: 27s;
  }
}

@media (max-width: 390px) {
  .results-marquee-viewport .results-marquee > .card {
    flex-basis: 76vw !important;
    width: 76vw !important;
    max-width: 272px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .results-marquee-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .results-marquee-viewport .results-marquee.is-ready {
    animation: none;
    transform: none;
  }

  .results-marquee-viewport .results-marquee > .card {
    scroll-snap-align: start;
  }

  .results-marquee-controls {
    display: none;
  }
}

/* ========================================================================== 
   PREMIER 2026 — premium clinical editorial system
   Calm authority from Maitland, decisive hierarchy from DHI, and compact
   results architecture inspired by leading specialist clinics.
   ========================================================================== */

:root {
  --bg: #090b0c;
  --bg-soft: #111416;
  --surface: #171b1d;
  --surface-soft: #202528;
  --text: #faf5ec;
  --muted: #c9bcaa;
  --gold: #d4a95f;
  --gold-bright: #e9c883;
  --gold-soft: rgba(212, 169, 95, 0.13);
  --line: rgba(239, 218, 180, 0.12);
  --white-panel: #f7f2e9;
  --white-text: #191714;
  --white-muted: #6c6258;
  --shadow: 0 28px 72px rgba(4, 5, 5, 0.28);
  --shadow-soft: 0 18px 46px rgba(23, 18, 12, 0.1);
  --radius: 24px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

html {
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 88% 4%, rgba(212, 169, 95, 0.12), transparent 27rem),
    linear-gradient(180deg, #080a0b 0%, #101315 100%);
}

body.site-light {
  background:
    radial-gradient(circle at 88% 4%, rgba(212, 169, 95, 0.13), transparent 30rem),
    linear-gradient(180deg, #f5efe6 0%, #fcfaf6 100%);
}

::selection {
  color: #111;
  background: var(--gold-bright);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

h1 em,
h2 em,
.headline-emphasis {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
}

.site-light h1 em,
.site-light h2 em,
.site-light .headline-emphasis,
.section--white h1 em,
.section--white h2 em,
.section--white .headline-emphasis {
  color: #8d642a;
}

p,
li {
  text-wrap: pretty;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
}

.site-header {
  background: rgba(8, 10, 10, 0.84);
  border-bottom-color: rgba(212, 169, 95, 0.16);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
}

.site-light .site-header {
  background: rgba(249, 245, 238, 0.9);
  border-bottom-color: rgba(102, 73, 34, 0.13);
}

.site-header__inner {
  min-height: 78px;
  gap: clamp(14px, 1.8vw, 28px);
}

.brand__logo {
  width: clamp(142px, 13vw, 178px);
  max-height: 56px;
  filter: drop-shadow(0 9px 20px rgba(0, 0, 0, 0.2));
}

.site-nav {
  gap: 8px clamp(10px, 1.1vw, 18px);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.site-nav a {
  padding-block: 10px;
}

.site-nav a::after,
.site-nav a.is-active::after,
.site-nav a:hover::after {
  left: 50%;
  right: auto;
  bottom: 3px;
  width: 0;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 220ms ease;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  width: 100%;
}

.button {
  min-height: 46px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button--gold {
  color: #17120b;
  background: linear-gradient(135deg, #e0ba76 0%, #c9964d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 12px 30px rgba(173, 120, 48, 0.18);
}

.button--gold:hover {
  background: linear-gradient(135deg, #ebcb8e 0%, #d6a65f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 16px 36px rgba(173, 120, 48, 0.26);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-light .button--ghost,
.section--white .button--ghost {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(39, 31, 23, 0.15);
}

:where(a, button, summary, input, textarea, select):focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.eyebrow {
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.site-light .eyebrow,
.section--white .eyebrow {
  color: #8d642a;
}

.hero,
.page-hero {
  padding-top: clamp(24px, 3.4vw, 48px);
}

.hero-copy-card h1,
.page-hero__panel h1,
.services-hero-copy h1,
.results-hero-copy h1,
.contact-hero-copy h1,
.blog-hero-copy h1,
.service-detail-hero__copy h1 {
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero-board,
.page-hero__panel,
.panel,
.card,
.image-card,
.journey-panel,
.footer-panel {
  border-color: rgba(239, 218, 180, 0.12);
  box-shadow: var(--shadow);
}

.site-light .hero-board,
.site-light .page-hero__panel,
.site-light .panel,
.site-light .card,
.site-light .image-card,
.site-light .journey-panel,
.site-light .footer-panel,
.section--white .panel,
.section--white .card,
.section--white .image-card {
  border-color: rgba(94, 67, 34, 0.11);
  box-shadow: var(--shadow-soft);
}

.section {
  padding-top: clamp(56px, 6vw, 88px);
}

.section--white {
  margin-top: clamp(56px, 6vw, 88px);
  padding-block: clamp(64px, 7vw, 104px);
  background:
    radial-gradient(circle at 10% 8%, rgba(212, 169, 95, 0.12), transparent 26rem),
    linear-gradient(180deg, #f4eee5 0%, #fcfaf6 100%);
}

.section-head {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.section-head h2 {
  letter-spacing: -0.042em;
}

.card,
.panel,
.image-card {
  isolation: isolate;
}

.card--link,
.image-card,
.panel {
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), border-color 260ms ease, box-shadow 260ms ease;
}

.card--link:hover,
.image-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 169, 95, 0.34);
  box-shadow: 0 28px 60px rgba(14, 10, 6, 0.18);
}

.card__visual img,
.image-card img,
.image-card video {
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.card--link:hover .card__visual img,
.image-card:hover img,
.image-card:hover video {
  transform: scale(1.025);
}

.card__body h3 {
  letter-spacing: -0.025em;
}

.footer-panel {
  background:
    radial-gradient(circle at 0 0, rgba(212, 169, 95, 0.12), transparent 24rem),
    linear-gradient(145deg, #101315 0%, #090b0c 100%);
}

.footer-grid h3 {
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid a {
  text-underline-offset: 4px;
}

.footer-grid a:hover {
  color: var(--gold-bright);
}

.floating-whatsapp {
  border-color: rgba(212, 169, 95, 0.24);
  background: rgba(8, 11, 10, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1020px) and (min-width: 821px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) minmax(270px, 340px);
  }

  .brand__logo {
    width: 138px;
  }

  .site-header .button {
    padding-inline: 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    min-height: 0;
    padding-block: 10px 12px;
  }

  .brand__logo {
    width: 148px;
    max-height: 46px;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    gap: 2px 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 28px 2px 0;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 92%, transparent 100%);
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding-block: 7px;
  }

  .site-header .header-actions {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    gap: 8px;
  }

  .site-header .button {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.76rem;
  }
}

@media (max-width: 480px) {
  .brand__logo {
    width: 116px;
    max-height: 40px;
  }

  .site-header .button {
    min-height: 40px;
    padding-inline: 8px;
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .site-header .button__icon {
    display: none;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .results-marquee-viewport {
    margin-inline: -14px;
    width: calc(100% + 28px);
    padding-inline: 14px;
  }

  .section {
    padding-top: 52px;
  }

  .section--white {
    margin-top: 52px;
    padding-block: 58px;
  }

  .hero-copy-card h1,
  .page-hero__panel h1,
  .services-hero-copy h1,
  .results-hero-copy h1,
  .contact-hero-copy h1,
  .blog-hero-copy h1,
  .service-detail-hero__copy h1 {
    font-size: clamp(2rem, 10.4vw, 3rem);
    line-height: 0.98;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}

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

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

/* 2026-07-31 brand crest and verified social-link refinement. */
.brand--with-logo { display:inline-flex; align-items:center; gap:clamp(8px,1vw,13px); overflow:visible; }
.brand__crest { width:clamp(38px,3.5vw,48px); height:clamp(44px,4vw,56px); flex:0 0 auto; object-fit:contain; filter:drop-shadow(0 8px 18px rgba(198,154,89,.18)); transition:transform 220ms ease,filter 220ms ease; }
.brand--with-logo:hover .brand__crest,.brand--with-logo:focus-visible .brand__crest { transform:translateY(-1px) scale(1.025); filter:drop-shadow(0 10px 24px rgba(218,174,102,.28)); }
.footer-socials { margin-top:20px; gap:10px; }
.footer-socials a { width:42px; height:42px; display:inline-grid; place-items:center; border:1px solid rgba(207,164,96,.28); border-radius:50%; color:#d7aa67; background:rgba(255,255,255,.025); box-shadow:0 10px 24px rgba(0,0,0,.16); }
.footer-socials a:hover,.footer-socials a:focus-visible { color:#f0cb90; border-color:rgba(231,188,120,.62); background:rgba(207,164,96,.1); }
.footer-socials svg { width:19px; height:19px; }
@media (max-width:720px) { .brand--with-logo{gap:8px}.brand__crest{width:34px;height:40px}.brand__logo{width:clamp(116px,34vw,148px);max-height:48px} }
@media (prefers-reduced-motion:reduce) { .brand__crest{transition:none} }
/* 2026-07-31 narrow-screen overflow correction. */
@media (max-width: 480px) {
  html, body { max-width: 100%; overflow-x: clip; }
  .site-header__inner { grid-template-columns: minmax(0, 1fr); gap: 9px; }
  .brand--with-logo { grid-column: 1; grid-row: 1; justify-self: center; max-width: 100%; }
  .brand__crest { width: 32px; height: 38px; }
  .brand__logo { width: min(132px, 38vw); max-height: 44px; }
  .site-header .header-actions { grid-column: 1; grid-row: 2; width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header .header-actions > .button { width: 100%; min-width: 0; min-height: 42px; padding-inline: 8px; font-size: .7rem; }
  .site-header .header-actions .button__icon { display: inline-flex; }
  .site-nav { grid-column: 1; grid-row: 3; max-width: 100%; }
  .page-hero__panel, .contact-hero-grid, .contact-hero-copy, .contact-hero-media { min-width: 0; max-width: 100%; }
  .contact-hero-copy { overflow: hidden; }
  .contact-hero-points { width: 100%; align-items: stretch; }
  .contact-hero-points span { max-width: 100%; white-space: normal; text-align: center; overflow-wrap: anywhere; }
  .contact-hero-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .contact-hero-actions .button { width: 100%; min-width: 0; }
  .contact-hero-media { overflow: hidden; }
  .contact-hero-media img { width: 100%; min-width: 0; object-position: 58% center; }
}

/* Header lock-up: keep the crest and full wordmark together, without a visible image box. */
.brand--with-logo { gap: clamp(8px, 1vw, 13px); }
.brand--with-logo .brand__logo {
  display: none !important;
}

.brand--with-logo::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: clamp(132px, 13vw, 178px);
  height: 48px;
  aspect-ratio: 2.4 / 1;
  background: url("../../static/premier-hair-transplant-site-assets/logo-header-embedded-v2.png") center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(198, 154, 89, 0.23));
}

video[autoplay][muted][loop] { pointer-events: none; }
video[autoplay][muted][loop]::-webkit-media-controls { display: none !important; }

@keyframes premier-headline-enter-right {
  from { opacity: 0; transform: translate3d(24px, 0, 0); filter: blur(2px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

@keyframes premier-headline-enter-left {
  from { opacity: 0; transform: translate3d(-24px, 0, 0); filter: blur(2px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero[data-reveal].is-visible .hero-headline__line:first-child {
    animation: premier-headline-enter-right 680ms cubic-bezier(.22, .76, .18, 1) 100ms both;
  }

  .hero[data-reveal].is-visible .hero-headline__line.headline-emphasis {
    animation: premier-headline-enter-left 720ms cubic-bezier(.22, .76, .18, 1) 220ms both;
  }
}

/* 2026-08-04 conversion and icon-system refinement. */
.cta-heading .cta-word {
  display: inline-block;
  will-change: transform, opacity;
}

.stats-word {
  display: inline-block;
  will-change: transform, opacity;
}

.button__icon svg,
.hero-feature__icon svg,
.stats-item__icon svg,
.journey-step__icon svg,
.footer-contact__icon svg,
.contact-action-card__icon svg,
.floating-whatsapp__icon svg,
.icon-badge svg {
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature__icon,
.stats-item__icon,
.journey-step__icon,
.contact-action-card__icon,
.footer-contact__icon,
.icon-badge {
  color: #d7aa67;
}

.hero-feature__icon svg,
.stats-item__icon svg,
.journey-step__icon svg,
.contact-action-card__icon svg,
.footer-contact__icon svg,
.icon-badge svg {
  filter: none;
}

.stats-item strong {
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.12;
}

.stats-item > span:last-child {
  display: block;
  max-width: 25ch;
  margin-inline: auto;
}

@keyframes premier-cta-word-pop {
  from { opacity: 0; transform: translate3d(0, 14px, 0) scale(.965); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes premier-stat-word-pop {
  from { opacity: 0; transform: translate3d(0, 9px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal].is-visible .cta-heading .cta-word {
    animation: premier-cta-word-pop 520ms cubic-bezier(.2, .8, .2, 1) both;
  }

  [data-reveal].is-visible .cta-heading .cta-word:nth-child(1) { animation-delay: 80ms; }
  [data-reveal].is-visible .cta-heading .cta-word:nth-child(2) { animation-delay: 150ms; }
  [data-reveal].is-visible .cta-heading .cta-word:nth-child(3) { animation-delay: 220ms; }
  [data-reveal].is-visible .cta-heading .title-line:nth-child(2) .cta-word:nth-child(1) { animation-delay: 290ms; }
  [data-reveal].is-visible .cta-heading .title-line:nth-child(2) .cta-word:nth-child(2) { animation-delay: 360ms; }

  .stats-item:nth-child(n) {
    animation: none;
  }

  [data-reveal].is-visible .stats-item {
    transition-timing-function: cubic-bezier(.2, .8, .2, 1);
  }

  [data-reveal].is-visible .stats-item .stats-word {
    animation: premier-stat-word-pop 430ms cubic-bezier(.2, .8, .2, 1) both;
  }

  [data-reveal].is-visible .stats-item .stats-word:nth-child(1) { animation-delay: 120ms; }
  [data-reveal].is-visible .stats-item .stats-word:nth-child(2) { animation-delay: 175ms; }
  [data-reveal].is-visible .stats-item .stats-word:nth-child(3) { animation-delay: 230ms; }
  [data-reveal].is-visible .stats-item .stats-word:nth-child(4) { animation-delay: 285ms; }

  [data-reveal].is-visible .stats-item:nth-child(2) .stats-word { animation-delay: 190ms; }
  [data-reveal].is-visible .stats-item:nth-child(3) .stats-word { animation-delay: 260ms; }
  [data-reveal].is-visible .stats-item:nth-child(4) .stats-word { animation-delay: 330ms; }
  [data-reveal].is-visible .stats-item:nth-child(5) .stats-word { animation-delay: 400ms; }
  [data-reveal].is-visible .stats-item:nth-child(5) .stats-word:nth-child(2) { animation-delay: 455ms; }
  [data-reveal].is-visible .stats-item:nth-child(5) .stats-word:nth-child(3) { animation-delay: 510ms; }
  [data-reveal].is-visible .stats-item:nth-child(5) .stats-word:nth-child(4) { animation-delay: 565ms; }
}
