/* =========================================================================
   Salon G — Farragut, TN
   Design system: warm-greige suite, espresso millwork, hair as the only color.
   Display: Bodoni Moda (editorial Didone). Body: Hanken Grotesk.
   Signature: the IBE "bead row" hairline divider.
   ========================================================================= */

:root {
  /* Palette — derived from the room + the hair */
  --espresso:   #1F1813;   /* dark ground, millwork, ink */
  --cocoa:      #2C2018;   /* dark surface variant */
  --greige:     #E8E0D4;   /* light ground (the walls) */
  --greige-2:   #EFEAE0;   /* lighter card ground */
  --sand:       #D2C4AE;   /* muted surface / hairline */
  --caramel:    #B27A45;   /* signature accent (hair + wood), on dark / large */
  --caramel-lt: #CB9A63;   /* accent for small text on dark */
  --wood:       #7A5638;   /* accent dark variant — accent text on light */

  /* Inks */
  --ink:        #1F1813;
  --ink-muted:  #5C4F40;   /* >=4.5:1 on greige */
  --on-dark:    #ECE5D9;
  --on-dark-mut:#C3B49B;

  /* Type */
  --display: "Bodoni Moda", Didot, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --maxw: 1240px;
  --hairline: rgba(31, 24, 19, 0.16);
  --hairline-dark: rgba(236, 229, 217, 0.18);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--greige);
  color: var(--ink);
  line-height: 1.62;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

::selection { background: var(--caramel); color: #fff; }

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

/* ---------- Type scale ---------- */
.display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.06; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wood);
}
.eyebrow.on-dark { color: var(--caramel-lt); }

.lede { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem); color: var(--ink-muted); line-height: 1.55; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--dark { background: var(--espresso); color: var(--on-dark); }
.section--dark .lede { color: var(--on-dark-mut); }

/* ---------- Bead-row divider (signature) ---------- */
.beadrow { display: flex; align-items: center; gap: 0; height: 14px; width: 100%; }
.beadrow .thread { flex: 1; height: 1px; background: var(--sand); transform-origin: left; }
.beadrow.on-dark .thread { background: var(--hairline-dark); }
.beadrow .beads { display: flex; gap: 11px; padding-inline: 14px; }
.beadrow .beads i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--caramel); display: block;
}
.beadrow.center .thread:first-child { max-width: 100%; }
.beadrow.tight { max-width: 220px; }

/* draw-on animation */
.js .beadrow .thread { transform: scaleX(0); transition: transform 0.9s var(--ease); }
.js .beadrow .beads i { opacity: 0; transform: translateY(2px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.beadrow.in .thread { transform: scaleX(1); }
.beadrow.in .beads i { opacity: 1; transform: none; }
.beadrow.in .beads i:nth-child(2){ transition-delay:.08s } .beadrow.in .beads i:nth-child(3){ transition-delay:.16s }
.beadrow.in .beads i:nth-child(4){ transition-delay:.24s } .beadrow.in .beads i:nth-child(5){ transition-delay:.32s }
.beadrow.in .beads i:nth-child(6){ transition-delay:.40s } .beadrow.in .beads i:nth-child(7){ transition-delay:.48s }

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em;
  padding: 0.95em 1.7em; border: 1px solid var(--espresso);
  background: var(--espresso); color: var(--greige);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { background: var(--wood); border-color: var(--wood); color: #fff; }
.btn--ghost { background: transparent; color: var(--espresso); }
.btn--ghost:hover { background: var(--espresso); color: var(--greige); }
.btn--on-dark { background: var(--caramel); border-color: var(--caramel); color: #211710; }
.btn--on-dark:hover { background: var(--greige); border-color: var(--greige); color: var(--espresso); }
.btn--ghost-dark { background: transparent; border-color: var(--hairline-dark); color: var(--on-dark); }
.btn--ghost-dark:hover { background: var(--on-dark); color: var(--espresso); border-color: var(--on-dark); }

.tlink {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em;
  padding-bottom: 3px; border-bottom: 1px solid var(--hairline);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.tlink:hover { border-color: var(--wood); color: var(--wood); }
.tlink.on-dark { border-color: var(--hairline-dark); color: var(--on-dark); }
.tlink.on-dark:hover { border-color: var(--caramel-lt); color: var(--caramel-lt); }
.tlink .arw { transition: transform .25s var(--ease); }
.tlink:hover .arw { transform: translateX(4px); }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(0.85rem, 1.6vw, 1.4rem) var(--gutter);
  color: var(--on-dark);
  transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header::before { /* scrim for legibility over hero */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(20,15,11,0.55), rgba(20,15,11,0));
  opacity: 1; transition: opacity .35s var(--ease);
}
.site-header.solid {
  background: var(--greige); color: var(--ink);
  box-shadow: 0 1px 0 var(--hairline);
}
.site-header.solid::before { opacity: 0; }

.brand {
  font-family: var(--display); font-weight: 600;
  font-size: 1.18rem; letter-spacing: 0.28em; text-indent: 0.28em;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: clamp(1.3rem, 2.4vw, 2.6rem); }
.nav a.navlink {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; padding-block: 4px;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease); opacity: .8;
}
.nav a.navlink:hover::after { transform: scaleX(1); }
.nav .btn { padding: 0.7em 1.3em; }
.site-header:not(.solid) .nav .btn {
  background: transparent; border-color: rgba(236,229,217,0.5); color: var(--on-dark);
}
.site-header:not(.solid) .nav .btn:hover { background: var(--on-dark); color: var(--espresso); border-color: var(--on-dark); }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 22px; height: 1.5px; background: currentColor; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: currentColor;
  transition: transform .28s var(--ease), top .28s var(--ease);
}
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }

/* mobile panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: 60; background: var(--espresso); color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: center; gap: 0.4rem;
  padding: var(--gutter); transform: translateY(-100%); transition: transform .45s var(--ease);
  visibility: hidden;
}
.mobile-nav.open { transform: translateY(0); visibility: visible; }
.mobile-nav a { font-family: var(--display); font-size: clamp(2rem, 9vw, 3rem); padding: 0.25em 0; border-bottom: 1px solid var(--hairline-dark); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .m-close { position: absolute; top: 1.2rem; right: var(--gutter); width: 44px; height: 44px; font-size: 1.6rem; }
.mobile-nav .m-meta { margin-top: 2rem; font-size: 0.85rem; letter-spacing: .04em; color: var(--on-dark-mut); }

/* =========================================================================
   Hero — type-led editorial, dark
   ========================================================================= */
.hero {
  position: relative; background: var(--espresso); color: var(--on-dark);
  min-height: 100svh; display: grid; align-items: center;
  padding-top: 6rem; overflow: hidden;
}
.hero__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { max-width: 36ch; }
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero h1 {
  font-size: clamp(3.1rem, 2rem + 7.5vw, 6.6rem);
  line-height: 0.96; letter-spacing: -0.02em; font-weight: 600;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--caramel-lt); }
.hero__sub { margin-top: 1.7rem; max-width: 42ch; color: var(--on-dark-mut); font-size: clamp(1.02rem, 0.97rem + 0.4vw, 1.18rem); }
.hero__cta { margin-top: 2.3rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.hero__figure { position: relative; justify-self: end; width: 100%; max-width: 420px; }
.hero__figure img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 52% 38%;
  border: 1px solid var(--hairline-dark);
}
.hero__figure::after { /* thin caramel frame offset */
  content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--caramel);
  z-index: -1; opacity: .6;
}
.hero__figcap {
  position: absolute; left: 0; bottom: -2.2rem; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--on-dark-mut);
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-dark-mut);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__scroll i { width: 1px; height: 34px; background: linear-gradient(var(--caramel), transparent); display: block; }

/* hero ambient zoom */
.js .hero__figure img { transform: scale(1.001); transition: transform 9s ease-out; }
.hero.lit .hero__figure img { transform: scale(1.07); }

/* =========================================================================
   Ethos strip
   ========================================================================= */
.ethos { border-bottom: 1px solid var(--hairline); }
.ethos .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.ethos .item { position: relative; padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1rem,2vw,2rem); border-left: 1px solid var(--hairline); }
.ethos .item:first-child { border-left: none; padding-left: 0; }
.ethos .item .n { font-family: var(--display); font-size: 1.55rem; font-weight: 600; transition: color 0.25s var(--ease); }
.ethos .item .k { display: block; margin-top: 0.5rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.ethos .item::after { content: ""; position: absolute; left: clamp(1rem,2vw,2rem); right: clamp(1rem,2vw,2rem); top: 0; height: 2px; background: var(--caramel); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.ethos .item:first-child::after { left: 0; }
.js .ethos .item:hover .n { color: var(--wood); }
.js .ethos .item:hover::after { transform: scaleX(1); }

/* =========================================================================
   About
   ========================================================================= */
.about .grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.about__media { position: relative; width: 100%; max-width: 420px; margin-inline: auto; padding-bottom: 1.6rem; }
.about__media .store {
  display: block; width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: 60% 42%; border: 1px solid var(--hairline);
}
.about__media .portrait {
  position: absolute; left: -1.3rem; bottom: 0; width: 42%; aspect-ratio: 4/5;
  object-fit: cover; object-position: 50% 18%;
  border: 7px solid var(--greige); box-shadow: 0 14px 34px rgba(31, 24, 19, 0.32);
}
.about h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.3rem); margin-top: 1.1rem; max-width: 16ch; }
.about p { margin-top: 1.3rem; max-width: 52ch; }
.about p + p { margin-top: 1rem; }
.about .sig { margin-top: 1.8rem; font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--wood); }
.about .about__cta { margin-top: 1.8rem; }

/* =========================================================================
   Services — dark band
   ========================================================================= */
.services .head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.services h2 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.5rem); margin-top: 1.1rem; }
.services .note { margin-top: 1.2rem; max-width: 56ch; }
.menu { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 3.5vw, 3rem) clamp(2.5rem, 5vw, 4.5rem); }
.menu-cat { break-inside: avoid; }
.menu-cat__label { display: block; margin-bottom: 0.7rem; }
.menu-cat h3 { font-family: var(--display); font-weight: 500; font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.8rem); letter-spacing: 0; }
.menu-cat__note { font-size: 0.85rem; color: var(--on-dark-mut); margin-top: 0.25rem; }
.price-list { list-style: none; margin-top: 0.9rem; }
.price-row {
  position: relative; display: grid; grid-template-columns: 1fr auto; gap: 1.2rem; align-items: baseline;
  padding: 0.78rem 0; border-bottom: 1px solid var(--hairline-dark);
}
.price-list li:first-child .price-row, .price-row:first-child { border-top: 1px solid var(--hairline-dark); }
.price-row::before {
  content: ""; position: absolute; left: -14px; top: 1.18rem; width: 0; height: 1px;
  background: var(--caramel); transition: width 0.3s var(--ease);
}
.price-row:hover::before { width: 8px; }
.pl-name { font-size: 1.01rem; font-weight: 500; transition: color 0.25s var(--ease); }
.js .price-row:hover .pl-name { color: var(--caramel-lt); }
.js .price-row:hover .pl-price { color: var(--on-dark); }
.pl-name .pl-sub { color: var(--on-dark-mut); font-size: 0.82rem; font-weight: 400; }
.pl-meta { text-align: right; white-space: nowrap; }
.pl-price { color: var(--caramel-lt); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 1.01rem; transition: color 0.25s var(--ease); }
.pl-dur { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-mut); margin-top: 3px; }
.services .foot { margin-top: clamp(2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; }
.services .foot p { font-size: 0.85rem; color: var(--on-dark-mut); max-width: 44ch; }

/* =========================================================================
   Work / gallery
   ========================================================================= */
.work .head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(1.8rem, 3.5vw, 3rem); }
.work h2 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.5rem); margin-top: 1rem; }
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.5rem, 1vw, 0.9rem); }
.gallery figure { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  filter: saturate(1.02);
}
.js .gallery img { transition: transform 1.1s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 0.9rem 0.8rem; color: #fff;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: linear-gradient(to top, rgba(20,15,11,0.78), transparent);
  opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption { opacity: 1; transform: none; }
/* feature the first tile larger on wide screens */
.gallery figure:first-child { grid-row: span 1; }

/* =========================================================================
   Reels
   ========================================================================= */
.reels { background: var(--cocoa); color: var(--on-dark); }
.reels .head { text-align: center; max-width: 52ch; margin: 0 auto clamp(2rem,4vw,3.2rem); }
.reels h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); margin-top: 1rem; }
.reels .grid { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: clamp(1.5rem, 4vw, 3.5rem); justify-content: center; }
.reel { position: relative; }
.reel__frame { position: relative; background: #000; border: 1px solid var(--hairline-dark); overflow: hidden; }
.reel video { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; }
.reel__mute {
  position: absolute; right: 0.8rem; bottom: 0.8rem; z-index: 3;
  width: 42px; height: 42px; display: grid; place-items: center;
  background: rgba(20,15,11,0.6); color: #fff; border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(2px); transition: background .2s var(--ease);
}
.reel__mute:hover { background: var(--caramel); }
.reel__cap { margin-top: 1rem; display: flex; align-items: baseline; gap: 0.7rem; }
.reel__cap .t { font-family: var(--display); font-size: 1.15rem; }
.reel__cap .h { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-mut); }

/* =========================================================================
   Press
   ========================================================================= */
.press { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.press .wrap { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 3rem); flex-wrap: wrap; padding-block: clamp(2rem, 4vw, 3rem); text-align: center; }
.press .label { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-muted); }
.press .name { font-family: var(--display); font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.5rem); font-style: italic; }
.press .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--caramel); }

/* =========================================================================
   Visit / booking
   ========================================================================= */
.visit .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); }
.visit h2 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.5rem); margin-top: 1rem; }
.steps { margin-top: 2rem; display: grid; gap: 0; counter-reset: step; }
.steps li { list-style: none; display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.3rem 0; border-top: 1px solid var(--hairline); }
.steps li:last-child { border-bottom: 1px solid var(--hairline); }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-style: italic; color: var(--wood); font-size: 1.1rem;
  transition: color 0.25s var(--ease);
}
.js .steps li:hover::before { color: var(--caramel); }
.steps b { font-weight: 600; font-size: 1.08rem; transition: color 0.25s var(--ease); }
.js .steps li:hover b { color: var(--wood); }
.steps p { color: var(--ink-muted); margin-top: 0.2rem; font-size: 0.96rem; }
.visit .book-cta { margin-top: 2rem; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.visit .policy { margin-top: 1.4rem; font-size: 0.86rem; color: var(--ink-muted); max-width: 46ch; }

.infocard { background: var(--greige-2); border: 1px solid var(--hairline); padding: clamp(1.5rem, 3vw, 2.5rem); }
.infocard h3 { font-family: var(--body); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wood); }
.infocard .addr { font-family: var(--display); font-size: 1.25rem; line-height: 1.4; margin-top: 0.8rem; }
.infocard .contact { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.3rem; }
.infocard .contact a { display: inline-flex; width: fit-content; border-bottom: 1px solid transparent; transition: border-color .2s; }
.infocard .contact a:hover { border-color: var(--wood); }
.infocard .dirlink { margin-top: 1rem; }

.hours { margin-top: 1.8rem; border-top: 1px solid var(--hairline); }
.hours .row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.62rem 0.6rem; margin-inline: -0.6rem; border-bottom: 1px solid var(--hairline); font-size: 0.95rem; transition: background-color 0.2s var(--ease); }
.js .hours .row:hover { background: rgba(178, 122, 69, 0.07); }
.hours .row .d { letter-spacing: 0.04em; }
.hours .row .h { color: var(--ink-muted); font-variant-numeric: tabular-nums; }
.hours .row.closed .h { color: var(--sand); }
.hours .row.today { font-weight: 600; }
.hours .row.today .h { color: var(--wood); }
.hours .row.today .d::before { content: "•"; color: var(--caramel); margin-right: 0.5em; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--espresso); color: var(--on-dark); padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem; }
.site-footer .top { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.site-footer .wordmark { font-family: var(--display); font-weight: 600; font-size: clamp(3rem, 10vw, 7rem); letter-spacing: 0.06em; line-height: 0.9; }
.site-footer .tagline { color: var(--on-dark-mut); max-width: 30ch; font-size: 0.95rem; }
.site-footer .ig { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1rem; border-bottom: 1px solid var(--hairline-dark); padding-bottom: 3px; transition: border-color .2s, color .2s; }
.site-footer .ig:hover { color: var(--caramel-lt); border-color: var(--caramel-lt); }
.site-footer .bot {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.6rem; border-top: 1px solid var(--hairline-dark);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; letter-spacing: 0.04em; color: var(--on-dark-mut);
}
.site-footer .bot a:hover { color: var(--on-dark); }

/* =========================================================================
   Reveal animations (section-level, gated by .js)
   ========================================================================= */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .stagger.in > * { opacity: 1; transform: none; }
.js .stagger.in > *:nth-child(2){transition-delay:.07s} .js .stagger.in > *:nth-child(3){transition-delay:.14s}
.js .stagger.in > *:nth-child(4){transition-delay:.21s} .js .stagger.in > *:nth-child(5){transition-delay:.28s}

/* hero load sequence */
.js .hero [data-rise] { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .hero.lit [data-rise] { opacity: 1; transform: none; }
.js .hero.lit [data-rise="1"]{transition-delay:.05s} .js .hero.lit [data-rise="2"]{transition-delay:.18s}
.js .hero.lit [data-rise="3"]{transition-delay:.31s} .js .hero.lit [data-rise="4"]{transition-delay:.44s}
.js .hero.lit [data-rise="5"]{transition-delay:.57s}

@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .stagger > *, .js .hero [data-rise], .js .beadrow .thread, .js .beadrow .beads i,
  .js .hero__figure img, .js .gallery img { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1000px) {
  .ethos .wrap { grid-template-columns: repeat(2, 1fr); }
  .ethos .item:nth-child(3) { border-left: none; padding-left: 0; }
  .ethos .item { border-top: 1px solid var(--hairline); }
  .ethos .item:nth-child(-n+2) { border-top: none; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__figure { justify-self: start; max-width: 300px; margin-top: 0.5rem; }
  .hero__figcap { display: none; }
  .hero { min-height: auto; padding-block: 7.5rem 4rem; }
  .hero__scroll { display: none; }
  .about .grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__media { max-width: 360px; margin-inline: 0; }
  .about__media .portrait { left: 0; width: 44%; }
  .visit .grid { grid-template-columns: 1fr; }
  .menu { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 620px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .reels .grid { grid-template-columns: minmax(0, 320px); }
  .ethos .wrap { grid-template-columns: 1fr; }
  .ethos .item, .ethos .item:nth-child(3) { border-left: none; padding-left: 0; border-top: 1px solid var(--hairline); }
  .ethos .item:first-child { border-top: none; }
  .press .name { font-size: 1.1rem; }
}
