/* ============================================================
   IVY + IRON — Salon Collective
   Pressed-botanical luxury: cream parchment, deep ivy greens,
   forged-iron darks. Fraunces (display) + Jost (body).
   ============================================================ */

:root {
  --cream: #F4EFE1;
  --cream-2: #ECE4CE;
  --cream-3: #E4DABF;
  --ink: #1D231C;
  --iron: #22251F;
  --iron-2: #2E322A;
  --iron-3: #191C16;
  --ivy-deep: #24452C;
  --ivy: #39603D;
  --ivy-mid: #4F7C4C;
  --sage: #8CAF6E;
  --brass: #C89B5E;
  --brass-2: #A87C4F;
  --line: rgba(29, 35, 28, 0.16);
  --line-light: rgba(244, 239, 225, 0.18);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Jost", "Avenir Next", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1240px, 92vw);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

::selection { background: var(--ivy); color: var(--cream); }

/* film grain */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1.5%, 1%); }
  50% { transform: translate(1%, -1.5%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ---------- shared ---------- */
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: clamp(6rem, 12vh, 10rem) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivy);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.4rem;
}
.eyebrow::before { content: ""; width: 3rem; height: 1px; background: var(--ivy); flex: none; }
.eyebrow-light { color: var(--sage); }
.eyebrow-light::before { background: var(--sage); }

.section-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 350;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.section-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  max-width: 44ch;
  color: color-mix(in srgb, var(--ink) 76%, transparent);
}

/* line-reveal helpers (JS masks these) */
.reveal-line { overflow: hidden; }
.reveal-line > span { display: inline-block; }
.split-lines .sl-line { display: block; overflow: hidden; }
.split-lines .sl-inner { display: block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.05em 2.4em;
  border-radius: 999px;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out), background-color 0.45s var(--ease-out), transform 0.3s var(--ease-out);
  isolation: isolate;
  cursor: pointer;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
}
.btn:hover::after { transform: scaleY(1); }
.btn:active { transform: scale(0.97); }

.btn-iron { background: linear-gradient(150deg, #3A3E35, var(--iron) 45%, #363A31); color: var(--cream); border-color: var(--iron); }
.btn-iron::after { background: var(--ivy-deep); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost::after { background: var(--ink); }
.btn-ghost:hover { color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream::after { background: var(--sage); }
.btn-cream:hover { color: var(--iron-3); }
.btn-ghost-light { border-color: var(--line-light); color: var(--cream); background: transparent; }
.btn-ghost-light::after { background: var(--cream); }
.btn-ghost-light:hover { color: var(--iron-3); }
.btn-lg { padding: 1.2em 3em; font-size: 0.88rem; }

/* ---------- leaves & vines ---------- */
.leaf { position: absolute; overflow: visible; will-change: transform; }
.leaf use { transform-origin: 50px 96px; }
.sway use {
  animation: sway var(--sway-dur, 5s) ease-in-out var(--sway-delay, 0s) infinite alternate;
}
@keyframes sway {
  from { transform: rotate(calc(var(--sway-amp, 6deg) * -1)) }
  to   { transform: rotate(var(--sway-amp, 6deg)) }
}

.vine-path { fill: none; stroke-linecap: round; }
.section-vine { position: absolute; pointer-events: none; }
.vine-leaf use { transform-origin: 50px 96px; }

/* ============================================================
   ENTRY — pushing through the ivy
   ============================================================ */
#entry {
  position: fixed; inset: 0; z-index: 9500;
  background: radial-gradient(120% 100% at 50% 40%, #223A28 0%, #16241A 60%, #0E170F 100%);
  overflow: hidden;
  cursor: pointer;
  /* safety: if JS never runs, get out of the way */
  animation: entry-bail 0.8s ease 5s forwards;
}
@keyframes entry-bail { to { opacity: 0; visibility: hidden; } }

.entry-foliage { position: absolute; inset: -12%; }
.entry-foliage[data-depth="fg"] { filter: blur(2px); }
.entry-foliage[data-depth="bg"] { filter: blur(0.5px) brightness(0.72); }

.entry-brand {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  color: var(--cream);
  z-index: 5;
  pointer-events: none;
}
.entry-kicker {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.55em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 72%, transparent);
  margin-bottom: 1.6rem;
}
.entry-word {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  letter-spacing: 0.04em;
}
.entry-plus { color: var(--sage); font-style: normal; }
.entry-line { width: clamp(120px, 22vw, 260px); height: 1px; margin: 1.8rem 0 1.4rem; background: rgba(244,239,225,0.25); overflow: hidden; }
.entry-line span { display: block; width: 100%; height: 100%; background: var(--brass); transform: scaleX(0); transform-origin: left; }
.entry-sub {
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.6em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 82%, transparent);
}
.entry-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(244,239,225,0.4);
  z-index: 5;
  opacity: 0;
}

/* ============================================================
   CURSOR
   ============================================================ */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor { display: block; position: fixed; inset: 0; pointer-events: none; z-index: 9600; }
  .cursor-dot {
    position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: var(--ivy); top: -3px; left: -3px;
  }
  .cursor-ring {
    position: absolute; width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--ivy) 55%, transparent);
    top: -19px; left: -19px;
    display: flex; align-items: center; justify-content: center;
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
                top 0.35s var(--ease-out), left 0.35s var(--ease-out),
                background-color 0.35s, border-color 0.35s;
  }
  .cursor-label {
    font-family: var(--font-body); font-size: 0.6rem; font-weight: 500;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--cream); opacity: 0; transition: opacity 0.25s;
  }
  .cursor.is-active .cursor-ring {
    width: 74px; height: 74px; top: -37px; left: -37px;
    background: color-mix(in srgb, var(--ivy-deep) 92%, transparent);
    border-color: transparent;
  }
  .cursor.is-active .cursor-label { opacity: 1; }
  .cursor.is-hidden { opacity: 0; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 8000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: background-color 0.5s, box-shadow 0.5s, padding 0.5s;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}
.nav-mark {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 400;
  letter-spacing: 0.02em;
}
.nav-mark em { color: var(--ivy); font-style: normal; padding-inline: 0.08em; }
.nav-leaf { width: 26px; height: 26px; transform: rotate(-14deg); }
.nav-links { display: flex; gap: clamp(1.2rem, 2.6vw, 2.4rem); }
.nav-links a {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.24em; text-transform: uppercase;
  position: relative; padding-block: 0.3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ivy);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-book { padding: 0.8em 1.8em; }

.nav-burger {
  display: none;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--line); border-radius: 50%;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer;
}
.nav-burger span { display: block; width: 16px; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease-out); }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 7900;
  background: linear-gradient(160deg, var(--iron-3), #1F2A1E);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.5s, visibility 0.5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; z-index: 2; }
.mobile-menu nav a:not(.btn) {
  font-family: var(--font-display); font-size: clamp(2rem, 8vw, 3rem);
  color: var(--cream); line-height: 1.1;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}
.mobile-menu.is-open nav a:not(.btn) { opacity: 1; transform: none; }
.mobile-menu nav a:not(.btn):hover { color: var(--sage); }
.mobile-menu nav .btn { margin-top: 1rem; opacity: 0; transition: opacity 0.5s 0.35s; align-self: center; }
.mobile-menu.is-open nav .btn { opacity: 1; }
.menu-vine { position: absolute; right: -40px; bottom: 0; height: 90%; opacity: 0.5; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: min(100svh, 1000px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  padding: 7rem 1rem 5rem;
  background:
    radial-gradient(90% 60% at 50% 8%, color-mix(in srgb, var(--cream-2) 70%, transparent), transparent 70%),
    var(--cream);
  overflow: hidden;
}
.hero-foliage { position: absolute; inset: 0; pointer-events: none; }
.hero-vine { position: absolute; top: 0; height: 105%; width: auto; pointer-events: none; opacity: 0.9; }
.hero-vine-left { left: clamp(-60px, -2vw, 0px); }
.hero-vine-right { right: clamp(-60px, -2vw, 0px); }

.hero-inner { text-align: center; position: relative; z-index: 3; }
.hero-kicker {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--ivy); margin-bottom: 2.2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(4.2rem, 15.5vw, 13.5rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  color: var(--ink);
  margin-bottom: 2.4rem;
}
.hero-word { display: block; }
.hero-letters { display: inline-block; }
.hero-letters .ch { display: inline-block; will-change: transform; }
.hero-plus {
  display: inline-block;
  color: var(--ivy);
  font-style: normal;
  font-weight: 480;
  font-size: 0.46em;
  vertical-align: 0.28em;
  margin-left: 0.1em;
}
.hero-tag {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  margin-bottom: 2.8rem;
}
.hero-cta { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  z-index: 3;
}
.hero-scroll-line { width: 1px; height: 56px; background: var(--line); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ""; position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%; background: var(--ivy);
  animation: scroll-drip 2.2s var(--ease-out) infinite;
}
@keyframes scroll-drip { 0% { top: -100%; } 60%, 100% { top: 100%; } }
.hero-scroll-txt { font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: color-mix(in srgb, var(--ink) 55%, transparent); }

/* ============================================================
   RIBBON
   ============================================================ */
.ribbon {
  background: linear-gradient(120deg, #2B2F27, var(--iron-3) 55%, #2B2F27);
  color: var(--cream-2);
  transform: rotate(-1.4deg) scale(1.04);
  margin-block: clamp(-1rem, -1vw, -0.5rem);
  padding: 1.05rem 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 25, 18, 0.18);
  position: relative; z-index: 4;
}
.ribbon-track {
  display: flex; width: max-content;
  animation: ribbon-scroll 36s linear infinite;
}
.ribbon-track span {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1.05rem; letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap;
}
@keyframes ribbon-scroll { to { transform: translateX(-33.3333%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); overflow: clip; }
.about-vine { left: clamp(-30px, 1vw, 40px); top: 4%; height: 92%; opacity: 0.55; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about-media { position: sticky; top: 12vh; }
.about-frame { position: relative; }
.about-frame img {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover;
  border-radius: 999px 999px 12px 12px;
  filter: saturate(0.94);
}
.about-frame-iron {
  position: absolute; inset: -14px;
  border: 1px solid color-mix(in srgb, var(--ink) 35%, transparent);
  border-radius: 999px 999px 14px 14px;
  pointer-events: none;
}
.about-frame-iron::before, .about-frame-iron::after {
  content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4A4E44, var(--iron-3));
}
.about-frame-iron::before { left: -4.5px; bottom: 28%; }
.about-frame-iron::after { right: -4.5px; bottom: 28%; }
.about-badge {
  position: absolute; right: -1.6rem; bottom: 2rem;
  background: var(--iron);
  color: var(--cream);
  border-radius: 50%;
  width: 132px; height: 132px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 18px 40px rgba(20, 25, 18, 0.3);
  transform: rotate(6deg);
}
.about-badge-num { font-family: var(--font-display); font-size: 2.1rem; line-height: 1; }
.about-badge-num i { font-style: normal; color: var(--sage); }
.about-badge figcaption { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 0.35rem; opacity: 0.8; }

.about-lede {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 300; font-style: italic;
  line-height: 1.4;
  color: var(--ivy-deep);
  margin-bottom: 1.6rem;
  max-width: 30ch;
}
.about-body p { max-width: 58ch; margin-bottom: 1.1rem; font-size: 1.03rem; }
.about-body em { color: var(--ivy-deep); }

.expertise {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2rem;
  margin: 2.4rem 0;
}
.expertise li { display: flex; gap: 0.9rem; align-items: flex-start; }
.chip-leaf { width: 30px; height: 30px; flex: none; transform: rotate(-12deg); margin-top: 0.15rem; }
.expertise strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; letter-spacing: 0.01em; margin-bottom: 0.2rem; }
.expertise span { font-size: 0.92rem; color: color-mix(in srgb, var(--ink) 68%, transparent); line-height: 1.5; display: block; }

.phia {
  border-block: 1px solid var(--line);
  padding: 1.3rem 0;
  margin-bottom: 2.2rem;
}
.phia-title { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--brass-2); margin-bottom: 0.5rem; }
.phia-pillars { font-family: var(--font-display); font-style: italic; font-size: 0.98rem; color: color-mix(in srgb, var(--ink) 80%, transparent); }
.phia-pillars span { color: var(--ivy); font-weight: 500; font-style: normal; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background:
    radial-gradient(70% 40% at 85% 0%, color-mix(in srgb, var(--cream-3) 55%, transparent), transparent 65%),
    linear-gradient(var(--cream-2), var(--cream));
}
.services-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem clamp(2rem, 4vw, 3.5rem);
}
.svc-col h3 {
  font-family: var(--font-display); font-weight: 450;
  font-size: 1.28rem; letter-spacing: 0.01em;
  display: flex; align-items: baseline; gap: 0.8rem;
  border-top: 1px solid var(--ink);
  padding-top: 1.1rem; margin-bottom: 0.9rem;
}
.svc-col h3 span { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.3em; color: var(--brass-2); }
.svc-col ul { list-style: none; }
.svc-col li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--ink) 84%, transparent);
}
.svc-col li:last-child { border-bottom: 0; }

.services-cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  display: grid; gap: 1.3rem; justify-items: center;
}
.services-cta p { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--ink) 70%, transparent); }
.services-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream); padding-bottom: 0; overflow: clip; }
.gallery-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.gallery-pin { position: relative; }
.gallery-track {
  display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 3rem);
  padding: 0 clamp(1.2rem, 6vw, 6rem) clamp(4rem, 8vh, 6rem);
  width: max-content;
}
.g-item {
  position: relative; flex: none;
  width: clamp(240px, 30vw, 420px);
  overflow: hidden;
  border-radius: 10px;
}
.g-item.g-tall { width: clamp(280px, 34vw, 480px); margin-top: clamp(2rem, 6vh, 4rem); }
.g-item img {
  width: 100%; aspect-ratio: 4/4.8; object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s;
  filter: saturate(0.96);
  transform: scale(1.02);
}
.g-item:hover img { transform: scale(1.08); filter: saturate(1.05); }
.g-item figcaption {
  position: absolute; left: 1.1rem; bottom: 1rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.02rem;
  color: var(--cream);
  text-shadow: 0 1px 14px rgba(15, 20, 12, 0.65);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out);
}
.g-item:hover figcaption { opacity: 1; transform: none; }
.g-item::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(transparent, rgba(20, 26, 17, 0.45));
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.g-item:hover::after { opacity: 1; }

/* mobile: swipe strip */
@media (max-width: 899px) {
  .gallery-pin { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .gallery-pin::-webkit-scrollbar { display: none; }
  .g-item { scroll-snap-align: center; }
  .g-item figcaption { opacity: 1; transform: none; }
  .g-item::after { opacity: 1; }
}

/* ============================================================
   REVIEWS — forged iron dark
   ============================================================ */
.reviews {
  background:
    radial-gradient(80% 55% at 50% 0%, rgba(74, 106, 66, 0.2), transparent 70%),
    linear-gradient(170deg, #23281F, var(--iron-3) 60%, #171B13);
  color: var(--cream);
  overflow: clip;
}
.reviews-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.reviews-head .eyebrow { justify-content: center; }
.reviews-head .eyebrow::after { content: ""; width: 3rem; height: 1px; background: var(--sage); flex: none; }
.reviews .section-title { color: var(--cream); }
.stars { display: flex; justify-content: center; gap: 0.45rem; margin-bottom: 0.9rem; }
.stars svg { width: 22px; height: 22px; fill: var(--brass); }
.reviews-sub { font-size: 0.92rem; letter-spacing: 0.06em; color: color-mix(in srgb, var(--cream) 62%, transparent); }

.review-rows { display: grid; gap: 1.6rem; }
.review-row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.review-row-track { display: flex; gap: 1.6rem; width: max-content; padding-block: 0.2rem; }
.review-row:hover .review-row-track { animation-play-state: paused !important; }

.review-card {
  width: clamp(300px, 30vw, 420px);
  background: linear-gradient(160deg, rgba(244, 239, 225, 0.055), rgba(244, 239, 225, 0.02));
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 1.7rem 1.8rem 1.4rem;
  flex: none;
  display: flex; flex-direction: column; gap: 1rem;
  backdrop-filter: blur(2px);
}
.review-card .rc-stars { color: var(--brass); font-size: 0.8rem; letter-spacing: 0.28em; }
.review-card blockquote {
  font-family: var(--font-display); font-weight: 300;
  font-size: 1.02rem; line-height: 1.55;
  color: color-mix(in srgb, var(--cream) 92%, transparent);
  flex: 1;
}
.review-card cite {
  font-style: normal; font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sage);
}

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--cream); overflow: clip; }
.visit-vine { right: clamp(-40px, 0.5vw, 20px); top: 6%; height: 88%; opacity: 0.5; }
.visit-grid {
  display: grid; grid-template-columns: minmax(320px, 1fr) minmax(300px, 520px);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.visit-address { font-style: normal; margin-bottom: 2rem; font-size: 1.05rem; }
.visit-place { font-family: var(--font-display); font-size: 1.2rem; font-weight: 450; margin-bottom: 0.4rem; }
.visit-links { display: flex; flex-direction: column; gap: 0.15rem; margin-top: 1rem; }
.visit-links a { width: fit-content; color: var(--ivy-deep); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.visit-links a:hover { border-color: var(--ivy-deep); }

.hours { border-collapse: collapse; width: 100%; max-width: 420px; margin-bottom: 2.4rem; }
.hours th, .hours td { text-align: left; padding: 0.62rem 0; border-bottom: 1px solid var(--line); font-weight: 300; font-size: 0.98rem; }
.hours th { font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.76rem; color: color-mix(in srgb, var(--ink) 70%, transparent); }
.hours td { text-align: right; font-family: var(--font-display); }
.hours td em { color: color-mix(in srgb, var(--ink) 45%, transparent); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--ivy-deep); font-weight: 500; }

.visit-map { position: sticky; top: 14vh; }
.map-frame {
  position: relative;
  border-radius: 999px 999px 14px 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 30%, transparent);
  box-shadow: 0 24px 60px rgba(25, 31, 22, 0.16);
}
.map-frame iframe {
  display: block; width: 100%; aspect-ratio: 4/4.4; border: 0;
  filter: sepia(0.28) saturate(0.82) hue-rotate(50deg) brightness(1.02);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  position: relative;
  background:
    radial-gradient(90% 80% at 50% 110%, rgba(66, 98, 60, 0.5), transparent 70%),
    linear-gradient(160deg, #26402A, #182B1C 65%, #12200F);
  color: var(--cream);
  padding: clamp(7rem, 14vh, 11rem) 0;
  text-align: center;
  overflow: hidden;
}
.cta-foliage { position: absolute; inset: 0; pointer-events: none; opacity: 0.85; }
.cta-inner { position: relative; z-index: 2; display: grid; justify-items: center; gap: 2rem; }
.cta-title {
  font-family: var(--font-display); font-weight: 320;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 1.02;
}
.cta-note { font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--cream) 60%, transparent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--iron-3); color: color-mix(in srgb, var(--cream) 80%, transparent); padding: 4.5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
  align-items: start;
}
.footer-logo { width: 110px; border-radius: 10px; margin-bottom: 1rem; opacity: 0.94; }
.footer-brand p { font-family: var(--font-display); font-style: italic; line-height: 1.5; }
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; justify-self: center; }
.footer-nav a { font-size: 0.8rem; letter-spacing: 0.26em; text-transform: uppercase; width: fit-content; transition: color 0.3s; }
.footer-nav a:hover { color: var(--sage); }
.footer-contact { display: grid; gap: 0.5rem; justify-items: start; font-size: 0.95rem; }
.footer-contact .btn { margin-top: 1rem; }
.footer-contact a:not(.btn):hover { color: var(--sage); }
.footer-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  padding-top: 1.6rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 45%, transparent);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 9400;
  background: rgba(14, 18, 11, 0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: min(86vw, 900px); max-height: 84vh; display: grid; gap: 0.9rem; justify-items: center; }
.lightbox img { max-height: 76vh; width: auto; max-width: 86vw; border-radius: 8px; object-fit: contain; }
.lightbox figcaption { font-family: var(--font-display); font-style: italic; color: var(--cream); }
.lightbox button {
  position: absolute;
  background: transparent; border: 1px solid var(--line-light); color: var(--cream);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox button:hover { background: var(--cream); color: var(--iron-3); }
.lb-close { top: 1.4rem; right: 1.4rem; font-size: 1.5rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .expertise { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { position: static; max-width: 440px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { position: static; max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { justify-self: start; }
  .hero-vine { opacity: 0.45; }
}
@media (max-width: 560px) {
  .nav-book { display: none; }
  .about-badge { width: 108px; height: 108px; right: 0.4rem; }
  .lb-prev, .lb-next { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #entry { display: none; }
  .gallery-pin { overflow-x: auto; }
  .review-row { padding-inline: 4vw; }
  .review-row-track { flex-wrap: wrap; width: auto; }
  .grain { animation: none; }
  .ribbon-track { animation: none; }
  .sway use { animation: none; }
  .hero-scroll-line::after { animation: none; }
  .review-row-track { animation: none !important; flex-wrap: wrap; width: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
