/* ============================================================
   MAISON ANATOLE — Design System
   Derived entirely from the brand logomark:
   cream field · espresso serif monogram · brushed-gold line art
   ============================================================ */

:root {
  /* Palette — sampled from the logo */
  --cream:    #F6F0E3;
  --ivory:    #FCF8EE;
  --linen:    #ECE3D0;
  --stone:    #D8CDB6;
  --espresso: #3B2A17;
  --ink:      #241909;
  --gold:     #7E5F28;
  --brass:    #C6A46A;
  --olive:    #666047;

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Century Gothic", sans-serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(6rem, 12vw, 11rem);

  --ease-lux: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

html { overflow-x: clip; }
body {
  overflow-x: clip;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

::selection { background: var(--gold); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Film grain — the tactile paper feel of the logo field */
.grain {
  pointer-events: none;
  position: fixed;
  inset: -100%;
  z-index: 200;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (min-width: 1080px) and (prefers-reduced-motion: no-preference) {
  .grain { animation: grain 9s steps(10) infinite; }
}
@keyframes grain {
  0%,100% { transform: translate(0,0) }
  20% { transform: translate(-3%,2%) }
  40% { transform: translate(2%,-3%) }
  60% { transform: translate(-2%,-2%) }
  80% { transform: translate(3%,3%) }
}

/* ---------- Utility type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
}
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: .01em;
  color: var(--ink);
}

.divider-fleur {
  display: flex; align-items: center; justify-content: center;
  gap: 1.1rem; color: var(--gold);
}
.divider-fleur::before, .divider-fleur::after {
  content: ""; height: 1px; width: clamp(3rem, 8vw, 7rem);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-fleur::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .9rem;
  padding: 1.05rem 2.4rem;
  font-size: .74rem; font-weight: 400;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--espresso);
  border: 1px solid rgba(59,42,23,.45);
  border-radius: 100px;
  overflow: hidden;
  transition: color .5s var(--ease-lux), border-color .5s var(--ease-lux);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--espresso);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .55s var(--ease-lux);
  border-radius: inherit;
}
.btn:hover { color: var(--cream); border-color: var(--espresso); }
.btn:hover::before { transform: scaleY(1); }
.btn--gold { border-color: rgba(198,164,106,.6); color: var(--brass); }
.btn--gold::before { background: var(--brass); }
.btn--gold:hover { color: var(--ink); border-color: var(--brass); }
.btn .btn-arrow { transition: transform .5s var(--ease-lux); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.link-line {
  position: relative;
  padding-bottom: .3rem;
  font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--espresso);
}
.link-line::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform-origin: right; transition: transform .5s var(--ease-lux);
}
.link-line:hover::after { transform: scaleX(0); transform-origin: left; }

/* ---------- Preloader ---------- */
html.no-js .preloader { display: none; }
.preloader {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--cream);
}
.preloader-mark { width: clamp(110px, 16vw, 170px); opacity: 0; }
.preloader-line {
  position: absolute; bottom: 18vh;
  width: clamp(140px, 20vw, 240px); height: 1px;
  background: rgba(174,139,79,.25);
  overflow: hidden;
}
.preloader-line span {
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 250;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%,-50%);
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(174,139,79,.55);
  transition: width .35s var(--ease-lux), height .35s var(--ease-lux),
              background-color .35s, border-color .35s;
}
.cursor-ring.is-active {
  width: 62px; height: 62px;
  background: rgba(174,139,79,.08);
  border-color: rgba(174,139,79,.9);
}
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background-color .5s, box-shadow .5s, padding .5s;
}
.site-header.is-scrolled {
  padding: .65rem var(--gutter);
  background: rgba(246,240,227,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(59,42,23,.08);
}
.header-brand { display: flex; align-items: center; gap: .9rem; }
.header-brand img { width: 52px; mix-blend-mode: multiply; transition: width .5s; }
.site-header.is-scrolled .header-brand img { width: 42px; }
.header-wordmark {
  font-family: var(--serif); font-size: 1.18rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink); font-weight: 500;
}
.header-wordmark small {
  display: block; font-family: var(--sans); font-size: .55rem;
  letter-spacing: .5em; color: var(--gold); margin-top: .1rem;
}

.header-nav { display: flex; align-items: center; gap: 2.4rem; }
.header-nav a {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  position: relative; padding: .4rem 0;
}
.header-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%) scale(0);
  transition: transform .35s var(--ease-lux);
}
.header-nav a:hover::after, .header-nav a[aria-current="page"]::after { transform: translateX(-50%) scale(1); }
.header-cta { margin-left: 1rem; padding: .8rem 1.8rem; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 6px;
  padding: .6rem;
}
.nav-toggle span {
  width: 26px; height: 1px; background: var(--espresso);
  transition: transform .45s var(--ease-lux), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--espresso);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease-lux);
}
.mobile-menu.is-open { clip-path: inset(0 0 0% 0); }
.mobile-menu ul { text-align: center; display: grid; gap: 1.2rem; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(2rem, 7vw, 3rem);
  color: var(--cream); font-style: italic;
}
.mobile-menu a:hover { color: var(--brass); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(7rem, 14vh, 10rem) var(--gutter) 0;
  overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0; transition: opacity 1.6s ease 0.3s;
}
.hero-canvas.is-lit { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-canvas { display: none; } }
.hero-watermark {
  position: absolute; right: -6vw; top: 50%;
  transform: translateY(-52%);
  width: clamp(420px, 52vw, 880px);
  opacity: .5;
  mix-blend-mode: multiply;
  pointer-events: none;
  filter: sepia(.15);
  -webkit-mask-image: radial-gradient(closest-side, #000 40%, transparent 78%);
  mask-image: radial-gradient(closest-side, #000 40%, transparent 78%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1500px; width: 100%; margin: 0 auto; }
.hero-eyebrow { display: flex; align-items: center; gap: 1.2rem; margin-bottom: clamp(1.5rem, 3vh, 2.6rem); }
.hero-eyebrow::before { content: ""; width: clamp(2.5rem, 6vw, 5rem); height: 1px; background: var(--gold); }

.hero-title {
  font-size: clamp(3rem, 9.2vw, 8.6rem);
  max-width: 15ch;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }
.hero-title em {
  font-style: italic; font-weight: 300; color: var(--gold);
}

.hero-sub {
  margin-top: clamp(1.6rem, 3vh, 2.6rem);
  max-width: 42ch;
  font-size: 1.05rem;
  color: rgba(59,42,23,.78);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.4rem 2.8rem; align-items: center; margin-top: clamp(2.4rem, 5vh, 3.6rem); }
.hero-secondary { display: inline-flex; align-items: center; gap: .7rem; }
.hero-secondary svg { transition: transform .4s var(--ease-lux); }
.hero-secondary:hover svg { transform: translateX(4px); }

/* Steam line-art cup — same stroke language as the logo */
.hero-cup {
  position: absolute; z-index: 1;
  right: clamp(2rem, 9vw, 11rem); bottom: clamp(5rem, 14vh, 9rem);
  width: clamp(150px, 17vw, 250px);
  color: var(--gold);
}
.steam path {
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 60; stroke-dashoffset: 60;
  animation: steam 4.5s ease-in-out infinite;
  opacity: 0;
}
.steam path:nth-child(2) { animation-delay: 1.1s; }
.steam path:nth-child(3) { animation-delay: 2.3s; }
@keyframes steam {
  0%   { stroke-dashoffset: 60; opacity: 0; transform: translateY(6px); }
  25%  { opacity: .85; }
  70%  { opacity: .4; }
  100% { stroke-dashoffset: -60; opacity: 0; transform: translateY(-10px); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: var(--section) var(--gutter);
  text-align: center;
}
.manifesto-inner { max-width: 880px; margin: 0 auto; }
.manifesto p.lead {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
  margin: 2.6rem 0;
}
.manifesto p.lead em { color: var(--gold); }
.manifesto .word { display: inline-block; }

/* ============================================================
   SIGNATURE COLLECTION — editorial list w/ floating preview
   ============================================================ */
.collection {
  padding: var(--section) var(--gutter);
  background: var(--ivory);
  border-block: 1px solid rgba(59,42,23,.08);
}
.collection-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; max-width: 1400px; margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.collection-head h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); max-width: 14ch; }
.collection-list { max-width: 1400px; margin: 0 auto; }
.collection-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid rgba(59,42,23,.12);
  transition: padding-left .5s var(--ease-lux);
}
.collection-item:first-child { border-top: 1px solid rgba(59,42,23,.12); }
.collection-item:hover { padding-left: 1.4rem; }
.collection-item .idx {
  font-size: .7rem; letter-spacing: .3em; color: var(--gold);
}
.collection-item h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  color: var(--ink);
  transition: color .4s;
}
.collection-item:hover h3 { color: var(--gold); }
.collection-item .desc {
  font-size: .92rem; color: rgba(59,42,23,.65); max-width: 38ch;
}
.collection-item .price {
  font-family: var(--serif); font-size: 1.3rem; color: var(--espresso);
}
.hover-preview {
  position: fixed; z-index: 60;
  width: 260px; aspect-ratio: 3/4;
  border-radius: 130px 130px 6px 6px; /* arched — like a Parisian doorway */
  overflow: hidden;
  pointer-events: none;
  opacity: 0; transform: scale(.85) rotate(-3deg);
  transition: opacity .4s var(--ease-lux), transform .4s var(--ease-lux);
  box-shadow: 0 30px 60px rgba(36,25,9,.28);
}
.hover-preview.is-visible { opacity: 1; transform: scale(1) rotate(0deg); }
.hover-preview img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .3s;
}
.hover-preview img.is-current { opacity: 1; }
.collection-mobile-img { display: none; }

/* ============================================================
   FRENCH MEETS TURKISH — split editorial
   ============================================================ */
.duet {
  position: relative;
  padding: var(--section) 0;
  overflow: hidden;
}
.duet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1500px; margin: 0 auto;
  padding: 0 var(--gutter);
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
}
.duet-col { display: flex; flex-direction: column; gap: 1.6rem; }
.duet-col:last-child { margin-top: clamp(4rem, 9vw, 9rem); }
.duet-frame {
  overflow: hidden; border-radius: 4px;
  aspect-ratio: 4/5;
  background: var(--linen);
}
.duet-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.2s var(--ease-lux);
}
.duet-frame:hover img { transform: scale(1.03); }
.duet-col h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: var(--ink); }
.duet-col p { font-size: .98rem; color: rgba(59,42,23,.72); max-width: 44ch; }
.duet-amp {
  position: absolute; left: 50%; top: 42%;
  transform: translate(-50%,-50%);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(9rem, 22vw, 20rem);
  color: var(--gold); opacity: .18;
  pointer-events: none; z-index: 2; line-height: 1;
}
.duet-caption {
  display: flex; flex-direction: column; gap: .9rem;
  padding-top: .4rem;
}

/* ============================================================
   FRESH TODAY — parallax collage
   ============================================================ */
.fresh {
  position: relative;
  padding: var(--section) var(--gutter);
  background: var(--ivory);
  border-block: 1px solid rgba(59,42,23,.08);
  overflow: hidden;
}
.fresh-inner { position: relative; max-width: 1400px; margin: 0 auto; min-height: clamp(560px, 78vw, 820px); }
.fresh-copy { position: relative; z-index: 3; max-width: 30rem; }
.fresh-copy h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin: 1.2rem 0 1.4rem; }
.fresh-copy p { color: rgba(59,42,23,.72); }
.fresh-item { position: absolute; border-radius: 4px; overflow: hidden; box-shadow: 0 26px 60px rgba(36,25,9,.18); }
.fresh-item figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 1rem 1.2rem .9rem;
  background: linear-gradient(transparent, rgba(36,25,9,.72));
  color: var(--cream);
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  display: flex; justify-content: space-between; align-items: baseline;
}
.fresh-item figcaption small { font-family: var(--sans); font-style: normal; font-size: .68rem; letter-spacing: .28em; color: var(--brass); }
.fresh-item img { width: 100%; height: 100%; object-fit: cover; }
.fresh-1 { width: min(34vw, 420px); aspect-ratio: 3/4;  right: 6%;  top: 0; }
.fresh-2 { width: min(26vw, 330px); aspect-ratio: 4/5;  right: 34%; top: 34%; z-index: 2; }
.fresh-3 { width: min(30vw, 380px); aspect-ratio: 1/1;  right: 2%;  bottom: 2%; }
.fresh-clock {
  position: absolute; left: 0; bottom: 6%;
  display: flex; align-items: center; gap: 1.1rem;
  color: var(--olive);
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
}
.fresh-clock svg { color: var(--gold); }

/* ============================================================
   STORY — dark espresso interlude, the gold thread
   ============================================================ */
.story {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  padding: calc(var(--section) * 1.05) var(--gutter);
  overflow: hidden;
}
.story::before { /* faint bridge arc echoing the logomark */
  content: "";
  position: absolute; inset: auto 0 0 0; height: 55%;
  background:
    radial-gradient(120% 100% at 50% 115%, rgba(198,164,106,.14), transparent 60%);
  pointer-events: none;
}
.story-inner { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
.story .eyebrow { color: var(--brass); }
.story blockquote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 1.35; color: var(--ivory);
  margin: 2.8rem auto;
  max-width: 24ch;
}
.story blockquote em { color: var(--brass); }
.story cite {
  display: block; font-style: normal;
  font-size: .74rem; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(246,240,227,.55);
}
.gold-thread {
  width: 1px; height: clamp(4rem, 9vh, 7rem);
  margin: 0 auto 2.4rem;
  background: linear-gradient(var(--brass), transparent);
  transform-origin: top;
}
.story-route {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(1.2rem, 5vw, 3.4rem);
  margin-top: 3.4rem; flex-wrap: wrap;
}
.story-route .stop { display: grid; gap: .5rem; justify-items: center; }
.story-route .stop svg { color: var(--brass); opacity: .9; }
.story-route .stop span {
  font-size: .7rem; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(246,240,227,.7);
}
.story-route .leg {
  width: clamp(2.4rem, 7vw, 6rem); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,164,106,.6), transparent);
}
.story .btn { margin-top: 3.2rem; }

/* ============================================================
   BRUNCH — full-bleed cinematic
   ============================================================ */
.brunch { position: relative; height: min(92vh, 900px); overflow: hidden; }
.brunch-media { position: absolute; inset: 0; }
.brunch-media img { width: 100%; height: 118%; object-fit: cover; }
.brunch::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(36,25,9,.68) 8%, rgba(36,25,9,.15) 55%, transparent);
}
.brunch-copy {
  position: absolute; z-index: 2; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter);
  max-width: 1500px; margin: 0 auto;
  color: var(--cream);
}
.brunch-copy .eyebrow { color: var(--brass); }
.brunch-copy h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.08; max-width: 13ch;
  margin: 1.4rem 0 1.6rem; color: var(--ivory);
}
.brunch-copy p { max-width: 40ch; color: rgba(246,240,227,.85); margin-bottom: 2.4rem; }
.brunch-copy .btn { border-color: rgba(246,240,227,.5); color: var(--cream); align-self: flex-start; }
.brunch-copy .btn::before { background: var(--cream); }
.brunch-copy .btn:hover { color: var(--ink); border-color: var(--cream); }

/* ============================================================
   VOICES — single rotating testimonial
   ============================================================ */
.voices { padding: var(--section) var(--gutter); text-align: center; }
.voices-inner { max-width: 900px; margin: 0 auto; }
.voices .mark {
  font-family: var(--serif); font-size: 6rem; line-height: .4;
  color: var(--gold); display: block; margin-bottom: 2.2rem;
}
.voice-slide blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 400; line-height: 1.5; color: var(--ink);
}
.voice-slide cite {
  display: block; margin-top: 1.8rem; font-style: normal;
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--olive);
}
.voices-nav { display: flex; justify-content: center; gap: .8rem; margin-top: 2.6rem; }
.voices-nav button {
  width: 32px; height: 4px; padding: 8px 0; background-clip: content-box;
  background-color: rgba(59,42,23,.18);
  transition: background-color .4s;
}
.voices-nav button[aria-pressed="true"] { background-color: var(--gold); }

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  padding: var(--section) var(--gutter);
  background: var(--ivory);
  border-top: 1px solid rgba(59,42,23,.08);
}
.visit-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 7vw, 7rem);
  max-width: 1400px; margin: 0 auto;
  align-items: center;
}
.visit h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin: 1.2rem 0 1.6rem; }
.visit address {
  font-style: normal; font-family: var(--serif);
  font-size: 1.35rem; color: var(--ink); line-height: 1.6;
  margin-bottom: 2rem;
}
.hours { border-top: 1px solid rgba(59,42,23,.12); }
.hours li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(59,42,23,.12);
  font-size: .95rem;
}
.hours li span:first-child { letter-spacing: .18em; text-transform: uppercase; font-size: .74rem; color: var(--olive); }
.hours li span:last-child { font-family: var(--serif); font-size: 1.1rem; color: var(--espresso); }
.visit-media { position: relative; }
.visit-frame {
  border-radius: 220px 220px 6px 6px;
  overflow: hidden; aspect-ratio: 3/4; background: var(--linen);
}
.visit-frame img { width: 100%; height: 110%; object-fit: cover; }
.visit-stamp {
  position: absolute; left: -2.4rem; bottom: 3rem;
  width: 128px; height: 128px;
  animation: spin 22s linear infinite;
  color: var(--gold);
}
@keyframes spin { to { transform: rotate(360deg); } }
.visit-actions { display: flex; gap: 1.6rem; align-items: center; margin-top: 2.4rem; flex-wrap: wrap; }

/* ============================================================
   RESERVE CTA band
   ============================================================ */
.reserve {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: calc(var(--section) * .9) var(--gutter);
  overflow: hidden;
}
.reserve h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.1; color: var(--ivory);
  max-width: 18ch; margin: 1.6rem auto 2.6rem;
}
.reserve h2 em { font-style: italic; color: var(--brass); }
.reserve .eyebrow { color: var(--brass); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: rgba(246,240,227,.65);
  padding: 4.5rem var(--gutter) 2.4rem;
  border-top: 1px solid rgba(198,164,106,.18);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1400px; margin: 0 auto 3.5rem;
}
.footer-brand img { width: 96px; margin-bottom: 1.4rem; border-radius: 50%; }
.footer-brand p { font-size: .9rem; max-width: 30ch; }
.site-footer h4, .site-footer .foot-h {
  font-size: .7rem; letter-spacing: .36em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 1.4rem; font-weight: 400;
}
.site-footer ul { display: grid; gap: .7rem; }
.site-footer a { font-size: .92rem; transition: color .3s; }
.site-footer a:hover { color: var(--brass); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  border-top: 1px solid rgba(246,240,227,.12);
  padding-top: 2rem;
  font-size: .74rem; letter-spacing: .12em;
}
.footer-bottom a { color: var(--brass); }

/* ---------- Reveal defaults (JS enhances) ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
html.no-js .reveal, html.reduced .reveal { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .header-nav { display: none; }
  .nav-toggle { display: flex; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .preloader { display: none; }
  .hero-watermark { display: none; } /* 146KB decorative img — was the mobile LCP */
  .collection-item { grid-template-columns: auto 1fr auto; }
  .collection-item .desc { grid-column: 2 / -1; grid-row: 2; }
  .hover-preview { display: none; }
  .collection-mobile-img {
    display: block; grid-column: 1 / -1; grid-row: 3;
    border-radius: 4px; overflow: hidden; aspect-ratio: 16/9; margin-top: 1rem;
  }
  .collection-mobile-img img { width: 100%; height: 100%; object-fit: cover; }
  .duet-grid { grid-template-columns: 1fr; }
  .duet-col:last-child { margin-top: 0; }
  .duet-amp { display: none; }
  .fresh-inner { min-height: 0; display: grid; gap: 1.6rem; }
  .fresh-item { position: static; width: 100% !important; aspect-ratio: 4/3 !important; }
  .fresh-clock { position: static; margin-top: .5rem; }
  .hero-cup { display: none; }
  .hero-watermark { right: -30vw; opacity: .3; }
  .brunch { height: auto; min-height: 82vh; }
  .visit-stamp { left: auto; right: .4rem; width: 104px; height: 104px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .grain { display: none; }
}

/* ============================================================
   MOBILE-FIRST PERFORMANCE OVERRIDES
   Cheap paints only below 1080px: no backdrop blur, no blend
   modes, no masks, static grain, GPU-light everything.
   ============================================================ */
@media (max-width: 1079px) {
  .grain { inset: 0; opacity: .035; }
  .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(246, 240, 227, .97);
  }
  .hero-watermark {
    mix-blend-mode: normal;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
    opacity: .14;
  }
  .fresh-item, .duet-frame { box-shadow: 0 14px 30px rgba(36,25,9,.14); }
  .duet-frame img { transform: none; }
}

/* Hint the compositor only where GSAP animates transforms */
.hero-title .line > span,
.page-hero h1 .line > span { will-change: transform; }

/* ============================================================
   INNER PAGES — shared components
   ============================================================ */
.page-hero {
  padding: clamp(9rem, 20vh, 14rem) var(--gutter) clamp(3.5rem, 8vh, 6rem);
  text-align: center;
  position: relative;
}
.page-hero .gold-thread {
  background: linear-gradient(transparent, var(--gold));
  margin-bottom: 2rem;
}
.page-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  line-height: 1.06; color: var(--ink);
  max-width: 16ch; margin: 1.4rem auto 0;
}
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--gold); }
.page-hero .intro {
  max-width: 52ch; margin: 1.8rem auto 0;
  color: rgba(59,42,23,.72);
}
.page-hero .line { display: block; overflow: hidden; }
.page-hero .line > span { display: inline-block; }

.section-pad { padding: var(--section) var(--gutter); }
.wrap { max-width: 1400px; margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }

.section-head { margin-bottom: clamp(2.6rem, 6vw, 4.5rem); }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); margin-top: 1rem; }
.section-head.center { text-align: center; }
.section-head p.sub { max-width: 56ch; color: rgba(59,42,23,.7); margin-top: 1.2rem; }
.section-head.center p.sub { margin-inline: auto; }

.band-ivory { background: var(--ivory); border-block: 1px solid rgba(59,42,23,.08); }
.band-dark { background: var(--espresso); color: var(--cream); }
.band-dark .eyebrow { color: var(--brass); }
.band-dark h2, .band-dark h3 { color: var(--ivory); }

/* Editorial alternating rows */
.editorial-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.editorial-row + .editorial-row { margin-top: clamp(4rem, 9vw, 8rem); }
.editorial-row:nth-child(even) .editorial-media { order: 2; }
.editorial-media { overflow: hidden; border-radius: 4px; aspect-ratio: 4/5; background: var(--linen); }
.editorial-media.landscape { aspect-ratio: 4/3; }
.editorial-media.arch { border-radius: 240px 240px 6px 6px; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3.4vw, 2.8rem); color: var(--ink); margin: 1rem 0 1.2rem; }
.editorial-copy p { color: rgba(59,42,23,.74); max-width: 46ch; }
.editorial-copy p + p { margin-top: 1rem; }
.editorial-copy .link-line { display: inline-block; margin-top: 1.8rem; }

/* Timeline (Our Story) */
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 0; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(rgba(174,139,79,.0), rgba(174,139,79,.6) 8%, rgba(174,139,79,.6) 92%, transparent);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: calc(50% - 2.6rem);
  padding: 0 0 clamp(3rem, 7vw, 5rem);
}
.timeline-item:nth-child(odd) { text-align: right; }
.timeline-item:nth-child(even) { margin-left: auto; }
.timeline-item::before {
  content: ""; position: absolute; top: .55rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--gold);
}
.timeline-item:nth-child(odd)::before  { right: -3.05rem; }
.timeline-item:nth-child(even)::before { left: -3.05rem; }
.timeline-item .year {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--gold);
  display: block; margin-bottom: .4rem;
}
.timeline-item h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; color: var(--ink); margin-bottom: .5rem; }
.timeline-item p { font-size: .95rem; color: rgba(59,42,23,.7); }

.pull-quote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.4;
  color: var(--ink); text-align: center;
  max-width: 26ch; margin: 0 auto;
}
.pull-quote cite { display: block; font-style: normal; font-family: var(--sans); font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--olive); margin-top: 1.6rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 4vw, 3rem); max-width: 1200px; margin: 0 auto; }
.team-card { text-align: center; }
.team-card .frame { border-radius: 160px 160px 6px 6px; overflow: hidden; aspect-ratio: 3/4; background: var(--linen); margin-bottom: 1.4rem; }
.team-card .frame img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ink); }
.team-card .role { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin: .4rem 0 .8rem; }
.team-card p { font-size: .92rem; color: rgba(59,42,23,.68); max-width: 30ch; margin: 0 auto; }

/* Menu lists */
.menu-section + .menu-section { margin-top: clamp(3.5rem, 7vw, 5.5rem); }
.menu-section h3 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink); display: flex; align-items: baseline; gap: 1.4rem; margin-bottom: 1.8rem;
}
.menu-section h3::after { content: ""; flex: 1; height: 1px; background: rgba(59,42,23,.14); }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: .4rem 2rem; padding: 1.05rem 0; border-bottom: 1px solid rgba(59,42,23,.08); }
.menu-item:last-child { border-bottom: 0; }
.menu-item h4 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: var(--espresso); }
.menu-item h4 .tag { font-family: var(--sans); font-weight: 400; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(174,139,79,.4); border-radius: 100px; padding: .18rem .6rem; margin-left: .7rem; vertical-align: 2px; }
.menu-item .price { font-family: var(--serif); font-size: 1.15rem; color: var(--espresso); }
.menu-item p { grid-column: 1; font-size: .9rem; color: rgba(59,42,23,.62); max-width: 52ch; }
.band-dark .menu-item { border-color: rgba(246,240,227,.12); }
.band-dark .menu-item h4, .band-dark .menu-item .price { color: var(--ivory); }
.band-dark .menu-item p { color: rgba(246,240,227,.6); }

/* Process steps (roasting) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); max-width: 1300px; margin: 0 auto; counter-reset: step; }
.step { position: relative; padding-top: 1.6rem; border-top: 1px solid rgba(198,164,106,.35); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--brass);
  position: absolute; top: -0.85rem; left: 0; background: inherit; padding-right: .8rem;
}
.band-dark .step::before { background: var(--espresso); }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; margin-bottom: .7rem; }
.step p { font-size: .92rem; color: rgba(246,240,227,.65); }

/* Origins */
.origins { max-width: 1100px; margin: 0 auto; }
.origin {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem 2.5rem;
  align-items: baseline; padding: 1.6rem 0; border-bottom: 1px solid rgba(59,42,23,.12);
}
.origin:first-child { border-top: 1px solid rgba(59,42,23,.12); }
.origin .coords { font-size: .68rem; letter-spacing: .2em; color: var(--olive); }
.origin h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--ink); }
.origin p { grid-column: 2; font-size: .9rem; color: rgba(59,42,23,.65); max-width: 52ch; }
.origin .notes { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--gold); text-align: right; }

/* Gallery */
.masonry { columns: 3 300px; column-gap: 1.2rem; max-width: 1400px; margin: 0 auto; }
.masonry button { display: block; width: 100%; margin-bottom: 1.2rem; border-radius: 4px; overflow: hidden; break-inside: avoid; position: relative; }
.masonry img { width: 100%; transition: transform .8s var(--ease-lux), opacity .4s; }
@media (hover: hover) { .masonry button:hover img { transform: scale(1.04); } }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.2rem 1.1rem .9rem;
  background: linear-gradient(transparent, rgba(36,25,9,.65));
  color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 1.02rem;
  text-align: left; opacity: 0; transition: opacity .4s;
}
@media (hover: hover) { .masonry button:hover figcaption { opacity: 1; } }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1000px); }
.lightbox::backdrop { background: rgba(36,25,9,.9); backdrop-filter: blur(4px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: 4px; }
.lightbox-caption { color: var(--cream); font-family: var(--serif); font-style: italic; text-align: center; padding: 1rem 0 0; }
.lightbox-close {
  position: fixed; top: 1.2rem; right: 1.6rem;
  color: var(--cream); font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  padding: .8rem;
}

/* Events */
.event-list { max-width: 1100px; margin: 0 auto; }
.event-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 1.4rem 2.6rem; padding: clamp(1.8rem, 4vw, 2.6rem) 0;
  border-bottom: 1px solid rgba(59,42,23,.12);
}
.event-row:first-child { border-top: 1px solid rgba(59,42,23,.12); }
.event-row svg { color: var(--gold); }
.event-row h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--ink); }
.event-row p { grid-column: 2; font-size: .93rem; color: rgba(59,42,23,.68); max-width: 56ch; }
.event-row .cap { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--olive); white-space: nowrap; }

/* Info cards (visit) */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); max-width: 1300px; margin: 0 auto; }
.info-card { border: 1px solid rgba(59,42,23,.14); border-radius: 4px; padding: 2rem 1.8rem; background: var(--cream); }
.info-card svg { color: var(--gold); margin-bottom: 1.1rem; }
.info-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; color: var(--ink); margin-bottom: .7rem; }
.info-card p, .info-card li { font-size: .92rem; color: rgba(59,42,23,.7); }
.info-card ul { display: grid; gap: .45rem; }
.info-card li { display: flex; justify-content: space-between; gap: 1rem; }
.info-card li span:last-child { color: var(--espresso); }
.map-frame { border: 0; width: 100%; height: clamp(320px, 50vh, 480px); border-radius: 4px; filter: sepia(.35) saturate(.7); display: block; }

/* Forms */
.form-shell { max-width: 760px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 1.8rem; }
.field { display: grid; gap: .55rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--olive); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(59,42,23,.3);
  padding: .7rem 0; border-radius: 0;
  transition: border-color .3s;
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23AE8B4F' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right center; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }
.form-actions { margin-top: 2.4rem; display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.form-note { font-size: .8rem; color: var(--olive); }
.form-success {
  text-align: center; padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.form-success h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ink); margin: 1.4rem 0 .8rem; }
.form-success p { color: rgba(59,42,23,.7); max-width: 44ch; margin: 0 auto; }

/* Contact split */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 6rem); max-width: 1300px; margin: 0 auto; align-items: start; }
.contact-details { display: grid; gap: 2.2rem; }
.contact-details h3 { font-size: .7rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: .7rem; }
.contact-details a, .contact-details p { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); font-style: normal; }
.contact-details a:hover { color: var(--gold); }

/* Inner responsive */
@media (max-width: 820px) {
  .editorial-row { grid-template-columns: 1fr; }
  .editorial-row:nth-child(even) .editorial-media { order: 0; }
  .timeline::before { left: .3rem; transform: none; }
  .timeline-item { width: auto; padding-left: 2.2rem; text-align: left !important; margin-left: 0 !important; }
  .timeline-item::before { left: -.02rem !important; right: auto !important; }
  .steps { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
  .info-grid { grid-template-columns: 1fr; }
  .origin { grid-template-columns: 1fr auto; }
  .origin .coords { display: none; }
  .origin p { grid-column: 1 / -1; }
  .event-row { grid-template-columns: 1fr; }
  .event-row svg { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* Prose (Our Story) */
.prose { max-width: 68ch; margin: 0 auto; }
.prose p { color: rgba(59,42,23,.78); }
.prose p + p { margin-top: 1.4rem; }
.prose p:first-child::first-letter {
  font-family: var(--serif); font-size: 3.4em; line-height: .8;
  float: left; padding: .08em .12em 0 0; color: var(--gold);
}
.initial-frame {
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic;
  font-size: 3.2rem; color: var(--gold);
  background: linear-gradient(160deg, var(--linen), var(--stone));
}

@media (max-width: 380px) {
  .header-wordmark small { display: none; }
  .header-brand img { width: 40px; }
}

/* ============================================================
   RESERVATION ENGINE
   ============================================================ */
.bk-shell {
  max-width: 780px; margin: 0 auto;
  background: var(--ivory);
  border: 1px solid rgba(174,139,79,.22);
  border-radius: 2px;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  box-shadow: 0 30px 80px -60px rgba(36,25,9,.5);
}

/* progress rail */
.bk-progress {
  display: flex; gap: 0; margin: 0 0 clamp(1.8rem,4vw,2.6rem);
  padding: 0; list-style: none;
  counter-reset: step;
}
.bk-progress li {
  flex: 1; position: relative;
  font-family: var(--sans); font-size: .62rem; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(59,42,23,.4);
  padding-top: 1.5rem; text-align: center;
  counter-increment: step;
  transition: color .4s ease;
}
.bk-progress li::before {
  content: counter(step);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .6rem; letter-spacing: 0;
  border: 1px solid rgba(174,139,79,.4); background: var(--ivory);
  color: var(--gold);
  transition: all .4s ease; z-index: 2;
}
.bk-progress li::after {
  content: ""; position: absolute; top: .7rem; left: -50%;
  width: 100%; height: 1px; background: rgba(174,139,79,.25); z-index: 1;
}
.bk-progress li:first-child::after { display: none; }
.bk-progress li[aria-current="step"] { color: var(--ink); }
.bk-progress li[aria-current="step"]::before { border-color: var(--gold); background: var(--gold); color: var(--ivory); }
.bk-progress li.is-done::before {
  border-color: var(--gold); background: var(--gold); color: var(--ivory);
  content: "✓"; font-size: .55rem;
}
.bk-progress li.is-done::after { background: var(--gold); }

.bk-step-label { font-family: var(--sans); font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); }
.bk-step-title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 4.4vw, 2.6rem); color: var(--ink); line-height: 1.05; margin: .5rem 0 1.4rem; }
.bk-summary { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--espresso); margin-bottom: 1.6rem; }
.bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 1.8rem; }
.bk-nav { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.bk-nav .btn:disabled { opacity: .4; pointer-events: none; }

/* slot grid */
.bk-slots {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: .7rem;
}
.bk-slot {
  position: relative;
  font-family: var(--sans); font-size: .92rem; letter-spacing: .04em;
  padding: .85rem .4rem; background: var(--cream);
  border: 1px solid rgba(174,139,79,.28); color: var(--espresso);
  cursor: pointer; border-radius: 2px;
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}
.bk-slot small { display: block; font-size: .52rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: .2rem; }
.bk-slot:hover:not(:disabled) { border-color: var(--gold); transform: translateY(-1px); }
.bk-slot[aria-pressed="true"] { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }
.bk-slot[aria-pressed="true"] small { color: var(--brass); }
.bk-slot[data-status="full"], .bk-slot:disabled {
  opacity: .38; cursor: not-allowed; text-decoration: line-through;
  text-decoration-color: rgba(174,139,79,.5);
}
.bk-legend { margin-top: 1.4rem; font-family: var(--sans); font-size: .72rem; letter-spacing: .06em; color: rgba(59,42,23,.6); display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.bk-legend .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-left: 1rem; }
.bk-legend .dot:first-child { margin-left: 0; }
.dot-open { background: var(--gold); }
.dot-tight { background: #C98A3C; }
.dot-full { background: rgba(174,139,79,.35); }

/* confirmation */
.bk-confirm { text-align: center; }
.bk-confirm .divider-fleur { color: var(--gold); margin-bottom: .4rem; }
.bk-ref {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive); margin: 1.4rem 0;
}
.bk-ref strong { display: inline-block; margin-left: .5rem; font-weight: 500; letter-spacing: .18em; color: var(--ink); background: var(--cream); border: 1px solid rgba(174,139,79,.3); padding: .3rem .7rem; border-radius: 2px; }
.bk-confirm .form-note { max-width: 46ch; margin: 0 auto 1.6rem; }

@media (max-width: 560px) {
  .bk-row { grid-template-columns: 1fr; }
  .bk-progress li { font-size: .5rem; letter-spacing: .16em; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section) var(--gutter); }
.faq-inner { max-width: 1100px; margin: 0 auto; }
.faq-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.faq-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-top: .5rem; }
.faq-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.2rem) clamp(2.5rem, 5vw, 5rem);
}
.faq-item { border-top: 1px solid rgba(174,139,79,.24); padding-top: 1.4rem; }
.faq-item dt {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  color: var(--ink); margin-bottom: .7rem; line-height: 1.25;
}
.faq-item dd {
  margin: 0; color: rgba(59,42,23,.82); font-size: .98rem; line-height: 1.7;
}
@media (max-width: 780px) {
  .faq-list { grid-template-columns: 1fr; gap: 2rem; }
}


/* ============================================================
   WEXLAR STUDIOS — demo attribution badge + ownership signature
   Fingerprint: wexlar-maison-anatole-a7f3e9c214   © 2026 Wexlar Studios
   ============================================================ */
:root { --wx-signature: "wexlar-maison-anatole-a7f3e9c214"; }
.wx-badge {
  position: fixed; left: 16px; bottom: 16px; z-index: 99999;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 100px;
  font: 500 11px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  letter-spacing: .04em; text-decoration: none; white-space: nowrap;
  color: #fff; background: rgba(18,18,20,.72);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 6px 22px -10px rgba(0,0,0,.55);
  opacity: .55; transition: opacity .25s ease;
}
.wx-badge:hover, .wx-badge:focus-visible { opacity: 1; }
.wx-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #C8401A; flex: none; }
@media (max-width: 600px) { .wx-badge { font-size: 10px; padding: 6px 11px; left: 12px; bottom: 12px; } }
@media print { .wx-badge { display: none; } }
