/* ==========================================================================
   The Skin Edit — Editorial Aesthetic
   ========================================================================== */

:root {
  --bg: #f6f1eb;
  --bg-deep: #ebe3d9;
  --surface: #fffcf7;
  --surface-glass: rgba(255, 252, 247, 0.72);
  --text: #3d3632;
  --heading: #1a1614;
  --muted: #8a817a;
  --accent: #a67b6e;
  --accent-deep: #5c3d34;
  --gold: #c9a96e;
  --gold-light: #e8d9c0;
  --line: rgba(26, 22, 20, 0.08);
  --line-strong: rgba(26, 22, 20, 0.14);
  --shadow-sm: 0 4px 24px rgba(26, 22, 20, 0.06);
  --shadow-md: 0 12px 48px rgba(26, 22, 20, 0.1);
  --shadow-lg: 0 24px 80px rgba(26, 22, 20, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 92px;
  --container: min(1200px, calc(100% - 56px));
  --brand-mark-h: 68px;
  --brand-wordmark-h: 48px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main { overflow-x: clip; }

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

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font: inherit; cursor: pointer; border: none; background: none; -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.container { width: var(--container); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 12px 18px; background: var(--heading); color: #fff;
}
.skip-link:focus { left: 0; }

/* Typography */
.section-num {
  display: inline-block;
  margin-right: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}

.section-label {
  display: flex;
  align-items: center;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label--light { color: var(--gold-light); }

.section-heading {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--heading);
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.8;
  font-weight: 300;
}

.section-text--center {
  max-width: 540px;
  margin-inline: auto;
  text-align: center;
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section { padding: clamp(88px, 12vw, 140px) 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
}

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

.btn-primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 8px 28px rgba(92, 61, 52, 0.28);
}

.btn-primary:hover {
  background: var(--heading);
  box-shadow: 0 12px 36px rgba(26, 22, 20, 0.3);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}

.contact .btn-ghost,
.about ~ * .btn-ghost {
  border-color: var(--line-strong);
  color: var(--heading);
  background: var(--surface);
}

.contact .btn-ghost:hover,
.about ~ * .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.btn-light {
  background: #fff;
  color: var(--heading);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover { background: var(--gold-light); }

.btn-full { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.site-header:not(.scrolled) {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header:not(.scrolled) .navigation > a:not(.nav-cta) { color: rgba(255, 255, 255, 0.75); }
.site-header:not(.scrolled) .navigation > a:not(.nav-cta):hover,
.site-header:not(.scrolled) .navigation > a.active { color: #fff; }
.site-header:not(.scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.site-header:not(.scrolled) .nav-cta:hover { background: #fff; color: var(--heading); }
.site-header:not(.scrolled) .menu-button {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}
.site-header:not(.scrolled) .menu-button span { background: #fff; }
.site-header:not(.scrolled) .brand-wordmark {
  filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(0, 0, 0, 0.35));
  opacity: 0.98;
}

.site-header:not(.scrolled) .brand-mark {
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.4));
}

.site-header.scrolled {
  background: rgba(246, 241, 235, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  height: var(--brand-mark-h);
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-wordmark {
  height: var(--brand-wordmark-h);
  width: auto;
  max-width: min(220px, 48vw);
  object-fit: contain;
  object-position: left center;
  transition: filter 0.4s;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.navigation > a:not(.nav-cta) {
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}

.navigation > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.navigation > a:not(.nav-cta):hover::after,
.navigation > a.active::after { transform: scaleX(1); }

.navigation > a:not(.nav-cta):hover,
.navigation > a.active { color: var(--heading); }

.nav-cta {
  padding: 11px 22px;
  border: 1px solid var(--accent-deep);
  border-radius: 999px;
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover { background: var(--accent-deep); color: #fff; }

.menu-button {
  display: none;
  width: 46px; height: 46px;
  padding: 13px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  flex-shrink: 0;
}

.menu-button span {
  display: block; height: 1.5px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}

.menu-button span + span { margin-top: 6px; }

.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + 16px);
  padding-bottom: 48px;
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
  animation: heroZoom 20s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(26, 22, 20, 0.55) 0%, rgba(26, 22, 20, 0.2) 45%, rgba(26, 22, 20, 0.65) 100%),
    linear-gradient(to right, rgba(26, 22, 20, 0.4) 0%, transparent 55%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  column-gap: clamp(32px, 5vw, 64px);
  row-gap: 32px;
  padding: 24px 0 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #9ab892;
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(154, 184, 146, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(154, 184, 146, 0); }
  100% { box-shadow: 0 0 0 0 rgba(154, 184, 146, 0); }
}

.hero-title {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7.5vw, 5.25rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-title-accent {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 4px;
}

.hero-lead {
  margin: 0 0 36px;
  max-width: 460px;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero floating card */
.hero-card {
  box-sizing: border-box;
  width: 320px;
  max-width: 100%;
  justify-self: end;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: var(--surface-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-card-logo {
  height: 92px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-card-wordmark {
  display: block;
  width: auto;
  height: 46px;
  max-width: 200px;
  margin: 0 auto;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-card-line {
  width: 40px;
  height: 1px;
  margin: 24px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-card-stats strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--heading);
  line-height: 1;
}

.hero-card-stats span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.hero-scroll:hover { color: rgba(255, 255, 255, 0.9); }

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* Marquee */
.marquee {
  overflow: hidden;
  padding: 22px 0;
  background: var(--accent-deep);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.marquee-dot {
  font-style: normal !important;
  font-size: 8px !important;
  color: var(--gold) !important;
  opacity: 0.7;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Info ribbon */
.info-ribbon {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.info-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  padding: 28px 0;
}

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

.info-item svg { flex-shrink: 0; color: var(--gold); stroke: var(--gold); }

.info-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.info-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
}

.info-link { transition: color 0.2s; }
.info-link:hover { color: var(--accent); }

/* About */
.about { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 48%;
  border: 6px solid var(--surface);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -16px;
  padding: 10px 18px;
  background: var(--accent-deep);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px 0 0;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.pillar:first-child { padding-top: 0; }

.pillar-icon {
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 10px;
  color: var(--gold);
}

.pillar strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 2px;
}

.pillar span { font-size: 14px; color: var(--muted); font-weight: 300; }

/* Treatments */
.treatments {
  background: var(--bg);
  position: relative;
}

.treatments::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.5;
}

.treatment-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.treatment-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: var(--bg);
}

.treatment-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, color 0.3s;
}

.treatment-tab:last-child { border-bottom: none; }

.tab-icon {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.tab-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.treatment-tab:hover { background: rgba(201, 169, 110, 0.08); }
.treatment-tab:hover .tab-label { color: var(--heading); }

.treatment-tab.active {
  background: var(--surface);
  box-shadow: inset 3px 0 0 var(--accent-deep);
}

.treatment-tab.active .tab-icon { opacity: 1; }
.treatment-tab.active .tab-label { color: var(--heading); }

.treatment-panels { padding: 48px; }

.treatment-panel { animation: panelIn 0.45s var(--ease); }
.treatment-panel[hidden] { display: none; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-intro {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.4;
}

.treatment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-chips li {
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
  background: var(--bg);
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.treatment-chips li:hover {
  border-color: rgba(166, 123, 110, 0.4);
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.treatment-note {
  margin: 40px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.treatment-note a {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Visit path */
.visit-path { background: var(--surface); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
}

.timeline-step {
  position: relative;
  padding: 56px 24px 0;
  text-align: center;
}

.timeline-dot {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px var(--surface);
}

.timeline-num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}

.timeline-step h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--heading);
}

.timeline-step p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* Gallery editorial */
.gallery-editorial {
  padding: clamp(72px, 10vw, 120px) 0 0;
  background: var(--bg-deep);
}

.gallery-header {
  margin-bottom: 48px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
  padding: 0 clamp(16px, 4vw, 48px);
}

.gallery-cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-cell:hover img { transform: scale(1.05); }

.gallery-cell figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(26, 22, 20, 0.7), transparent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-cell--wide { grid-column: span 7; grid-row: span 2; }
.gallery-cell:nth-child(2) { grid-column: span 5; }
.gallery-cell:nth-child(3) { grid-column: span 5; }
.gallery-cell--tall { grid-column: span 7; }

/* Founder */
.founder { background: var(--bg); }

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.founder-frame {
  position: relative;
  max-width: 400px;
  margin-inline: auto;
}

.founder-frame::before {
  content: "";
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

.founder-frame img {
  width: 100%;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}

.founder-credential {
  margin: 0 0 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.founder-quote {
  position: relative;
  margin: 0 0 40px;
  padding: 0 0 0 28px;
  border: none;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--heading);
}

.quote-mark {
  position: absolute;
  left: -8px;
  top: -12px;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
}

/* Career / experience */
.career {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.career-intro .section-heading { max-width: 16ch; }

.career-year {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}

.career-year strong {
  font-family: var(--serif);
  font-size: clamp(5.5rem, 12vw, 8rem);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--heading);
}

.career-year span {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.career-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.career-points li {
  display: flex;
  gap: 18px;
  padding: 32px 28px 8px 0;
  border-right: 1px solid var(--line);
}

.career-points li:last-child {
  border-right: none;
  padding-right: 0;
}

.career-point-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1.2;
}

.career-points strong {
  display: block;
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
}

.career-points p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(72px, 10vw, 100px) 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 169, 110, 0.25), transparent),
    linear-gradient(135deg, var(--accent-deep) 0%, #3d2a24 100%);
  overflow: hidden;
}

.cta-grain {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  text-align: center;
}

.cta-heading {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
  border-color: rgba(166, 123, 110, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--heading);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.faq-answer a {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact — unified connect hub */
.contact { background: var(--surface); }

.contact-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.connect-hub {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.connect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.connect-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 123, 110, 0.35);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.connect-card--whatsapp {
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.08), var(--bg));
  border-color: rgba(37, 211, 102, 0.25);
}

.connect-card--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.45);
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.12), var(--surface));
}

.connect-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent-deep);
  border: 1px solid var(--line);
}

.connect-card--whatsapp .connect-icon {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.08);
}

.connect-card--instagram {
  background: var(--bg);
  border-color: var(--line);
}

.connect-card--instagram:hover {
  border-color: rgba(225, 48, 108, 0.35);
  background: var(--surface);
}

.connect-icon.connect-icon--brand {
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.connect-card--instagram .connect-icon--brand,
.connect-card--maps .connect-icon--brand {
  background: transparent;
  border: none;
  box-shadow: none;
}

.connect-icon--brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.connect-card--maps .connect-icon--brand {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.connect-card--maps .connect-icon--brand img {
  width: auto;
  height: 32px;
  max-width: min(108px, 100%);
}

.connect-card--maps {
  background: var(--bg);
  border-color: var(--line);
}

.connect-card--maps:hover {
  border-color: rgba(66, 133, 244, 0.35);
  background: var(--surface);
}

.connect-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
  white-space: nowrap;
  line-height: 1.3;
}

.connect-hint {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 36px 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
}

.visit-block h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--heading);
}

.visit-block p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.visit-muted {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--accent);
}

.contact-disclaimer {
  margin: 28px 0 0;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
}

.treatment-note a,
.faq-answer a {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.treatment-note a:hover,
.faq-answer a:hover { color: var(--accent); }

/* Footer */
.site-footer {
  padding: 56px 0 40px;
  background: var(--heading);
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-wordmark {
  height: 36px;
  width: auto;
  max-width: min(240px, 55vw);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p {
  width: 100%;
  margin: 4px 0 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-connect {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-connect a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-connect a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.footer-link--instagram:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
}

.footer-link--maps:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
}

.footer-brand-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.footer-link--maps .footer-brand-icon {
  width: auto;
  height: 18px;
  max-width: 72px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #fff; }

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

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

.reveal.in { opacity: 1; transform: translateY(0); }

body.menu-open { overflow: hidden; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 12px;
  }

  .hero-card {
    width: min(320px, 100%);
    justify-self: start;
  }

  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline::before { display: none; }
  .timeline-step { padding-top: 0; text-align: left; }
  .timeline-dot { left: 0; transform: none; }
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-cell--wide,
  .gallery-cell--tall,
  .gallery-cell:nth-child(2),
  .gallery-cell:nth-child(3) { grid-column: span 1; grid-row: span 1; }
  .gallery-cell img { height: 260px; }
}

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

  .career-year { align-items: flex-start; text-align: left; }
  .career-points { grid-template-columns: 1fr; }
  .career-points li {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
  .career-points li:last-child { border-bottom: none; }

  .connect-hub { grid-template-columns: repeat(2, 1fr); }
  .visit-details { grid-template-columns: 1fr; padding: 28px 24px; }

  .about-img-accent { right: -16px; bottom: -16px; width: 42%; }

  .treatment-shell { grid-template-columns: 1fr; }

  .treatment-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .treatment-tab {
    flex: 1 1 auto;
    justify-content: center;
    padding: 16px 20px;
    border-bottom: none;
    border-right: 1px solid var(--line);
    box-shadow: none !important;
  }

  .treatment-tab.active { box-shadow: inset 0 -3px 0 var(--accent-deep) !important; }
  .tab-icon { display: none; }
  .treatment-panels { padding: 32px 24px; }
}

@media (max-width: 768px) {
  :root {
    --container: min(1200px, calc(100% - 32px));
    --header-h: 80px;
    --brand-mark-h: 56px;
    --brand-wordmark-h: 40px;
  }

  .menu-button { display: block; }

  .navigation {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100dvh - var(--header-h) - 24px);
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    overflow-y: auto;
    transition: opacity 0.3s, transform 0.3s;
  }

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

  .navigation > a { padding: 12px 8px; }
  .nav-cta { margin-top: 8px; text-align: center; }

  .site-header:not(.scrolled) .navigation > a:not(.nav-cta) { color: var(--muted); }
  .site-header:not(.scrolled) .navigation > a.active { color: var(--heading); }

  .hero-scroll { display: none; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 3.25rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-card {
    width: 100%;
    max-width: 320px;
    justify-self: start;
  }
  .hero-card-wordmark {
    width: auto;
    height: 48px;
    max-width: min(220px, 88%);
  }

  .info-ribbon-inner { gap: 20px; }

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

  .gallery-mosaic { grid-template-columns: 1fr; padding: 0 16px; }

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

  .footer-connect { width: 100%; }
  .footer-connect a { flex: 1 1 calc(50% - 5px); justify-content: center; }
}

@media (max-width: 480px) {
  :root {
    --container: min(1200px, calc(100% - 24px));
    --header-h: 76px;
    --brand-mark-h: 50px;
    --brand-wordmark-h: 34px;
  }

  .brand { gap: 10px; }
  .hero-card {
    width: 100%;
    max-width: 100%;
    padding: 28px 22px;
  }
  .hero-card-logo { height: 84px; }
  .hero-card-wordmark {
    width: auto;
    height: 46px;
    max-width: min(230px, 90%);
  }

  .about-img-accent { display: none; }
  .treatment-tab { padding: 12px 14px; font-size: 11px; }
  .treatment-chips li { padding: 10px 16px; font-size: 12px; }
  .connect-hub { grid-template-columns: 1fr; }
  .connect-card { flex-direction: row; text-align: left; padding: 20px; gap: 16px; align-items: center; }
  .connect-card--maps .connect-icon--brand {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .connect-card--maps .connect-icon--brand img {
    width: 48px;
    height: 36px;
    max-width: 48px;
    object-fit: contain;
  }
  .connect-label { flex-shrink: 0; }
  .connect-hint { margin-left: auto; text-align: right; flex-shrink: 1; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .hero-media img { animation: none; transform: none; }
  .marquee-inner { animation: none; }
}
