@font-face {
  font-family: 'HAYRE Allura';
  src: url('assets/fonts/Allura-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root {
  --bg: #0B0B0B;
  --bg-2: #121212;
  --bg-3: #181818;
  --text: #EAEAEA;
  --text-dim: #A1A1A1;
  --text-mute: #6E6E6E;
  --gold: #C8A96A;
  --gold-soft: #C8A96A33;
  --gold-line: #C8A96A55;
  --hairline: #ffffff10;
  --hairline-strong: #ffffff1a;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --weight-display: 400;
  --weight-display-section: 400;
  --weight-accent: 600;
  --tracking-display: 0.005em;
  --tracking-section: -0.005em;
}

/* Custom scrollbar — dark theme */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--hairline-strong); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-line); }

* { box-sizing: border-box; margin: 0; padding: 0; scrollbar-width: thin; scrollbar-color: #ffffff1a transparent; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typography */
.serif { font-family: var(--font-display); font-weight: var(--weight-display-section); letter-spacing: var(--tracking-section); }
.serif-it { font-family: var(--font-display); font-weight: var(--weight-display-section); font-style: italic; }
.it {
  font-family: var(--font-display);
  font-weight: var(--weight-accent);
  color: var(--gold);
}
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Top layout — full-width with sticky transparent navbar */
.shell-top { min-height: 100vh; }

.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.32em;
  line-height: 1;
}
.brand .sub {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--text-dim);
  margin-top: 6px;
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: color .2s ease;
}
.socials a:hover { color: var(--gold); }

/* Sticky transparent navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, padding .35s ease, backdrop-filter .35s ease;
}
.navbar.scrolled {
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
  padding: 16px 40px;
}
.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  height: 40px;
}
.navbar-logo {
  height: 28px;
  width: auto;
  display: block;
  transition: height .35s ease;
}
/* The navbar's own logo is just a layout placeholder — the real one is .flying-logo */
.navbar-logo-placeholder {
  visibility: hidden;
}
.navbar.scrolled .navbar-logo {
  height: 24px;
}

/* Flying logo: fixed in viewport, position+size driven by scroll in JS */
.flying-logo {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: auto;
  z-index: 60;            /* above navbar (which is ~50) */
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform, height;
  /* No CSS transition — JS drives every frame so it tracks scroll exactly */
}
.navbar-links {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.navbar-link {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 0;
  transition: color .25s ease;
}
.navbar-link::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .35s ease;
}
.navbar-link:hover { color: var(--text); }
.navbar-link:hover::after { width: 100%; }
.navbar-link.active { color: var(--text); }
.navbar-link.active::after { width: 100%; }
.navbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-action {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.48);
  color: rgba(248, 244, 236, 0.96);
  background: rgba(11,11,11,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.navbar-action svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  display: block;
  overflow: visible;
}
.navbar-action-whatsapp svg {
  width: 18px;
  height: 18px;
  transform: translateY(0.2px);
}
.navbar-action:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(17,17,17,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.navbar-action-whatsapp:hover {
  border-color: rgba(111, 214, 137, 0.62);
  color: #6fd689;
}
.navbar-action:active {
  transform: scale(0.96);
}
.navbar-book {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid var(--gold-line);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.navbar-book svg { width: 16px; transition: transform .25s cubic-bezier(0.23, 1, 0.32, 1); }
.navbar-book:hover {
  background: var(--gold);
  color: #0B0B0B;
  border-color: var(--gold);
}
.navbar-book:hover svg { transform: translateX(4px); }
.navbar-book:active { transform: scale(0.97); }
.navbar-burger {
  display: none;
  width: 32px; height: 22px;
  position: relative;
  color: var(--text);
}
.navbar-burger span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform .35s ease, top .35s ease, opacity .25s ease;
}
.navbar-burger span:first-child { top: 6px; }
.navbar-burger span:last-child { top: 14px; }
.navbar-burger.open span:first-child { top: 10px; transform: rotate(45deg); }
.navbar-burger.open span:last-child { top: 10px; transform: rotate(-45deg); }

.navbar-mobile {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(11,11,11,0.96);
  backdrop-filter: blur(20px);
  padding: 100px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  z-index: 40;
  border-bottom: 1px solid var(--hairline);
}
.navbar-mobile.open { transform: translateY(0); }

/* When the mobile menu is open, hide the flying logo and bottom CTA bar so
   the drawer reads as a clean, isolated surface */
.flying-logo { transition: opacity .2s ease; }
.mobile-cta { transition: transform .35s ease; }
.navbar.menu-open ~ .flying-logo { opacity: 0; pointer-events: none; }
.navbar.menu-open ~ .mobile-cta { transform: translateY(120%); }
.navbar-mobile-link {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  text-align: left;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .2s ease;
}
.navbar-mobile-link.active, .navbar-mobile-link:hover { color: var(--text); }
.navbar-mobile-link .num { color: var(--gold); font-size: 10px; }
.navbar-mobile-book {
  margin-top: 28px;
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: var(--gold);
  color: #0B0B0B;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
}
.navbar-mobile-book svg { width: 18px; }

@media (max-width: 1000px) {
  .navbar { padding: 22px 24px; }
  .navbar-links { display: none; }
  .navbar-right { margin-left: auto; }
  .navbar-actions { display: none; }
  /* Pin the burger to the left edge of the navbar — opposite the book button */
  .navbar-burger {
    display: block;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 55;
  }
  .navbar-burger.open span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
  .navbar-burger.open span:last-child  { top: 50%; transform: translateY(-50%) rotate(-45deg); }
}
@media (max-width: 600px) {
  .navbar-book { display: none; }
}

/* Hero — cinematic, art-directed carousel */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.hero-media,
.hero-slide,
.hero-slide img,
.hero-scrim,
.hero-grain {
  position: absolute;
  inset: 0;
}
.hero-media { z-index: 0; overflow: hidden; }
.hero-slide {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.15s cubic-bezier(.22, 1, .36, 1), visibility 1.15s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(.9) contrast(1.03);
  will-change: transform;
}
.hero-slide.is-active img {
  animation: hero-image-drift 13s cubic-bezier(.22, 1, .36, 1) forwards;
}
@keyframes hero-image-drift {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}
.hero-scrim {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,7,6,.76) 0%, rgba(8,7,6,.1) 23%, rgba(8,7,6,.03) 56%, rgba(8,7,6,.9) 100%),
    linear-gradient(90deg, rgba(8,7,6,.88) 0%, rgba(8,7,6,.68) 24%, rgba(8,7,6,.28) 52%, rgba(8,7,6,.06) 78%, rgba(8,7,6,.18) 100%),
    radial-gradient(ellipse 45% 58% at 26% 52%, rgba(8,7,6,.22) 0%, transparent 78%);
}
.hero-grain {
  z-index: 3;
  pointer-events: none;
  opacity: .13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-copy {
  position: relative;
  z-index: 5;
  width: min(100%, 1600px);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: clamp(120px, 17vh, 180px) clamp(40px, 7vw, 112px) 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.hero-eyebrow {
  color: rgba(255,255,255,.68);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,.9);
}
.hero-logo-anchor {
  display: block;
  flex: 0 0 auto;
  width: 130px;
  height: 44px;
  margin-top: 18px;
}
.hero-title {
  width: min(720px, 100%);
  max-width: 720px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(58px, 6.8vw, 104px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .91;
  text-wrap: balance;
  text-shadow: 0 2px 3px rgba(0,0,0,.72), 0 14px 48px rgba(0,0,0,.68);
}
.hero-title-static {
  display: block;
}
.hero-signature {
  position: relative;
  display: block;
  width: min(4.32em, 100%);
  max-width: 100%;
  margin-top: -.08em;
  margin-left: -.03em;
  aspect-ratio: 980 / 500;
}
.hero-signature-video-shell {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .28s ease;
}
.hero-signature-video-shell-ready,
.hero-signature-video-shell-playing,
.hero-signature-video-shell-complete {
  opacity: 1;
}
.hero-signature-canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter:
    saturate(1.05)
    brightness(1.03)
    contrast(1.03)
    drop-shadow(0 3px 10px rgba(213, 165, 75, 0.14));
}
.hero-signature-video-source {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.hero-sub {
  max-width: 510px;
  margin-top: 28px;
  color: rgba(244,238,229,.86);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.8;
  text-wrap: pretty;
  text-shadow: 0 2px 24px rgba(0,0,0,.92);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero-cta {
  min-width: 224px;
  margin-top: 42px;
  padding: 17px 19px 17px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(200,169,106,.62);
  background: rgba(9,8,7,.22);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.hero-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}
.hero-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #0b0b0b;
}
.hero-cta:hover svg { transform: translateX(4px); }
.hero-cta:active { transform: scale(.98); }
.hero-secondary-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(232, 223, 203, 0.82);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color .25s ease;
}
.hero-secondary-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,169,106,.72), rgba(200,169,106,0));
  opacity: .72;
  transition: opacity .25s ease;
}
.hero-secondary-link:hover {
  color: var(--gold);
}
.hero-secondary-link:hover::after {
  opacity: 1;
}
.hero-cta:focus-visible,
.hero-arrow:focus-visible,
.hero-scroll:focus-visible,
.hero-secondary-link:focus-visible,
.navbar-action:focus-visible,
.whatsapp-float:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.hero-rail {
  position: absolute;
  z-index: 6;
  left: 40px;
  right: 40px;
  bottom: 28px;
  min-height: 64px;
  padding-top: 18px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-rail-single { grid-template-columns: 1fr; }
.hero-slide-note {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.hero-slide-number,
.hero-count {
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .2em;
}
.hero-slide-rule {
  width: 28px;
  height: 1px;
  background: rgba(200,169,106,.7);
}
.hero-slide-note > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}
.hero-slide-note strong {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-slide-note small {
  overflow: hidden;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  letter-spacing: .02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.72);
  transition: color .2s ease, transform .2s ease;
}
.hero-arrow svg { width: 17px; height: 17px; }
.hero-arrow:hover { color: var(--gold); }
.hero-arrow:active { transform: scale(.92); }
.hero-progress {
  position: relative;
  width: clamp(76px, 8vw, 120px);
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.22);
}
.hero-progress span {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  animation: hero-progress var(--hero-duration) linear forwards;
}
.hero-progress span.is-paused { animation-play-state: paused; }
@keyframes hero-progress {
  to { transform: scaleX(1); }
}
.hero-scroll {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.hero-scroll-line {
  position: relative;
  width: 36px;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.34);
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-110%);
  animation: hero-scroll-line 2.6s ease-in-out infinite;
}
.hero-scroll:hover { color: #fff; }
@keyframes hero-scroll-line {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(110%); }
}
@media (max-width: 980px) {
  .hero-rail {
    grid-template-columns: 1fr auto;
  }
  .hero-scroll { display: none; }
  .hero-rail-single { display: none; }
}
@media (max-height: 680px) and (min-width: 769px) {
  .hero-copy { padding-top: 92px; padding-bottom: 118px; }
  .hero-title { margin-top: 46px; font-size: clamp(48px, 6vw, 68px); }
  .hero-sub { margin-top: 18px; }
  .hero-cta { margin-top: 26px; }
  .hero-rail { bottom: 14px; }
}

/* Section base */
.section { padding: 110px 56px; }
.section-tight { padding: 80px 56px; }
.section-head {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .section-head { grid-template-columns: 1fr; } }

/* Experience — full-bleed with gradient blend */
.experience {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  position: relative;
}
.exp-grid {
  position: relative;
  height: 100%;
}
.exp-stick {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.exp-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform-origin: 50% 50%;
}
.exp-bg .vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,11,0.6) 0%, rgba(11,11,11,0) 18%),
    linear-gradient(0deg, rgba(11,11,11,0.7) 0%, rgba(11,11,11,0) 30%),
    linear-gradient(90deg, rgba(11,11,11,0.95) 0%, rgba(11,11,11,0.82) 28%, rgba(11,11,11,0.4) 55%, rgba(11,11,11,0.05) 100%),
    radial-gradient(ellipse at 80% 50%, transparent 30%, rgba(0,0,0,0.4) 90%);
  pointer-events: none;
  z-index: 2;
}
.exp-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  z-index: 3;
  pointer-events: none;
}
.exp-overlay > * { pointer-events: auto; }

.exp-mid {
  padding: 110px 64px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 720px;
}
@media (max-width: 1100px) {
  /* Mobile: the section stays tall (260vh inline) so scroll progress can drive
     three discrete states. Inside, .exp-stick pins a single 100vh frame and the
     image stays beneath the headline + step list which overlays at the bottom. */
  .exp-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  /* Stronger bottom-up gradient so the headline reads cleanly over the photo */
  .exp-bg .vignette {
    background:
      linear-gradient(180deg, rgba(11,11,11,0.45) 0%, rgba(11,11,11,0.05) 22%, rgba(11,11,11,0) 38%),
      linear-gradient(0deg, rgba(11,11,11,0.96) 0%, rgba(11,11,11,0.85) 28%, rgba(11,11,11,0.45) 55%, rgba(11,11,11,0.1) 78%, rgba(11,11,11,0) 100%);
  }
  .exp-mid {
    padding: 0 28px 64px;
    max-width: 100%;
    height: auto;
    justify-content: flex-end;
  }
  .exp-headline { font-size: clamp(34px, 8.5vw, 52px); }
  .exp-steps { margin-top: 28px; max-width: 100%; }
  .exp-step { padding: 18px 0; }
}
.exp-eyebrow { color: var(--text-dim); margin-bottom: 28px; }
.exp-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: var(--tracking-section);
  font-weight: var(--weight-display-section);
}
.exp-headline .it { font-family: var(--font-display); font-weight: var(--weight-accent); color: var(--gold); }
.exp-steps {
  margin-top: 56px;
  display: flex; flex-direction: column;
  max-width: 400px;
  padding-left: 20px;
  position: relative;
}
.exp-steps::before {
  content: '';
  position: absolute;
  left: 0; top: 28px; bottom: 28px;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.exp-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.exp-step:first-child { border-top: none; }
.exp-step .num {
  font-size: 11px; letter-spacing: 0.22em; color: var(--gold); padding-top: 4px;
  transition: color 0.55s ease;
}
.exp-step h3 {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.55s ease;
}
.exp-step p {
  font-size: 13px; line-height: 1.6;
  transition: color 0.55s ease;
}

.exp-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  /* Opacity is now driven inline by scroll progress; the short linear
     transition just smooths between rAF frames without adding lag. */
  transition: opacity .12s linear;
  z-index: 1;
  will-change: opacity;
}
.exp-img picture,
.exp-img img { width: 100%; height: 100%; display: block; }
.exp-img img { object-fit: cover; }

/* Bottom scroll nudge */
.exp-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 1;
  transition: opacity .6s ease;
  pointer-events: none;
}
.exp-scroll-hint.done { opacity: 0; }
.exp-scroll-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.exp-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}
@media (max-width: 1100px) {
  .exp-scroll-hint { bottom: 100px; }
}

/* Services — editorial card grid with image-overlaid serif titles */
.services {
  background: var(--bg);
  padding: 0;
  margin-top: 0;
  border-top: 1px solid var(--hairline);
}
.services-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.08fr) repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1500px;
  margin-inline: auto;
  background: var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.services-intro {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(197, 159, 93, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  padding: 40px 34px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.services-intro .eyebrow { margin-bottom: 28px; }
.services-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  font-weight: var(--weight-display-section);
  letter-spacing: var(--tracking-section);
  margin-top: 16px;
}
.services-guide {
  max-width: 24ch;
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-dim);
}
.services-link {
  display: inline-flex; gap: 16px; align-items: center;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 14px 0;
  width: fit-content;
  transition: color .25s ease, border-color .25s ease;
}
.services-link:hover { color: var(--gold); border-color: var(--gold); }
.services-link svg { width: 22px; }

.service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008)),
    var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  min-height: 100%;
  transition: background .25s ease, transform .35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow .35s ease;
}
.service-card:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: -1px;
  z-index: 1;
}
.service-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(197, 159, 93, 0.08), transparent 40%),
    #090909;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-img picture { display: block; width: 100%; height: 100%; }
.service-img-grad {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(11,11,11,0) 0%, rgba(11,11,11,0.55) 55%, var(--bg) 100%);
  pointer-events: none;
}
/* Title sits over the gradient at the image's bottom edge — connects image and body. */
.service-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.service-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  min-height: 164px;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.8;
  letter-spacing: 0.005em;
  max-width: 24ch;
}
.service-cta {
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-dim);
  transition: color .25s ease, border-color .25s ease;
}
.service-cta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}
.service-cta-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-cta svg { transition: transform .25s cubic-bezier(0.23, 1, 0.32, 1); }
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.032), rgba(255,255,255,0.012)),
      var(--bg-2);
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.32);
  }
  .service-card:hover .service-img img { transform: scale(1.05); }
  .service-card:hover .service-title { color: var(--gold); }
  .service-card:hover .service-cta { color: var(--text); border-color: var(--gold-line); }
  .service-card:hover .service-cta-icon { background: var(--gold); color: var(--bg); border-color: var(--gold); transform: translateX(2px); }
  .service-card:hover .service-cta svg { transform: translateX(1px); }
}
.service-card:focus-visible .service-title { color: var(--gold); }
.service-card:focus-visible .service-cta { color: var(--text); border-color: var(--gold-line); }
.service-card:focus-visible .service-cta-icon { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.service-card:active .service-cta-icon { transform: scale(.94); }

@media (max-width: 1100px) {
  .services-row {
    grid-template-columns: 1fr 1fr;
    max-width: 980px;
  }
  .services-intro {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    padding: 38px 32px 34px;
  }
  .services-intro .services-title { font-size: clamp(32px, 5vw, 48px); margin-bottom: 0; }
  .services-intro .eyebrow { margin-bottom: 16px; }
  .services-guide { max-width: 28ch; }
  .service-body {
    min-height: 152px;
  }
}
@media (max-width: 600px) {
  .services {
    background: var(--bg-2);
    padding: 0 14px 18px;
  }
  .services-row {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 560px;
    background: transparent;
    border-bottom: none;
  }
  .services-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 34px 22px 26px;
    border: 1px solid var(--hairline);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  }
  .services-intro .services-title {
    font-size: clamp(36px, 9vw, 48px);
    margin-bottom: 0;
  }
  .services-guide {
    max-width: 32ch;
    margin-top: 14px;
    font-size: 13px;
  }
  .services-link {
    gap: 14px;
    padding: 12px 0;
    font-size: 10px;
    letter-spacing: 0.24em;
  }
  .service-card {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.024), rgba(255,255,255,0.008)),
      var(--bg);
    border: 1px solid var(--hairline);
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  }
  .service-img {
    aspect-ratio: 4 / 3.2;
  }
  .service-img img {
    object-position: center 24%;
  }
  .service-img-grad {
    height: 70%;
  }
  .service-title {
    left: 20px;
    right: 20px;
    bottom: 16px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .service-body {
    padding: 18px 20px 20px;
    gap: 16px;
    min-height: 0;
  }
  .service-desc {
    font-size: 13.5px;
    line-height: 1.72;
    max-width: none;
  }
  .service-cta { padding-top: 13px; }
  .service-cta-label { font-size: 10px; }
  .service-cta-icon { width: 32px; height: 32px; flex-basis: 32px; }
}

/* Studio */
.stylists {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  padding: 80px 56px 88px;
}

.studio-intro,
.studio-layout {
  max-width: 1480px;
  margin-inline: auto;
}

/* Section intro — same shape as the Services intro */
.studio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 420px);
  gap: clamp(40px, 5vw, 116px);
  align-items: end;
  padding-bottom: 42px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}
.studio-intro .eyebrow { margin-bottom: 22px; }
.studio-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  font-weight: var(--weight-display-section);
  letter-spacing: var(--tracking-section);
}
.studio-title .it { font-family: var(--font-display); font-weight: var(--weight-accent); color: var(--gold); }
.studio-lede {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 34ch;
  justify-self: end;
  padding-bottom: 8px;
}

@media (max-width: 1100px) {
  .stylists { padding: 72px 40px 80px; }
  .studio-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 390px);
  gap: clamp(28px, 3.2vw, 56px);
  align-items: stretch;
}

.studio-team {
  min-width: 0;
}

.studio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.studio-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--text-dim);
}
/* Stylist cards — compact, name + plus + role */
.stylists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.35vw, 20px);
  width: 100%;
}
.stylist-card {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: border-color .35s ease, transform .35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow .35s ease;
}
.stylist-card:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}
.stylist-card:active { transform: scale(.99); }
.stylist-img {
  aspect-ratio: 9/16;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 50% 8%, rgba(197, 159, 93, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.stylist-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
}
@media (hover: hover) and (pointer: fine) {
  .stylist-card:hover {
    border-color: var(--gold-line);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
  }
}

.stylist-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}
.stylist-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.stylist-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: color .25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .stylist-card:hover .stylist-name { color: var(--gold); }
}
.stylist-plus {
  position: relative;
  width: 12px; height: 12px;
  flex-shrink: 0;
  color: var(--text-mute);
  transition: color .25s ease, transform .35s ease;
}
.stylist-plus::before, .stylist-plus::after {
  content: ''; position: absolute; background: currentColor;
  top: 50%; left: 50%;
}
.stylist-plus::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
.stylist-plus::after  { width: 1px; height: 12px; transform: translate(-50%, -50%); }
@media (hover: hover) and (pointer: fine) {
  .stylist-card:hover .stylist-plus { color: var(--gold); transform: rotate(90deg); }
}
.stylist-role {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.studio-story {
  position: relative;
  align-self: start;
  margin-top: 44px;
  padding: 30px 30px 34px;
  border: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    radial-gradient(circle at top left, rgba(197, 159, 93, 0.08), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.studio-story::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 28px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 159, 93, 0.9), rgba(197, 159, 93, 0));
}
.studio-story .eyebrow { margin-bottom: 20px; }
.studio-story-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.05;
  font-weight: var(--weight-display-section);
  letter-spacing: var(--tracking-section);
  max-width: 7ch;
}
.studio-story-title span { color: var(--gold); }
.studio-story-lead {
  margin-top: 22px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(228,222,210,0.92);
}
.studio-story-body {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(200,195,185,0.78);
}

@media (max-width: 1180px) {
  .studio-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stylists-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .studio-story {
    margin-top: 0;
    max-width: 760px;
    padding: 28px 30px 32px;
  }
}

@media (max-width: 900px) {
  .studio-layout { gap: 28px; }
  .stylists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .studio-story {
    max-width: none;
    padding: 26px 24px 28px;
  }
  .studio-story-lead,
  .studio-story-body { max-width: 64ch; }
}

@media (max-width: 560px) {
  .stylists {
    padding: 60px 18px 68px;
  }
  .studio-intro {
    gap: 14px;
    padding-bottom: 28px;
    margin-bottom: 24px;
  }
  .studio-intro .eyebrow {
    margin-bottom: 16px;
  }
  .studio-title {
    font-size: clamp(34px, 10vw, 44px);
  }
  .studio-lede {
    max-width: none;
    justify-self: start;
    padding-bottom: 0;
  }
  .studio-head {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }
  .stylists-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }
  .stylist-card {
    --mobile-stylist-height: clamp(168px, 48vw, 184px);
    display: grid;
    grid-template-columns: minmax(124px, 44%) minmax(0, 1fr);
    align-items: stretch;
    min-height: var(--mobile-stylist-height);
    background: var(--bg);
    border: 1px solid var(--hairline);
  }
  .stylist-img {
    grid-column: 1;
    grid-row: 1;
    height: var(--mobile-stylist-height);
    aspect-ratio: auto;
    border-right: 1px solid var(--hairline);
  }
  .stylist-img img {
    object-fit: cover;
    object-position: center 18%;
  }
  .stylist-meta {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    padding: 18px 18px 18px 16px;
    background: var(--bg);
  }
  .stylist-plus {
    width: 20px;
    height: 20px;
    margin: 0;
  }
  .stylist-role { margin-top: 6px; font-size: 13px; }
  .studio-story {
    padding: 22px 18px 22px;
  }
  .studio-story::before {
    left: 18px;
    width: 72px;
  }
  .studio-story .eyebrow {
    margin-bottom: 16px;
  }
  .studio-story-title {
    max-width: none;
    font-size: clamp(28px, 8.2vw, 36px);
  }
  .studio-story-lead {
    margin-top: 18px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .stylists { padding: 56px 16px 64px; }
  .studio-intro { padding-bottom: 24px; margin-bottom: 22px; gap: 12px; }
  .studio-title { font-size: clamp(34px, 8.5vw, 48px); }
  .studio-lede { font-size: 13.5px; }
  .studio-layout { gap: 24px; }
  .studio-story { padding: 20px 16px 20px; }
}

/* Stylist modal */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 1080px;
  max-height: 88vh;
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform .45s cubic-bezier(0.23, 1, 0.32, 1), opacity .35s ease;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); opacity: 1; }
@media (max-width: 900px) { .modal { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; } }
.modal-img {
  position: relative;
  min-height: 480px;
  background: var(--bg-2);
}
.modal-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
}
.modal-body {
  padding: 56px 48px;
  overflow-y: auto;
}
.modal-body .name {
  font-family: var(--font-display); font-size: clamp(40px, 4vw, 56px);
  font-weight: var(--weight-display-section); line-height: 1; letter-spacing: var(--tracking-section);
}
.modal-body .role { margin-top: 16px; color: var(--gold); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; }
.modal-body .bio { margin-top: 28px; color: var(--text-dim); font-size: 14px; line-height: 1.75; }
.modal-stats { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.modal-stat { padding: 18px 14px; border-right: 1px solid var(--hairline); }
.modal-stat:last-child { border-right: none; }
.modal-stat .num { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--gold); font-variant-numeric: tabular-nums; }
.modal-stat .lbl { margin-top: 4px; font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-dim); }
.modal-spec-list { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.modal-spec-list span {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid var(--hairline-strong); color: var(--text-dim);
}
.modal-cta {
  margin-top: 36px;
  display: inline-flex; gap: 16px; align-items: center;
  padding: 18px 28px;
  background: var(--gold);
  color: #0B0B0B;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  transition: background .25s ease, transform .25s ease;
}
.modal-cta:hover { background: #d6b876; }
.modal-cta:active { background: #c09040; transform: scale(0.97); }
.modal-cta svg { width: 18px; }
.modal-close {
  position: absolute; top: 20px; right: 24px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--text); border: 1px solid var(--hairline-strong);
  background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
  z-index: 10;
  transition: color .25s ease, border-color .25s ease;
}
.modal-close:hover { color: var(--gold); border-color: var(--gold); }

/* Journal */
.journal { background: var(--bg); padding: 0; }
.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.journal-grid > * { border-right: 1px solid var(--hairline); }
.journal-grid > *:last-child { border-right: none; }
@media (max-width: 900px) {
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-grid > * { border-right: none; border-bottom: 1px solid var(--hairline); }
  .journal-feature { grid-column: span 2; }
}
@media (max-width: 560px) { .journal-grid { grid-template-columns: 1fr; } .journal-feature { grid-column: auto; } }

.journal-feature {
  padding: 56px 40px 48px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--bg);
}
.journal-feature .title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.02;
  font-weight: var(--weight-display-section);
  letter-spacing: var(--tracking-section);
}
.journal-feature .title .it { color: var(--gold); }
.journal-all {
  margin-top: 28px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  display: inline-flex; gap: 10px; align-items: center;
  color: var(--text-dim);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hairline-strong);
  width: fit-content;
  transition: color .25s ease, border-color .25s ease, gap .25s ease;
}
.journal-all:hover { color: var(--gold); border-color: var(--gold); gap: 14px; }

.journal-card {
  cursor: pointer;
  display: flex; flex-direction: column;
}
.journal-card .img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-2);
}
.journal-card .img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}
.journal-card .img picture { display: block; width: 100%; height: 100%; }
@media (hover: hover) and (pointer: fine) {
  .journal-card:hover .img img { transform: scale(1.06); }
}
@media (max-width: 560px) {
  .journal-card .img { aspect-ratio: 4/3; }
}
.journal-card .body {
  padding: 20px 22px 28px;
  flex: 1; display: flex; flex-direction: column;
}
.journal-card .cat {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.journal-card .ttl {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex: 1;
  margin-bottom: 20px;
}
.journal-card .more {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  display: inline-flex; gap: 10px; align-items: center;
  color: var(--text-dim);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hairline-strong);
  width: fit-content;
  transition: color .25s ease, border-color .25s ease, gap .25s ease;
}
.journal-card:hover .more { color: var(--gold); border-color: var(--gold); gap: 14px; }

/* ─── About ────────────────────────────────────────────────────────── */
.about {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(14,14,14,0.98) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 0% 50%, rgba(16,16,16,0.6) 0%, transparent 55%),
    #0b0b0b;
}
.about::before {
  content: '';
  position: absolute;
  top: -80px; left: -5%;
  width: 45%; height: 70%;
  background: radial-gradient(ellipse at 35% 40%, rgba(200,169,106,0.022) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.about > * { position: relative; z-index: 1; }

/* Stats strip */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid rgba(200,169,106,0.15);
  border-bottom: 0.5px solid rgba(200,169,106,0.15);
  background: linear-gradient(
    90deg,
    rgba(200,169,106,0.025) 0%,
    transparent 35%,
    transparent 65%,
    rgba(200,169,106,0.02) 100%
  );
  position: relative;
}
.about-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200,169,106,0.3) 30%,
    rgba(200,169,106,0.3) 70%,
    transparent
  );
}
.about-stat {
  padding: 36px 40px;
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 8px;
}
.about-stat:last-child { border-right: none; }
.about-stat-n {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: var(--weight-display);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.about-stat-n span { font-size: 0.65em; }
/* Location stat (4th) — display weight matching the other stat numerals */
.about-stat:nth-child(4) .about-stat-n {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: var(--weight-display);
  letter-spacing: -0.01em;
  text-transform: none;
  font-variant-numeric: normal;
  color: var(--gold);
  line-height: 1;
}
.about-stat-l {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  opacity: 0.7;
  margin-top: 4px;
}

/* Values */
.about-values { padding: 72px 80px 96px; }
.about-values-head { margin-bottom: 40px; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.about-value {
  padding: 40px 36px 48px;
  border-top: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  background: linear-gradient(160deg, rgba(200,169,106,0.04) 0%, transparent 50%);
  transition: background 0.3s ease;
}
.about-value:last-child { border-right: none; }
@media (hover: hover) and (pointer: fine) {
  .about-value:hover {
    background: linear-gradient(160deg, rgba(200,169,106,0.06) 0%, transparent 60%);
  }
}
.about-value-num {
  color: rgba(200,169,106,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.about-value-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(234,234,234,0.97);
  margin-bottom: 12px;
  line-height: 1.2;
}
.about-value-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(190,183,170,0.78);
}

/* About responsive */
@media (max-width: 1100px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(3) { border-top: 1px solid var(--hairline); }
  .about-stat:nth-child(4) { border-top: 1px solid var(--hairline); border-right: none; }
  .about-values { padding: 56px 48px 72px; }
  .about-values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat { padding: 24px 24px; }
  .about-values { padding: 44px 24px 56px; }
  .about-value { padding: 28px 24px 32px; }
}
@media (max-width: 380px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat { padding: 20px 18px; }
  .about-values { padding: 36px 18px 48px; }
  .about-value { padding: 24px 18px 28px; }
}

/* ─── Contact ──────────────────────────────────────────────────────── */
.contact {
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(16, 16, 16, 1));
  border-top: 1px solid var(--hairline);
}

/* Info cards */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr) minmax(280px, 0.9fr);
  border-bottom: 1px solid var(--hairline);
}
.contact-card {
  min-height: 220px;
  padding: 38px 40px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}
.contact-card:last-child { border-right: none; }
.contact-card-label {
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.contact-card-val {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.contact-card-location {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
}
.contact-card-location::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 159, 93, 0.9), rgba(197, 159, 93, 0));
}
.contact-location-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.contact-location-copy {
  min-width: 0;
}
.contact-location-title {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: rgba(240, 237, 231, 0.98);
}
.contact-location-title-sub {
  display: block;
  max-width: 28ch;
  font-family: var(--font-body);
  font-size: clamp(16px, 0.48em, 20px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: rgba(225, 220, 210, 0.82);
}
.contact-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.contact-location-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(200, 169, 106, 0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  color: rgba(232, 223, 203, 0.74);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-location-badge {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 106, 0.22);
  color: var(--gold);
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.08), rgba(255,255,255,0.01)),
    rgba(255,255,255,0.015);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-hours-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: nowrap;
}
.contact-hours-row span:first-child {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(180, 160, 120, 0.65);
  white-space: nowrap;
  flex-shrink: 0;
}
.contact-hours-row span:last-child {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(234, 234, 234, 0.97);
  white-space: nowrap;
  line-height: 1.2;
}
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  transition: color .2s ease;
}
.contact-card-link svg {
  flex-shrink: 0;
}
.contact-link-arrow {
  width: 13px;
  height: 13px;
  opacity: 0.72;
  transition: transform .25s cubic-bezier(0.23, 1, 0.32, 1), opacity .2s ease;
  flex-shrink: 0;
}
.contact-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(212, 183, 123, 0.9);
}
.contact-link-icon svg,
.contact-card-link > svg:first-child {
  width: 20px;
  height: 20px;
  display: block;
  overflow: visible;
}
.contact-link-icon-whatsapp {
  color: rgba(111, 214, 137, 0.96);
}
.contact-link-icon-whatsapp svg {
  width: 19px;
  height: 19px;
}
.contact-location-cta {
  width: fit-content;
  color: rgba(240, 236, 228, 0.92);
}
@media (hover: hover) and (pointer: fine) {
  .contact-card-link:hover { color: var(--gold); }
  .contact-card-link:hover .contact-link-arrow { transform: translateX(4px); opacity: 1; }
}

/* Contact responsive */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card {
    min-height: 0;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding: 32px 48px;
  }
  .contact-card:last-child { border-bottom: none; }
  .contact-card-location::before { left: 48px; }
}
@media (max-width: 768px) {
  .contact-card { padding: 28px 24px; }
  .contact-card-location::before { left: 24px; }
  .contact-location-main {
    flex-direction: column;
    gap: 18px;
  }
  .contact-location-badge {
    width: 48px;
    height: 48px;
  }
  .contact-location-title-sub {
    max-width: none;
  }
  .contact-card-val { font-size: 15px; word-break: keep-all; hyphens: none; }
  .contact-hours-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .contact-hours-row span:last-child { font-size: 20px; }
  .contact-card a { white-space: nowrap; }
}
@media (max-width: 480px) {
  .contact-card { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
  .contact-card-location::before {
    left: 18px;
    width: 72px;
  }
}
@media (max-width: 380px) {
  .contact-card { padding: 24px 18px; }
}

/* CTA */
.cta {
  position: relative;
  min-height: 380px;
  padding: 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: left center;
  display: block;
}
.cta-bg picture { display: block; width: 100%; height: 100%; }
.cta-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.55) 28%,
    rgba(0,0,0,0.82) 55%,
    rgba(0,0,0,0.96) 100%);
}
.cta-content {
  grid-column: 2;
  position: relative; z-index: 2;
}
.cta-content .eyebrow { margin-bottom: 12px; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  font-weight: var(--weight-display-section);
  letter-spacing: var(--tracking-section);
}
.cta-headline .it { font-family: var(--font-display); font-weight: var(--weight-accent); color: var(--gold); }
.cta-sub {
  margin-top: 20px;
  font-size: 13px; line-height: 1.65;
  color: var(--text-dim);
  max-width: 340px;
}
.cta-btn {
  grid-column: 3;
  z-index: 2;
  position: relative;
  justify-self: end;
  display: inline-flex; gap: 28px; align-items: center;
  padding: 20px 32px;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  white-space: nowrap;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.cta-btn:hover { background: var(--gold); color: #0B0B0B; border-color: var(--gold); }
.cta-btn:active { transform: scale(0.97); }
.cta-btn svg { width: 16px; }

@media (max-width: 1000px) {
  .cta { grid-template-columns: 1fr; padding: 80px 48px; gap: 32px; min-height: auto; }
  .cta-content { grid-column: auto; }
  .cta-btn { grid-column: auto; justify-self: stretch; width: 100%; justify-content: space-between; }
}
@media (max-width: 640px) {
  .cta { padding: 64px 28px; }
}

/* Footer — single overlaid section */
.footer {
  position: relative;
  background: var(--bg);
  min-height: 460px;
  overflow: hidden;
  isolation: isolate;
}
.footer-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 72% 130% at 4% 24%,
      oklch(0.38 0.07 62 / 0.38) 0%,
      oklch(0.25 0.045 62 / 0.2) 42%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 48% 90% at 82% -12%,
      oklch(0.3 0.038 78 / 0.18) 0%,
      transparent 72%
    ),
    linear-gradient(
      145deg,
      oklch(0.145 0.012 65) 0%,
      oklch(0.095 0.007 65) 58%,
      oklch(0.07 0.004 65) 100%
    );
}
.footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      oklch(0.07 0.004 65 / 0.36) 48%,
      oklch(0.055 0.003 65 / 0.9) 100%
    ),
    linear-gradient(
      90deg,
      transparent 0%,
      oklch(0.06 0.003 65 / 0.12) 50%,
      oklch(0.06 0.003 65 / 0.42) 100%
    );
}
.footer-top {
  position: absolute;
  top: 36px; right: 48px;
  z-index: 3;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  display: inline-flex; gap: 10px; align-items: center;
  color: rgba(255,255,255,0.7);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color .25s ease, gap .25s ease, border-color .25s ease, background .25s ease;
}
.footer-top:hover {
  color: var(--gold);
  gap: 14px;
  border-color: var(--gold-line);
  background: rgba(0,0,0,0.55);
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 200px 56px 48px;
  display: flex;
  align-items: flex-end;
  min-height: 460px;
}
.footer-main {
  width: 100%;
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 1100px) {
  .footer-content { padding: 160px 32px 36px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-top { right: 32px; top: 28px; }
}
@media (max-width: 768px) {
  .footer { min-height: 540px; }
  .footer-content { padding: 180px 32px 32px; min-height: 540px; }
}
@media (max-width: 560px) {
  .footer { min-height: 580px; }
  .footer-content { padding: 200px 24px 28px; min-height: 580px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { right: 18px; top: 20px; padding: 8px 12px; font-size: 9px; }
  .footer-bg {
    background:
      radial-gradient(
        ellipse 118% 66% at 0% 4%,
        oklch(0.36 0.066 62 / 0.36) 0%,
        oklch(0.23 0.038 62 / 0.18) 46%,
        transparent 78%
      ),
      linear-gradient(
        165deg,
        oklch(0.14 0.011 65) 0%,
        oklch(0.085 0.005 65) 58%,
        oklch(0.06 0.003 65) 100%
      );
  }
}
@media (max-width: 700px) {
  /* Keep the final footer links clear of the persistent booking bar. */
  .footer-content {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }
}

.footer-logo { height: 30px; width: auto; display: block; }
.footer-tagline {
  margin-top: 16px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer-brand .copyright {
  margin-top: 32px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); line-height: 1.6;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color .25s ease;
}
.footer-col a:hover { color: var(--gold); }

/* Mobile sticky CTA — hidden on the hero, slides up after the hero has been scrolled past */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline-strong);
  z-index: 50;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .45s cubic-bezier(0.23, 1, 0.32, 1), opacity .35s ease;
  will-change: transform;
}
.mobile-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-cta a, .mobile-cta button {
  display: block; width: 100%; padding: 14px;
  background: var(--gold); color: #0B0B0B;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  text-align: center; text-decoration: none;
  transition: opacity .15s ease;
}
.mobile-cta a:active, .mobile-cta button:active { opacity: 0.8; }
@media (max-width: 700px) { .mobile-cta { display: block; } }
.whatsapp-float {
  display: none;
  position: fixed;
  right: 14px;
  bottom: calc(84px + env(safe-area-inset-bottom));
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2fda6f 0%, #21b35a 100%);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 22px rgba(10, 45, 22, 0.34), inset 0 1px 0 rgba(255,255,255,0.18);
  z-index: 51;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(0.23, 1, 0.32, 1), opacity .25s ease, border-color .25s ease, color .25s ease;
}
.whatsapp-float.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.whatsapp-float svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  display: block;
  overflow: visible;
}
.whatsapp-float span { display: none; }
@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover {
    border-color: rgba(255,255,255,0.28);
    color: #ffffff;
  }
}
@media (max-width: 700px) {
  .whatsapp-float {
    display: inline-flex;
    background: rgba(8, 20, 12, 0.22);
    border-color: rgba(47, 218, 111, 0.58);
    color: #35d56f;
    box-shadow: 0 10px 20px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
  }
}
.navbar.menu-open ~ .whatsapp-float {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   TABLET  — 768px
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Section base */
  .section { padding: 80px 32px; }
  .section-tight { padding: 60px 32px; }

  /* Navbar */
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 18px 24px; }

  /* Hero */
  .hero-copy {
    padding: 118px 24px 158px;
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow { font-size: 9px; letter-spacing: .23em; }
  .hero-logo-anchor { margin-top: 20px; }
  .hero-title {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: clamp(46px, 13vw, 68px);
    font-weight: 300;
    letter-spacing: -.035em;
  }
  .hero-signature {
    width: min(4.18em, calc(100vw - 48px));
    margin-top: .02em;
    margin-right: auto;
    margin-left: auto;
  }
  .hero-signature-canvas {
    transform: translateX(0.01em) scale(1.01);
    transform-origin: center center;
  }
  .hero-sub { max-width: 350px; margin-top: 24px; font-size: 13px; text-align: center; }
  .hero-actions {
    align-items: center;
    gap: 12px;
  }
  .hero-cta { min-width: 218px; margin-top: 34px; }
  .hero-secondary-link {
    justify-content: center;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(8,7,6,.7) 0%, rgba(8,7,6,.12) 22%, rgba(8,7,6,.08) 55%, rgba(8,7,6,.9) 100%),
      radial-gradient(ellipse 78% 42% at 50% 51%, rgba(8,7,6,.62) 0%, rgba(8,7,6,.3) 48%, transparent 85%);
  }
  .hero-rail {
    left: 24px;
    right: 24px;
    bottom: 20px;
    min-height: 54px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .hero-slide-note small,
  .hero-scroll { display: none; }
  .hero-controls { justify-self: end; }
  .hero-progress { width: 68px; }

  /* Experience */
  .exp-mid { padding: 64px 28px; }
  .exp-headline { font-weight: 400; letter-spacing: 0; }

  /* Section headlines — bump one weight step for small screens */
  .services-title { font-weight: 400; letter-spacing: 0; }
  .studio-title { font-weight: 400; letter-spacing: 0; }
  .studio-story-title { font-weight: 400; letter-spacing: 0; }
  .cta-headline { font-weight: 400; letter-spacing: 0; }
  .journal-feature .title { font-weight: 400; letter-spacing: 0; }

  /* Brand wordmark */
  .brand { font-weight: 400; }

  /* Modal */
  .modal-backdrop { padding: 20px; }
  .modal-body { padding: 40px 28px; }
  .modal-body .name { font-weight: 400; }
  .modal-stat .num { font-weight: 400; }

  /* Stats */
  .about-stat-n { font-weight: var(--weight-display-section); }

  /* CTA */
  .cta { padding: 72px 32px; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE  — 380px
═══════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  /* Section base */
  .section { padding: 56px 18px; }
  .section-tight { padding: 44px 18px; }

  /* Navbar */
  .navbar { padding: 18px 18px; }
  .navbar.scrolled { padding: 16px 18px; }
  .navbar-mobile { padding: 96px 20px 40px; }

  /* Hero */
  .hero-copy { padding: 110px 18px 142px; }
  .hero-title { margin-top: 18px; font-size: clamp(42px, 13vw, 52px); }
  .hero-sub { max-width: 310px; }
  .hero-cta { width: min(100%, 230px); }
  .whatsapp-float {
    right: 14px;
    bottom: calc(80px + env(safe-area-inset-bottom));
    width: 47px;
    height: 47px;
  }
  .hero-rail { left: 18px; right: 18px; bottom: 14px; }
  .hero-slide-rule { width: 18px; }
  .hero-slide-note { gap: 9px; }
  .hero-slide-note strong { font-size: 9px; letter-spacing: .14em; }
  .hero-controls { gap: 7px; }
  .hero-arrow { width: 30px; height: 30px; }
  .hero-progress { width: 48px; }

  /* Experience */
  .exp-mid { padding: 48px 18px; }
  .exp-steps { max-width: 100%; }

  /* Services (home) */
  .services-row { gap: 0; }
  .services-intro { padding: 32px 18px 24px; }
  .service-img { aspect-ratio: 4/3; }
  .service-title { left: 18px; right: 18px; bottom: 16px; }
  .service-body { padding: 16px 18px 20px; }


  /* Modal — full-screen sheet from bottom */
  .modal-backdrop { padding: 0; align-items: flex-end; }
  .modal {
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    border-left: none;
    border-right: none;
    border-bottom: none;
    overflow-y: auto;
  }
  .modal-img { min-height: 240px; }
  .modal-body { padding: 24px 18px 36px; }
  .modal-body .name { font-size: clamp(32px, 9vw, 44px); }
  .modal-body .bio { font-size: 13px; }
  .modal-stats { grid-template-columns: repeat(3, 1fr); }
  .modal-stat { padding: 14px 10px; }
  .modal-stat .num { font-size: 26px; }
  .modal-close { top: 14px; right: 14px; }

  /* CTA */
  .cta { padding: 56px 18px; gap: 32px; }
  .cta-btn { padding: 16px 22px; gap: 18px; width: 100%; justify-content: space-between; }

  /* Footer */
  .footer-logo { height: 24px; }
  .footer-brand .copyright { margin-top: 20px; }

  /* Mobile CTA bar */
  .mobile-cta { padding: 10px 14px; }
  .mobile-cta button { font-size: 10px; letter-spacing: 0.2em; }
}

/* SVG Placeholder imagery — striped warm-toned gradient */
.placeholder-img {
  width: 100%; height: 100%;
  position: relative;
  background: linear-gradient(135deg, #1a1410 0%, #0e0b08 100%);
  overflow: hidden;
}

/* Reveal on scroll — quick, restrained */
.reveal {
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s cubic-bezier(0.23, 1, 0.32, 1),
              transform .35s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.fadein {
  opacity: 0; transform: translateY(14px);
  animation: fadeInUp .65s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
/* Reveal the location line away from the logo so their spacing stays clear
   throughout the opening motion, not only in the final state. */
.hero-eyebrow.fadein { transform: translateY(-8px); }
.fadein.d1 { animation-delay: .1s; }
.fadein.d2 { animation-delay: .25s; }
.fadein.d3 { animation-delay: .4s; }
.fadein.d4 { animation-delay: .55s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fadein {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-slide,
  .hero-slide img,
  .hero-cta,
  .hero-cta svg,
  .hero-arrow {
    transition-duration: .01ms;
  }
  .hero-slide.is-active img,
  .hero-progress span,
  .hero-scroll-line::after {
    animation: none;
  }
}
