/* ═══════════════════════════════════════════════════════════════
   WHY NOT? WINE BAR — Shared Stylesheet
   Stone & Vine palette · Cormorant Garamond + Inter
═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:          #140d09;
  --surface:     #1f150e;
  --surface-2:   #2a1c12;
  --gold:        #c4a063;
  --gold-light:  #ddc086;
  --cream:       #ece3d2;
  --muted:       #978670;
  --subtle:      #645340;
  --burg:        #93262f;
  --burg-light:  #bf3d49;
  --amber:       #c87f44;
  --white:       #f2ece1;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography scale ───────────────────────────────────────── */
.serif           { font-family: var(--font-serif); }
.serif-italic    { font-family: var(--font-serif); font-style: italic; }

h1, h2, h3, h4  { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }

.display {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
}
.heading-xl {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
}
.heading-lg {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--burg), var(--gold));
  flex-shrink: 0;
}
.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.body-lg  { font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: var(--cream); }
.body-md  { font-size: 0.95rem; font-weight: 300; line-height: 1.75; color: var(--muted); }
.body-sm  { font-size: 0.85rem; font-weight: 300; line-height: 1.7;  color: var(--muted); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  white-space: nowrap;
  /* a fill that rises from the bottom on hover — like wine in a glass.
     Implemented as a growing background layer so the label stays on top. */
  background-color: transparent;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% 0%;
}
.btn:hover { color: var(--bg); background-size: 100% 100%; letter-spacing: 0.2em; }

.btn-fill {
  color: var(--bg);
  border-color: var(--gold);
  background-color: var(--gold);            /* solid gold base … */
  background-image: linear-gradient(var(--burg), var(--burg)); /* … wine rises over it */
  background-position: 50% 100%;
  background-size: 100% 0%;
}
.btn-fill:hover { color: var(--white); background-size: 100% 100%; letter-spacing: 0.2em; }

.btn-ghost {
  border-color: rgba(181,168,130,0.35);
  color: var(--muted);
  background-image: linear-gradient(var(--gold), var(--gold));
}
.btn-ghost:hover { color: var(--bg); border-color: var(--gold); background-size: 100% 100%; letter-spacing: 0.2em; }

/* ── Navigation ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}
#nav.scrolled {
  background: rgba(22,21,18,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181,168,130,0.08);
}
.nav-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out);
}
.nav-logo:hover {
  animation: logoWiggle 0.4s var(--ease-out);
  text-shadow: 0 0 20px rgba(200,120,80,0.5), 0 0 40px rgba(138,32,48,0.2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,228,216,0.82);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { color: var(--gold) !important; }
.nav-reserve {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(181,168,130,0.5);
  color: var(--gold);
  transition: all 0.25s;
}
.nav-reserve:hover { background: var(--gold); color: var(--bg); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s var(--ease-out);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(22,21,18,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.nav-mobile-overlay.open { opacity: 1; pointer-events: all; }
.nav-mobile-overlay a {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s;
}
.nav-mobile-overlay.open a { opacity: 1; transform: translateY(0); }
.nav-mobile-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile-overlay.open a:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile-overlay.open a:nth-child(4) { transition-delay: 0.2s; }
.nav-mobile-overlay.open a:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile-overlay a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links, .nav-reserve { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: #0e0d0b;
  padding: 4rem 2rem 2rem;
  border-top: none;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8a2030, #b5a882, #6a9e6a, #7aacdc, #b5a882, #8a2030);
  background-size: 200% 100%;
  animation: footerShimmer 6s linear infinite;
}
@keyframes footerShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(181,168,130,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--subtle); font-weight: 300; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 400;
  font-family: var(--font-sans);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--subtle);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(181,168,130,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  transition: all 0.25s;
  border-radius: 2px;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; display: block; }

/* ── Footer awards / ratings strip ──────────────────────────── */
.footer-awards {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  padding: 2.25rem 0 1.75rem; margin-top: 2.5rem;
  border-top: 1px solid rgba(181,168,130,0.12);
}
.award-badge {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1.15rem; border: 1px solid rgba(181,168,130,0.18);
  border-radius: 9px; background: rgba(181,168,130,0.04);
  color: var(--muted); text-decoration: none; transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
a.award-badge:hover { border-color: var(--gold); color: var(--cream); transform: translateY(-2px); }
.award-laurel { width: 32px; height: 32px; color: var(--gold); flex-shrink: 0; }
.award-num { font-family: var(--font-serif); font-style: italic; font-size: 1.8rem; color: var(--gold); line-height: 1; }
.award-txt { display: flex; flex-direction: column; line-height: 1.35; }
.award-txt b { font-weight: 400; font-size: 0.86rem; color: var(--cream); }
.award-txt i { font-style: normal; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--subtle); margin-top: 0.1rem; }
@media (max-width: 520px) { .footer-awards { gap: 0.6rem; } .award-badge { padding: 0.6rem 0.85rem; } }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--subtle);
}
.footer-credit { font-style: italic; font-family: var(--font-serif); font-size: 0.85rem; }
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── Parallax sections ──────────────────────────────────────── */
.parallax-section {
  position: relative;
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
}
/* iOS fallback */
@supports (-webkit-touch-callout: none) {
  .parallax-section { background-attachment: scroll; }
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── Scroll reveal animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ── Section chrome ─────────────────────────────────────────── */
.section-pad { padding: 6rem 2rem; }
.section-pad-sm { padding: 4rem 2rem; }
.inner { max-width: 1100px; margin: 0 auto; }
.inner-sm { max-width: 760px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.section-header .eyebrow { margin-bottom: 0.75rem; }

/* ── Frosted glass ──────────────────────────────────────────── */
.frosted {
  background: rgba(22,21,18,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(181,168,130,0.15);
}

/* ── Badge pills ────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-weight: 400;
}
.badge-gold   { border: 1px solid rgba(181,168,130,0.5); color: #d4bf90; background: rgba(181,168,130,0.08); }
.badge-green  { border: 1px solid rgba(80,180,80,0.45);  color: #8acd8a; background: rgba(80,180,80,0.07); }
.badge-burg   { border: 1px solid rgba(180,60,80,0.5);   color: #e0809a; background: rgba(180,60,80,0.07); }
.badge-blue   { border: 1px solid rgba(80,150,210,0.45); color: #8ac4f0; background: rgba(80,150,210,0.07); }
.badge-malta  { border: 1px solid rgba(220,120,60,0.5);  color: #f0a870; background: rgba(220,120,60,0.07); }

/* ── WhatsApp floating button ───────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: pointer;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-btn svg { width: 26px; height: 26px; fill: white; }

/* ── Cursor (desktop) ─────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], select, input, textarea { cursor: none; }
}
#wn-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s;
  filter: drop-shadow(0 2px 8px rgba(138,32,48,0.5));
}
/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes logoWiggle {
  0%,100% { transform: rotate(0deg); }
  20%      { transform: rotate(-3deg); }
  60%      { transform: rotate(3deg); }
  80%      { transform: rotate(-2deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(8px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── Form elements ──────────────────────────────────────────── */
.field {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(181,168,130,0.15);
  border-bottom: 1px solid rgba(181,168,130,0.4);
  padding: 0.8rem 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 1.25rem;
}
.field:focus { border-bottom-color: var(--gold); }
.field::placeholder { color: var(--subtle); }
select.field { cursor: pointer; }
select.field option { background: var(--surface); }

/* ── Horizontal rule ────────────────────────────────────────── */
.rule { border: none; border-top: 1px solid rgba(181,168,130,0.12); margin: 3rem 0; }

/* ── Kinetic marquee band ───────────────────────────────────── */
.kinetic-band {
  padding: 2.5rem 0;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid rgba(181,168,130,0.06);
  border-bottom: 1px solid rgba(181,168,130,0.06);
}
.kinetic-row { display: flex; white-space: nowrap; overflow: hidden; }
.kinetic-track {
  display: flex; white-space: nowrap; flex-shrink: 0;
  animation: kinScroll var(--kin-dur, 12s) linear infinite;
}
.kinetic-track.rev { animation-direction: reverse; }
.kinetic-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  padding: 0 0.6rem;
  line-height: 1.15;
  flex-shrink: 0;
  color: rgba(232,228,216,0.1);
}
.kinetic-item.k-lit  { color: rgba(232,228,216,0.75); }
.kinetic-item.k-gold { color: rgba(181,168,130,0.55); }
.kinetic-item.k-dot  { color: rgba(138,32,48,0.7); padding: 0 0.2rem; }
@keyframes kinScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hero parallax layers ────────────────────────────────────── */
.hero-bg-layer {
  position: absolute;
  inset: -70px;
  background-image: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
  transition: transform 0.6s ease;
  z-index: 0;
}
.hero-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22,21,18,0.96) 0%,
    rgba(22,21,18,0.55) 45%,
    rgba(22,21,18,0.2) 100%
  );
}

/* ── Hero text split ─────────────────────────────────────────── */
.hero-split-wrap {
  overflow: hidden;
  position: relative;
}
.hero-split-top,
.hero-split-bot {
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              opacity  0.6s ease;
  will-change: transform;
}
#hero.split-active .hero-split-top { transform: translateY(-115%); opacity: 0; }
#hero.split-active .hero-split-bot { transform: translateY(115%);  opacity: 0; }

/* ── 3D card tilt + shine ────────────────────────────────────── */
.wine-cat-card,
.wine-card,
.wine-entry {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}
.card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

/* ── Stat aside copy wink ────────────────────────────────────── */
.stat-aside {
  display: block;
  font-size: 0.6rem;
  font-style: italic;
  color: var(--subtle);
  margin-top: 0.15rem;
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
}

/* ── Button transition (rising-fill hover) ───────────────────── */
.btn, .btn-fill, .btn-ghost {
  transition: background-size 0.5s var(--ease-out),
              color 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out),
              letter-spacing 0.4s var(--ease-out);
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
  .kinetic-track { animation-play-state: paused !important; }
  .hero-split-top, .hero-split-bot { transition: opacity 0.3s !important; }
  #hero.split-active .hero-split-top,
  #hero.split-active .hero-split-bot { transform: none !important; opacity: 0 !important; }
  .hero-underline path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   REBUILD 2026 — added components
═══════════════════════════════════════════════════════════════ */

/* ── Lenis smooth scroll ────────────────────────────────────── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ── Skip to content (a11y, WCAG 2.4.1) ─────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  background: var(--gold);
  color: var(--bg);
  padding: 0.8rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── Logo image in nav / footer ─────────────────────────────── */
.nav-logo-img {
  display: flex;
  align-items: center;
  height: 64px;
}
.nav-logo-img img {
  height: 30px;
  width: auto;
  transition: transform 0.4s var(--ease-out), filter 0.4s;
  filter: drop-shadow(0 0 0 transparent);
}
.nav-logo-img:hover img {
  transform: scale(1.05) rotate(-1.5deg);
  filter: drop-shadow(0 0 14px rgba(138,32,48,0.45));
}
.footer-logo-img img { height: 46px; width: auto; margin-bottom: 1rem; }

/* ── Static scene that stays put while the page scrolls over it ── */
.fixed-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.fixed-scene-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 42%;
  filter: saturate(1.35) sepia(22%) brightness(0.8) contrast(1.05);
  transform-origin: center;
  animation: kenBurns 38s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.18); }
}
/* warm candlelight that breathes — adds life without being slick */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 50% 62%, rgba(205,105,50,0.17) 0%, transparent 62%),
    radial-gradient(ellipse 32% 32% at 30% 70%, rgba(210,150,75,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 32% 32% at 72% 42%, rgba(150,38,38,0.11) 0%, transparent 55%);
  animation: candle 6s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes candle {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  45%      { opacity: 1;   transform: scale(1.04); }
  70%      { opacity: 0.82; transform: scale(0.99); }
}
.fixed-scene-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 55% 48%, rgba(140,36,28,0.24) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 30% 75%, rgba(180,108,46,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 112%, rgba(58,22,12,0.78) 0%, transparent 60%),
    linear-gradient(180deg, rgba(28,14,9,0.78) 0%, rgba(34,17,10,0.5) 45%, rgba(18,11,7,0.9) 100%);
}
/* Stacking: content rides above the fixed scene */
#nav { z-index: 1000; }
#hero, .kinetic-band, main, footer { position: relative; z-index: 1; }
#hero { background: transparent !important; }

/* Paper grain — tactile, hand-made feel */
.grain {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  /* static grain — the constant flicker animation was a major repaint cost */
}
/* Handwritten accents */
.hand { font-family: 'Caveat', cursive !important; text-transform: none !important; letter-spacing: 0 !important; }

/* Hand-drawn ink divider between sections */
.ink-rule {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 1.1rem 0;
  display: block;
  line-height: 0;
}
.ink-rule svg { width: 100%; height: 26px; display: block; }

/* ── FAQ (SEO + answer engines) ─────────────────────────────── */
#faq { position: relative; z-index: 1; background: var(--bg); padding: 6rem 2rem; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 3rem; }
.faq-head h2 { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 300; color: var(--cream); margin-top: 0.5rem; }
.faq-item { border-bottom: 1px solid rgba(181,168,130,0.12); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.4rem 0; font-family: var(--font-serif); font-style: italic;
  font-size: 1.2rem; font-weight: 300; color: var(--cream); transition: color 0.25s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-plus { flex-shrink: 0; font-family: var(--font-sans); font-size: 1.3rem; color: var(--gold); transition: transform 0.3s var(--ease-out); line-height: 1; }
.faq-item.open .faq-q .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: var(--muted); padding: 0 0 1.5rem; }
.faq-a p a { color: var(--gold); }

/* Hand-drawn underline under the hero headline (draws itself in) */
.hero-underline {
  display: block;
  width: min(70%, 360px);
  height: 16px;
  margin: 0.6rem auto 0;
}
.hero-underline path {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: inkDraw 1.1s 1.5s var(--ease-out) forwards;
}
@keyframes inkDraw { to { stroke-dashoffset: 0; } }

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, var(--bg) 1%, rgba(22,21,18,0.35) 45%, rgba(22,21,18,0.15) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(8,6,4,0.55) 100%);
}
.hero-logo-mark {
  display: block;
  width: clamp(220px, 38vw, 440px);
  height: auto;
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.55));
  animation: heroLogoIn 1.4s var(--ease-out) both;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Atmosphere video band ──────────────────────────────────── */
.atmos {
  position: relative;
  z-index: 1;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0c0b09;
}
.atmos-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/gallery/g2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  z-index: 0;
  filter: saturate(1.18) brightness(0.62) contrast(1.16);
}
@supports (-webkit-touch-callout: none) { .atmos-img { background-attachment: scroll; } }
/* dissolve the footage into the page on every edge — no hard rectangle */
.atmos::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 75% 58% at 50% 50%, rgba(8,6,4,0.5) 0%, transparent 72%);
}
.atmos-inner { position: relative; z-index: 2; max-width: 720px; padding: 5rem 2rem; }
/* wavy dividers sitting directly on the image edges — no dark gap */
.atmos-wave { position: absolute; left: 0; right: 0; z-index: 3; pointer-events: none; line-height: 0; }
.atmos-wave--top { top: -1px; }
.atmos-wave--bottom { bottom: -1px; transform: scaleY(-1); }
.atmos-wave svg { width: 100%; height: 26px; display: block; }
.atmos-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  text-shadow: 0 2px 30px rgba(0,0,0,0.7);
}
.atmos-sig {
  margin-top: 1.2rem;
  font-size: 1.9rem;
  color: var(--gold);
}

/* ── Cookie / GDPR banner ───────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background: rgba(14,13,11,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(181,168,130,0.15);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease-out);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 0.8rem; font-weight: 300; color: var(--muted); max-width: 560px; line-height: 1.5; }
.cookie-bar p a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-btn {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  transition: all 0.25s;
}
.cookie-btn.accept { background: var(--gold); color: var(--bg); border: 1px solid var(--gold); }
.cookie-btn.accept:hover { background: var(--gold-light); }
.cookie-btn.decline { background: transparent; color: var(--muted); border: 1px solid rgba(181,168,130,0.3); }
.cookie-btn.decline:hover { color: var(--cream); border-color: var(--gold); }

/* ── Form validation states ─────────────────────────────────── */
.field.invalid { border-bottom-color: var(--burg-light); }
.form-error {
  font-size: 0.7rem;
  color: var(--burg-light);
  margin: -0.9rem 0 1rem;
  min-height: 0.9rem;
  font-weight: 300;
}
.form-success {
  padding: 1.5rem;
  border: 1px solid rgba(106,158,106,0.4);
  background: rgba(106,158,106,0.07);
  color: #8acd8a;
  font-size: 0.9rem;
  font-weight: 300;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
}
