/* ════════════════════════════════════════════════════════════════════
   BAR 1907 — KITCHEN & GIN BAR · ÅLESUND
   Editorial nettside · v2
   ════════════════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&family=Italiana&display=swap");

:root {
  /* Palette — deeper, warmer, more atmospheric than the v1 draft */
  --ink:           #0a0805;          /* near-black for hero & posters */
  --forest:        #102018;          /* deep forest panels */
  --forest-mid:    #16291e;
  --forest-edge:   #1d3526;
  --paper:         #f3e9d3;          /* warm cream — page base */
  --paper-deep:    #ebe0c4;          /* slightly darker cream */
  --paper-soft:    #f8f1de;
  --gold:          #b88a3c;          /* primary gold */
  --gold-light:    #d6b86a;          /* highlight gold */
  --gold-pale:     #ead9a3;
  --gold-glow:     rgba(214,184,106,0.10);
  --ink-soft:      #2a201a;
  --stone:         #6a5d4d;
  --hairline-gold: rgba(214,184,106,0.18);
  --hairline-ink:  rgba(10,8,5,0.12);

  /* Type */
  --serif:         "Cormorant Garamond", "Italiana", Georgia, serif;
  --serif-alt:     "Italiana", "Cormorant Garamond", Georgia, serif;
  --sans:          "Inter", system-ui, -apple-system, sans-serif;

  --ease:          cubic-bezier(0.22, 0.6, 0.16, 1);
  --maxw:          1240px;
}

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

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

/* ─────────────── TYPOGRAPHY UTILITIES ───────────── */
.serif        { font-family: var(--serif); }
.italic       { font-style: italic; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.on-dark { color: var(--gold-light); }
.eyebrow.on-light { color: var(--gold); }
.eyebrow-rule {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.eyebrow-rule::before,
.eyebrow-rule::after {
  content: "";
  height: 1px;
  width: 38px;
  background: currentColor;
  opacity: 0.55;
}

/* Diamond ornament row */
.orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.orn-line { height: 1px; width: 72px; background: var(--gold); opacity: 0.45; }
.orn-d { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.orn-d.small { width: 3px; height: 3px; opacity: 0.7; }
.orn.dark .orn-line { background: var(--gold-light); opacity: 0.45; }
.orn.dark .orn-d { background: var(--gold-light); }

/* ───────────────────── NAV ──────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 78px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  color: var(--paper);
  background: linear-gradient(to bottom, rgba(10,8,5,0.55), transparent);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,8,5,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--hairline-gold);
}
.nav-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  color: var(--gold-light);
}
.nav-mark-num {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative;
  padding: 0 4px;
}
.nav-mark-num::before, .nav-mark-num::after {
  content: ""; position: absolute; left: -10px; right: -10px;
  height: 1px; background: currentColor; opacity: 0.5;
}
.nav-mark-num::before { top: -6px; } .nav-mark-num::after { bottom: -6px; }
.nav-mark-sub {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.55);
  margin-top: 2px;
}
.nav-mark-row { display: flex; flex-direction: column; gap: 0; }

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.7);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold-light);
  transition: width 0.4s var(--ease), left 0.4s var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px 11px 22px;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold-light); color: var(--ink); }
.nav-cta .dot { width: 5px; height: 5px; background: currentColor; transform: rotate(45deg); }

.hamburger { display: none; }

/* ───────────────────── HERO ─────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* deep radial vignette */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(184,138,60,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 120% 80% at 50% 110%, rgba(0,0,0,0.7) 0%, transparent 60%);
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.9  0 0 0 0 0.7  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-frame {
  position: absolute;
  inset: 28px;
  border: 1px solid var(--hairline-gold);
  pointer-events: none;
  z-index: 3;
}
.hero-frame::before, .hero-frame::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.hero-frame::before { top: -10px; left: -10px; border-right: 0; border-bottom: 0; }
.hero-frame::after { bottom: -10px; right: -10px; border-left: 0; border-top: 0; }
.hero-frame .corner-tr,
.hero-frame .corner-bl {
  position: absolute; width: 18px; height: 18px; border: 1px solid var(--gold);
}
.hero-frame .corner-tr { top: -10px; right: -10px; border-left: 0; border-bottom: 0; }
.hero-frame .corner-bl { bottom: -10px; left: -10px; border-right: 0; border-top: 0; }

/* The jugendstil arch sits behind the logo, drawn in SVG */
.hero-arch {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -54%);
  width: min(640px, 78vw);
  height: auto;
  color: var(--gold);
  opacity: 0.55;
  z-index: 4;
  animation: archDrift 14s ease-in-out infinite;
}
@keyframes archDrift {
  0%, 100% { transform: translate(-50%, -54%) scale(1); }
  50%      { transform: translate(-50%, -55%) scale(1.012); }
}

.hero-stack {
  position: relative;
  z-index: 6;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 78px 1fr auto;
  padding: 0 40px 56px;
  text-align: center;
}

.hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 1s var(--ease) 0.4s forwards;
}
.hero-eyebrow span { color: rgba(214,184,106,0.7); }
.hero-eyebrow .dot { width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }

.hero-mark {
  width: min(540px, 70vw);
  margin: 6px 0 8px;
  filter: drop-shadow(0 4px 24px rgba(214,184,106,0.18));
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1.1s var(--ease) 0.55s forwards;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(243,233,211,0.78);
  letter-spacing: 0.005em;
  max-width: 580px;
  margin: 4px auto 0;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 1s var(--ease) 0.85s forwards;
}
.hero-tagline em { color: var(--gold-light); font-style: italic; }

.hero-divider {
  margin: 14px 0 8px;
  opacity: 0;
  animation: fade 1s var(--ease) 1.05s forwards;
}
.hero-divider .orn-line { width: 92px; }

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.5);
  opacity: 0;
  animation: fade 1.2s var(--ease) 1.2s forwards;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 12px; }
.hero-meta .sep { width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); display: inline-block; }

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: rise 1s var(--ease) 1.35s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn .arr {
  display: inline-block;
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s var(--ease);
}
.btn .arr::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 6px; height: 1px; background: currentColor;
  transform: rotate(35deg); transform-origin: right;
}
.btn:hover .arr { width: 24px; }

.btn-primary {
  background: var(--gold-light);
  color: var(--ink);
}
.btn-primary:hover { background: var(--gold); color: var(--paper); }

.btn-ghost {
  color: var(--gold-light);
  border-color: rgba(214,184,106,0.4);
}
.btn-ghost:hover { background: rgba(214,184,106,0.08); border-color: var(--gold-light); }

.btn-ink {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-ink:hover { background: var(--gold-light); color: var(--ink); }

.btn-ghost-ink {
  color: var(--ink);
  border-color: rgba(10,8,5,0.4);
}
.btn-ghost-ink:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.45);
  padding-top: 24px;
  border-top: 1px solid var(--hairline-gold);
  opacity: 0;
  animation: fade 1.4s var(--ease) 1.6s forwards;
}
.hero-foot a { color: var(--gold-light); }
.hero-foot .col { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.hero-foot .col:last-child { text-align: right; }
.hero-foot strong { color: var(--paper); font-weight: 500; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade {
  to { opacity: 1; }
}

/* ───────────────── MARQUEE STRIP ─────────────────── */
.marquee {
  background: var(--ink);
  color: var(--gold-light);
  border-top: 1px solid var(--hairline-gold);
  border-bottom: 1px solid var(--hairline-gold);
  overflow: hidden;
  padding: 18px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll 60s linear infinite;
  white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track .sep {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───────────────── MANIFESTO ─────────────────────── */
.manifesto {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  min-height: 80vh;
  background: var(--paper);
}
.manifesto-mark {
  background: var(--forest);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  overflow: hidden;
}
.manifesto-mark::before {
  content: ""; position: absolute; inset: 24px;
  border: 1px solid rgba(214,184,106,0.18);
}
.manifesto-mark::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(214,184,106,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-mark img {
  width: min(360px, 72%);
  filter: drop-shadow(0 6px 30px rgba(214,184,106,0.16));
  position: relative;
  z-index: 2;
}
.manifesto-mark .corner-stamp {
  position: absolute;
  top: 48px;
  left: 48px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 3;
}
.manifesto-mark .corner-stamp.br {
  top: auto; left: auto; bottom: 48px; right: 48px;
  text-align: right;
}
.manifesto-mark .corner-stamp em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(234,217,163,0.6);
  margin-top: 4px;
}

.manifesto-body {
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.manifesto-body::before {
  content: "";
  position: absolute;
  top: 24px; bottom: 24px; left: 0;
  width: 1px; background: var(--hairline-ink);
}
.manifesto-body .top-line {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}
.manifesto-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 48px 0 36px;
}
.manifesto-body h2 .sep {
  display: block;
  height: 1px;
  width: 100px;
  background: var(--gold);
  margin: 24px 0;
  opacity: 0.6;
}
.manifesto-body p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 16px;
}
.manifesto-body p.lead {
  font-size: 22px;
  line-height: 1.5;
}
.manifesto-body .bottom-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-ink);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}
.manifesto-body .bottom-line strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 22px;
  color: var(--ink);
}

/* ───────────────── SECTION HEADER ─────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
  padding-bottom: 0.08em;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 720px;
}
.section-head h2 em { color: var(--gold); font-style: italic; }
.section-head.on-dark h2 { color: var(--paper); }
.section-head.on-dark h2 em { color: var(--gold-light); }
.section-head p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--stone);
  max-width: 620px;
}
.section-head.on-dark p { color: rgba(243,233,211,0.6); }

/* ───────────────── GIN LIBRARY ────────────────────── */
.gin-section {
  background: var(--forest);
  color: var(--paper);
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}
.gin-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(214,184,106,0.025) 60px, rgba(214,184,106,0.025) 61px),
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(214,184,106,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.gin-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.gin-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 20px 0 28px;
}
.gin-intro h2 em { color: var(--gold-light); font-style: italic; }
.gin-intro p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(243,233,211,0.65);
  margin-bottom: 16px;
  max-width: 460px;
}
.gin-intro .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-gold);
}
.gin-intro .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gin-intro .stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.gin-intro .stat-num em { font-style: italic; }
.gin-intro .stat-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.45);
  font-weight: 500;
}

/* Gin grid right column */
.gin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline-gold);
  border: 1px solid var(--hairline-gold);
}
.gin-card {
  background: var(--forest);
  padding: 32px 28px 28px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.gin-card:hover { background: var(--forest-edge); }
.gin-card .gc-no {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(214,184,106,0.45);
}
.gin-card .gc-origin {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 12px;
}
.gin-card .gc-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin-bottom: 4px;
  line-height: 1.05;
}
.gin-card .gc-name em { font-style: italic; }
.gin-card .gc-region {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(243,233,211,0.5);
  margin-bottom: 18px;
}
.gin-card .gc-botanicals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.gin-card .gc-botanicals span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(214,184,106,0.22);
  color: rgba(243,233,211,0.55);
  border-radius: 40px;
}
.gin-card .gc-notes {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(243,233,211,0.55);
}
.gin-card .gc-rule {
  height: 1px;
  background: var(--hairline-gold);
  margin: 14px 0;
}
.gin-card .gc-foot {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.4);
  font-weight: 500;
}
.gin-card .gc-foot strong { color: var(--gold-light); font-weight: 500; }

/* Map of Norway with origin dots */
.gin-map {
  margin-top: 56px;
  border-top: 1px solid var(--hairline-gold);
  padding-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.gin-map-svg { color: var(--gold-light); }
.gin-map-legend h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  color: var(--paper);
  margin-bottom: 12px;
  line-height: 1.1;
}
.gin-map-legend h3 em { color: var(--gold-light); font-style: italic; }
.gin-map-legend p {
  font-family: var(--serif);
  font-size: 17px;
  color: rgba(243,233,211,0.6);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 460px;
}
.gin-map-legend ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.gin-map-legend li {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.55);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gin-map-legend li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(214,184,106,0.18);
}

/* ───────────────── KITCHEN ───────────────────────── */
.kitchen {
  background: var(--paper);
  padding: 140px 40px;
  position: relative;
}
.kitchen-inner { max-width: var(--maxw); margin: 0 auto; }

.kitchen-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: stretch;
  margin-bottom: 96px;
  position: relative;
}
.kitchen-feature-img {
  position: relative;
  background: var(--ink);
  min-height: 540px;
  overflow: hidden;
}
.kitchen-feature-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.kitchen-feature-img:hover img { transform: scale(1.04); }
.kitchen-feature-img::after {
  content: ""; position: absolute; inset: 16px;
  border: 1px solid rgba(214,184,106,0.35);
  pointer-events: none;
}
.kitchen-feature-img .img-stamp {
  position: absolute;
  bottom: 36px; left: 36px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  z-index: 2;
}

.kitchen-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
}
.kitchen-feature-body .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
}
.kitchen-feature-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 14px 0 20px;
}
.kitchen-feature-body h3 em { color: var(--gold); font-style: italic; }
.kitchen-feature-body .lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 460px;
}
.kitchen-feature-body p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--stone);
  max-width: 460px;
  margin-bottom: 16px;
}
.kitchen-feature-body .price-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 24px 0 32px;
  padding: 20px 0;
  border-top: 1px solid var(--hairline-ink);
  border-bottom: 1px solid var(--hairline-ink);
}
.kitchen-feature-body .price {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
}
.kitchen-feature-body .price em { font-style: italic; color: var(--gold); font-size: 24px; }
.kitchen-feature-body .price-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

/* Menu peek */
.menu-peek {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-ink);
  border: 1px solid var(--hairline-ink);
}
.menu-col {
  background: var(--paper-soft);
  padding: 40px 32px 36px;
}
.menu-col h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.menu-col h4 em { font-style: italic; color: var(--gold); }
.menu-col .sub {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.menu-col ul { list-style: none; }
.menu-col li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-ink);
}
.menu-col li:last-child { border-bottom: none; }
.menu-col .it-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.menu-col .it-name em {
  font-style: italic;
  font-size: 13px;
  color: var(--stone);
}
.menu-col .it-price {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

/* ───────────────── VOKTEREN ──────────────────────── */
.vokteren {
  background: var(--ink);
  color: var(--paper);
  padding: 160px 40px;
  position: relative;
  overflow: hidden;
}
.vokteren::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(214,184,106,0.06) 0%, transparent 65%),
    repeating-linear-gradient(-45deg, transparent 0, transparent 80px, rgba(214,184,106,0.018) 80px, rgba(214,184,106,0.018) 81px);
  pointer-events: none;
}
.vokteren-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vokteren-owl {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  color: var(--gold-light);
  filter: drop-shadow(0 0 60px rgba(214,184,106,0.18));
}
.vokteren-body .eyebrow { color: var(--gold-light); }
.vokteren-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin: 20px 0 28px;
}
.vokteren-body h2 em { color: var(--gold-light); font-style: italic; }
.vokteren-body p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(243,233,211,0.62);
  margin-bottom: 18px;
  max-width: 540px;
}
.vokteren-body blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--gold-light);
  margin: 32px 0;
  padding: 24px 0 24px 28px;
  border-left: 1px solid var(--gold);
  position: relative;
}
.vokteren-body blockquote::before {
  content: "“";
  position: absolute;
  top: -20px; left: 0;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.vokteren-body .by {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.4);
  font-weight: 500;
  font-style: normal;
  margin-top: 16px;
  display: block;
}

/* Heritage timeline strip */
.heritage-strip {
  max-width: var(--maxw);
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-gold);
  border: 1px solid var(--hairline-gold);
  position: relative;
}
.heritage-tile {
  background: var(--ink);
  padding: 36px 28px 28px;
  position: relative;
}
.heritage-tile .year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 14px;
}
.heritage-tile h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--paper);
  margin-bottom: 10px;
}
.heritage-tile p {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(243,233,211,0.48);
}

/* ───────────────── POSTER WALL ────────────────────── */
.posters {
  background: var(--paper-deep);
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}
.posters::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 4px, rgba(10,8,5,0.012) 4px, rgba(10,8,5,0.012) 5px);
  pointer-events: none;
}
.poster-wall {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.poster-stamp {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.poster-stamp.tl { top: -8px; left: 0; }
.poster-stamp.tr { top: -8px; right: 0; text-align: right; }
.poster-stamp.bl { bottom: -8px; left: 0; }
.poster-stamp.br { bottom: -8px; right: 0; text-align: right; }
.poster-stamp em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--ink);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.poster {
  position: relative;
  display: block;
  background: var(--ink);
  padding: 14px;
  box-shadow:
    0 24px 50px -28px rgba(10,8,5,0.45),
    0 6px 12px -6px rgba(10,8,5,0.18);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.poster::after {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid rgba(214,184,106,0.18);
  pointer-events: none;
}
.poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.poster:hover {
  transform: translateY(-6px) rotate(0deg) scale(1.01);
  box-shadow:
    0 36px 70px -28px rgba(10,8,5,0.55),
    0 10px 20px -6px rgba(10,8,5,0.25);
  z-index: 5;
}
.poster .caption {
  position: absolute;
  bottom: -34px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.poster .caption em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--stone);
  margin-left: 8px;
}

/* Asymmetric placement */
.poster.p1 { grid-column: 1 / span 4; aspect-ratio: 4/5; transform: rotate(-1.2deg); }
.poster.p2 { grid-column: 5 / span 5; aspect-ratio: 1/1; transform: rotate(0.6deg); margin-top: 24px; }
.poster.p3 { grid-column: 10 / span 3; aspect-ratio: 4/5; transform: rotate(1.4deg); margin-top: 48px; }
.poster.p4 { grid-column: 1 / span 3; aspect-ratio: 4/5; transform: rotate(1deg); margin-top: 70px; }
.poster.p5 { grid-column: 4 / span 5; aspect-ratio: 4/5; transform: rotate(-0.8deg); margin-top: 50px; }
.poster.p6 { grid-column: 9 / span 4; aspect-ratio: 1/1; transform: rotate(-1.2deg); margin-top: 80px; }

/* ───────────────── EVENTS / PLAYBILL ──────────────── */
.events {
  background: var(--forest);
  color: var(--paper);
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}
.events::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent 0, transparent 70px, rgba(214,184,106,0.022) 70px, rgba(214,184,106,0.022) 71px);
  pointer-events: none;
}
.events-inner { max-width: var(--maxw); margin: 0 auto; position: relative; }

.event-list {
  margin-top: 24px;
  border-top: 1px solid var(--hairline-gold);
}
.event-row {
  display: grid;
  grid-template-columns: 110px 1fr 240px 110px 100px;
  gap: 32px;
  padding: 32px 12px;
  align-items: center;
  border-bottom: 1px solid var(--hairline-gold);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
  position: relative;
}
.event-row::before {
  content: ""; position: absolute;
  left: 0; top: 50%; height: 0; width: 3px;
  background: var(--gold-light);
  transform: translateY(-50%);
  transition: height 0.4s var(--ease);
}
.event-row:hover { background: rgba(214,184,106,0.04); padding-left: 24px; }
.event-row:hover::before { height: 70%; }
.event-date {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold-light);
  line-height: 1;
  font-weight: 400;
}
.event-date em { font-style: italic; }
.event-date .mon {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.5);
  margin-top: 6px;
  font-weight: 500;
}
.event-title-c {
  display: flex; flex-direction: column; gap: 4px;
}
.event-title-c h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.005em;
  color: var(--paper);
  line-height: 1.15;
}
.event-title-c h3 em { font-style: italic; color: var(--gold-light); }
.event-title-c .ev-sub {
  font-size: 12.5px;
  color: rgba(243,233,211,0.55);
  line-height: 1.5;
  font-family: var(--serif);
  font-style: italic;
}
.event-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.55);
  font-weight: 500;
  line-height: 1.8;
}
.event-meta .lbl { color: rgba(243,233,211,0.3); }
.event-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-light);
  font-weight: 500;
}
.event-price em { font-style: italic; font-size: 14px; color: rgba(243,233,211,0.4); }
.event-cta {
  text-align: right;
}
.event-cta a {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.event-cta a .arr {
  display: inline-block;
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s var(--ease);
}
.event-cta a .arr::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 6px; height: 1px; background: currentColor;
  transform: rotate(35deg); transform-origin: right;
}
.event-cta a:hover .arr { width: 22px; }

/* ───────────────── VISIT / RESERVE ─────────────────── */
.visit {
  background: var(--paper);
  padding: 140px 40px 0;
}
.visit-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.visit-l h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  color: var(--ink);
  margin: 20px 0 28px;
}
.visit-l h2 em { font-style: italic; color: var(--gold); }
.visit-l p.lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 460px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  margin: 36px 0 36px;
  padding: 36px 0;
  border-top: 1px solid var(--hairline-ink);
  border-bottom: 1px solid var(--hairline-ink);
}
.info-block .lbl {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.info-block .val {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
}
.info-block .val em { font-style: italic; color: var(--stone); font-size: 16px; display: block; margin-top: 4px; }

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  border-bottom: 1px dashed var(--hairline-ink);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li .d { color: var(--stone); }
.hours-list li.closed .t { color: var(--stone); font-style: italic; }

/* Right: reservation card + countdown */
.visit-r {
  position: relative;
}
.reserve-card {
  background: var(--ink);
  color: var(--paper);
  padding: 40px;
  position: relative;
}
.reserve-card::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(214,184,106,0.22);
  pointer-events: none;
}
.reserve-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--paper);
  margin: 14px 0 6px;
  position: relative;
  z-index: 2;
}
.reserve-card h3 em { color: var(--gold-light); font-style: italic; }
.reserve-card .small {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.reserve-card .opening {
  margin-top: 24px;
  padding: 24px;
  background: var(--forest-mid);
  border: 1px solid var(--hairline-gold);
  position: relative;
  z-index: 2;
  text-align: center;
}
.reserve-card .opening .ev {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 14px;
}
.reserve-card .countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.reserve-card .cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border: 1px solid rgba(214,184,106,0.15);
}
.reserve-card .cd-n {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--paper);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.reserve-card .cd-l {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.45);
  font-weight: 500;
}
.reserve-card .reservation-meta {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.reserve-card .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reserve-card .field label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.5);
  font-weight: 500;
}
.reserve-card .field .v {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--paper);
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-gold);
  display: flex; justify-content: space-between; align-items: center;
}
.reserve-card .field .v .chev {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 0;
}
.reserve-card .reserve-btn {
  margin-top: 24px;
  width: 100%;
  text-align: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.reserve-card .fineprint {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.4);
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

/* Address card */
.visit-address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline-ink);
  border: 1px solid var(--hairline-ink);
  margin-top: 36px;
  background-color: var(--paper-soft);
}
.visit-addr-tile {
  background: var(--paper-soft);
  padding: 28px;
}
.visit-addr-tile .lbl {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.visit-addr-tile .val {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

/* Map silhouette */
.visit-map {
  margin-top: 80px;
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
  border-top: 1px solid var(--hairline-ink);
  padding-top: 80px;
}
.visit-map-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  text-align: center;
}
.visit-map-row .item {
  padding: 28px 16px;
}
.visit-map-row .icn {
  display: block;
  width: 36px; height: 36px;
  margin: 0 auto 14px;
  color: var(--gold);
}
.visit-map-row .item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.visit-map-row .item p {
  font-size: 13.5px;
  color: var(--stone);
  line-height: 1.6;
  font-family: var(--serif);
}

/* ───────────────── FOOTER ────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(243,233,211,0.55);
  padding: 100px 40px 40px;
  margin-top: 100px;
  position: relative;
}
footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-brand {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline-gold);
}
.footer-brand .b1 img {
  width: 180px;
  margin-bottom: 24px;
}
.footer-brand .b1 p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(243,233,211,0.5);
  line-height: 1.6;
  max-width: 280px;
}
.footer-brand h5 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 22px;
}
.footer-brand ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-brand a { font-size: 13.5px; transition: color 0.3s var(--ease); }
.footer-brand a:hover { color: var(--gold-light); }
.footer-brand .col p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(243,233,211,0.5);
  font-family: var(--serif);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.3);
  font-weight: 500;
}
.footer-bottom .center {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-light);
}

/* ════════════════════════════════════════════════════
   I KVELD — Live status bar
   ════════════════════════════════════════════════════ */
.tonight {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 40px;
  border-top: 1px solid var(--hairline-gold);
  border-bottom: 1px solid var(--hairline-gold);
  position: relative;
  overflow: hidden;
}
.tonight::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 50% 50%, rgba(214,184,106,0.08), transparent 70%);
  pointer-events: none;
}
.tonight-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto auto;
  gap: 32px;
  align-items: center;
  position: relative;
}
.tonight-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #6fcf97;
  box-shadow: 0 0 0 4px rgba(111,207,151,0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
.tonight-dot.closed { background: #c47a4a; box-shadow: 0 0 0 4px rgba(196,122,74,0.18); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(111,207,151,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(111,207,151,0.06); }
}
.tonight-status {
  display: flex; flex-direction: column; gap: 2px;
}
.tonight-status .lbl {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.tonight-status .val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--paper);
}
.tonight-tile {
  display: flex; flex-direction: column; gap: 2px;
  padding-left: 26px;
  border-left: 1px solid rgba(214,184,106,0.18);
}
.tonight-tile .lbl {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(214,184,106,0.65);
  font-weight: 500;
}
.tonight-tile .val {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--paper);
  white-space: nowrap;
}
.tonight-tile .val em { font-style: italic; color: var(--gold-light); }
.tonight-cta {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-light);
  font-weight: 600;
  padding: 11px 20px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background 0.3s var(--ease);
}
.tonight-cta:hover { background: var(--gold); color: var(--paper); }
.tonight-cta .arr {
  width: 14px; height: 1px; background: currentColor; position: relative;
}
.tonight-cta .arr::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 6px; height: 1px; background: currentColor;
  transform: rotate(35deg); transform-origin: right;
}

@media (max-width: 1100px) {
  .tonight-inner { grid-template-columns: auto 1fr; gap: 16px 24px; }
  .tonight-tile { grid-column: span 2; padding-left: 0; border-left: none; padding-top: 12px; border-top: 1px solid rgba(214,184,106,0.12); }
  .tonight-cta { grid-column: 1 / -1; justify-content: center; }
}

/* ════════════════════════════════════════════════════
   COCKTAIL PROGRAM
   ════════════════════════════════════════════════════ */
.cocktails {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  padding: 140px 40px;
  position: relative;
}
.cocktails-inner { max-width: var(--maxw); margin: 0 auto; }
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-ink);
  border: 1px solid var(--hairline-ink);
  margin-bottom: 48px;
}
.cocktail {
  background: var(--paper-soft);
  padding: 36px 32px 28px;
  position: relative;
  transition: background 0.4s var(--ease);
  cursor: pointer;
}
.cocktail:hover { background: var(--paper); }
.cocktail .ck-no {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.55;
}
.cocktail .ck-strength {
  display: flex; gap: 3px; margin-bottom: 14px;
}
.cocktail .ck-strength i {
  width: 14px; height: 4px;
  background: var(--gold);
  opacity: 0.25;
}
.cocktail .ck-strength i.on { opacity: 1; }
.cocktail h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 0.06em;
}
.cocktail h3 em { font-style: italic; color: var(--gold); }
.cocktail .ck-base {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 16px;
}
.cocktail .ck-ingredients {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-family: var(--serif);
}
.cocktail .ck-ingredients ul { list-style: none; }
.cocktail .ck-ingredients li {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed var(--hairline-ink);
}
.cocktail .ck-ingredients li:last-child { border-bottom: none; }
.cocktail .ck-ingredients .qty {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-style: normal;
  white-space: nowrap;
  margin-left: 12px;
}
.cocktail .ck-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--hairline-ink);
}
.cocktail .ck-foot .pr {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
}
.cocktail .ck-foot .pr em { font-style: italic; color: var(--gold); font-size: 14px; }
.cocktail .ck-foot .pair {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

/* Glassware illustration */
.glass-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--hairline-ink);
}
.glass-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 18px 8px;
}
.glass-cell svg { width: 56px; height: 84px; color: var(--gold); opacity: 0.78; }
.glass-cell .gn {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}
.glass-cell .gsub {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════
   APP — STEP ILLUSTRATION ROW
   ════════════════════════════════════════════════════ */
.app-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 920px;
  margin: 0 auto 60px;
  border-top: 1px solid var(--hairline-ink);
  border-bottom: 1px solid var(--hairline-ink);
}
.app-step {
  padding: 32px 28px;
  position: relative;
  text-align: center;
}
.app-step + .app-step { border-left: 1px solid var(--hairline-ink); }
.app-step .step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  color: var(--gold);
  opacity: 0.85;
}
.app-step .step-no {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  opacity: 0.6;
}
.app-step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.app-step h4 em { font-style: italic; color: var(--gold); }
.app-step p {
  font-size: 13.5px;
  color: var(--stone);
  line-height: 1.55;
  font-family: var(--serif);
  max-width: 220px;
  margin: 0 auto;
}
.app-step::after {
  /* connecting tick mark between steps */
}
@media (max-width: 800px) {
  .app-steps { grid-template-columns: 1fr; }
  .app-step + .app-step { border-left: none; border-top: 1px solid var(--hairline-ink); }
}

/* ════════════════════════════════════════════════════
   KLUBBEN 1907
   ════════════════════════════════════════════════════ */
.klubben {
  background: var(--forest);
  color: var(--paper);
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}
.klubben::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(214,184,106,0.08) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 80px, rgba(214,184,106,0.018) 80px, rgba(214,184,106,0.018) 81px);
  pointer-events: none;
}
.klubben-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.klubben-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin: 20px 0 24px;
}
.klubben-body h2 em { color: var(--gold-light); font-style: italic; }
.klubben-body p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(243,233,211,0.65);
  margin-bottom: 16px;
  max-width: 500px;
}
.klubben-perks {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.klubben-perks .perk {
  display: flex;
  gap: 18px;
  padding: 12px 0;
  align-items: baseline;
  border-bottom: 1px solid rgba(214,184,106,0.12);
}
.klubben-perks .perk-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  min-width: 28px;
}
.klubben-perks .perk-text {
  font-family: var(--serif);
  font-size: 17px;
  color: rgba(243,233,211,0.85);
  line-height: 1.4;
  flex: 1;
}
.klubben-perks .perk-text em { font-style: italic; color: var(--gold-light); }

.klubben-cards {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
.klubben-card {
  width: 320px;
  height: 200px;
  border-radius: 14px;
  padding: 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--serif);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  border: 1px solid rgba(214,184,106,0.3);
}
.klubben-card.kc1 {
  background: linear-gradient(135deg, #1a1408 0%, #0a0805 100%);
  color: var(--gold-light);
  transform: rotate(-6deg) translateX(-30px);
  z-index: 2;
}
.klubben-card.kc2 {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--ink);
  position: absolute;
  transform: rotate(4deg) translateX(40px) translateY(20px);
  z-index: 3;
  border-color: rgba(255,255,255,0.3);
}
.klubben-card .kc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.klubben-card .kc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  opacity: 0.7;
}
.klubben-card .kc-tier {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--sans);
}
.klubben-card .kc-logo {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.klubben-card .kc-logo .sub {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  display: block;
  margin-top: 2px;
  opacity: 0.7;
}
.klubben-card .kc-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.klubben-card .kc-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1;
}
.klubben-card .kc-since {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  opacity: 0.6;
}
@media (max-width: 1100px) {
  .klubben-inner { grid-template-columns: 1fr; gap: 60px; }
  .klubben-cards { padding: 60px 0; }
}

/* ════════════════════════════════════════════════════
   PRESS STRIP
   ════════════════════════════════════════════════════ */
.press {
  background: var(--paper-soft);
  padding: 64px 40px;
  border-top: 1px solid var(--hairline-ink);
  border-bottom: 1px solid var(--hairline-ink);
}
.press-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.press-l span.eyebrow { color: var(--gold); }
.press-l h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  color: var(--ink);
  margin-top: 14px;
}
.press-l h3 em { font-style: italic; color: var(--gold); }
.press-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline-ink);
  border: 1px solid var(--hairline-ink);
}
.press-quote {
  background: var(--paper);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.press-quote q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  quotes: "“" "”";
}
.press-quote q::before { color: var(--gold); }
.press-quote .by {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--hairline-ink);
}
.press-quote .by strong {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.press-quote .by em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--stone);
}
@media (max-width: 800px) {
  .press-inner { grid-template-columns: 1fr; gap: 32px; }
  .press-quotes { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   1907-APPEN — Mobile ordering + swipe-and-learn
   ════════════════════════════════════════════════════ */
.appsection {
  background: var(--paper-deep);
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}
.appsection::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(184,138,60,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(16,32,24,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.appsection-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}

.app-side h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 10px 0 18px;
}
.app-side h3 em { color: var(--gold); font-style: italic; }
.app-side p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--stone);
  margin-bottom: 20px;
  max-width: 380px;
}
.app-side.right p { margin-left: auto; }
.app-side.right { text-align: right; }
.app-side .feat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-ink);
}
.app-side.right .feat { border-top-color: var(--hairline-ink); }
.app-side .feat-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.app-side.right .feat-row { flex-direction: row-reverse; text-align: right; }
.app-side .feat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
  min-width: 28px;
}
.app-side .feat-row strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.app-side .feat-row span {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--stone);
}

/* Phone frame */
.app-phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.app-phone-wrap::before {
  content: "";
  position: absolute;
  inset: -40px -20px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(10,8,5,0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.phone {
  width: 322px;
  height: 670px;
  background: linear-gradient(160deg, #1a1408 0%, #0a0805 100%);
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.55),
    0 12px 24px -8px rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(214,184,106,0.25);
  position: relative;
  z-index: 1;
}
.phone::before {
  content: ""; position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 26px;
  background: #050402;
  border-radius: 0 0 16px 16px;
  z-index: 4;
}
.phone::after {
  content: ""; position: absolute;
  bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 4px;
  background: rgba(243,233,211,0.4);
  border-radius: 4px;
  z-index: 4;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0e1a12;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--paper);
  font-size: 13px;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 26px 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.phone-status .right-ic {
  display: inline-flex; gap: 5px; align-items: center;
}
.phone-status .right-ic svg { width: 14px; height: 9px; }

.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 22px 12px;
}
.phone-head .h-l {
  display: flex; flex-direction: column;
}
.phone-head .h-eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.phone-head .h-title {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--paper);
  margin-top: 2px;
}
.phone-head .h-title em { color: var(--gold-light); font-style: italic; }
.phone-head .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(214,184,106,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 14px;
  border: 1px solid rgba(214,184,106,0.3);
}

.phone-tabs {
  display: flex;
  padding: 0 22px;
  gap: 6px;
  border-bottom: 1px solid rgba(214,184,106,0.12);
}
.phone-tabs button {
  flex: 1;
  padding: 12px 6px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.45);
  font-weight: 500;
  position: relative;
  transition: color 0.3s var(--ease);
}
.phone-tabs button.active {
  color: var(--gold-light);
}
.phone-tabs button.active::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 18%; right: 18%;
  height: 2px;
  background: var(--gold-light);
}

.phone-body {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.phone-pane {
  position: absolute;
  inset: 0;
  padding: 18px 22px 16px;
  overflow-y: auto;
  scrollbar-width: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.phone-pane::-webkit-scrollbar { display: none; }
.phone-pane.active { opacity: 1; pointer-events: auto; }

/* — Pane: Meny — */
.pane-menu .mcats {
  display: flex; gap: 6px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pane-menu .mcats::-webkit-scrollbar { display: none; }
.pane-menu .mcats button {
  padding: 6px 12px;
  border: 1px solid rgba(214,184,106,0.22);
  border-radius: 30px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.65);
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.pane-menu .mcats button.active {
  background: var(--gold-light);
  color: var(--ink);
  border-color: var(--gold-light);
}

.mi {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(214,184,106,0.08);
  cursor: pointer;
  transition: padding 0.2s var(--ease);
}
.mi:active { padding-left: 4px; }
.mi-thumb {
  width: 54px; height: 54px;
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.mi-thumb::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, var(--c1, #2a3a22), var(--c2, #0a1208));
}
.mi-thumb.t1 { --c1: #3a2a18; --c2: #1a1208; }
.mi-thumb.t2 { --c1: #1e3a2a; --c2: #0a2014; }
.mi-thumb.t3 { --c1: #2a2418; --c2: #1a160c; }
.mi-thumb.t4 { --c1: #4a3018; --c2: #1a1004; }
.mi-thumb.t5 { --c1: #18283a; --c2: #0c1420; }
.mi-thumb::after {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid rgba(214,184,106,0.22);
  border-radius: 5px;
}
.mi-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mi-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--paper);
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.mi-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11.5px;
  color: rgba(243,233,211,0.5);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.mi-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.42);
  font-weight: 500;
}
.mi-foot .dot { width: 3px; height: 3px; background: currentColor; border-radius: 50%; opacity: 0.6; }
.mi-price {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 500;
  align-self: flex-start;
  white-space: nowrap;
}

/* — Pane: Oppdag (swipe-and-learn) — */
.pane-swipe {
  padding: 14px 22px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.swipe-hint {
  text-align: center;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 8px;
}
.swipe-counter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(243,233,211,0.55);
  text-align: center;
  margin-bottom: 10px;
}
.swipe-counter strong { color: var(--paper); font-weight: 500; font-style: normal; }

.swipe-stack {
  position: relative;
  flex: 1;
  min-height: 360px;
  margin-bottom: 12px;
  perspective: 1000px;
}
.scard {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, #1a2a1d 0%, #0e1a13 100%);
  border: 1px solid rgba(214,184,106,0.22);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: grab;
  user-select: none;
  touch-action: none;
  box-shadow:
    0 16px 40px -16px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(214,184,106,0.06);
  will-change: transform, opacity;
}
.scard.swiping { transition: none; cursor: grabbing; }
.scard:not(.swiping) { transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.scard.gone-l { transform: translateX(-140%) rotate(-22deg); opacity: 0; }
.scard.gone-r { transform: translateX(140%) rotate(22deg); opacity: 0; }

.scard .sc-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: rgba(214,184,106,0.45);
}
.scard .sc-origin {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.scard .sc-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin: 2px 0 -2px;
  line-height: 1.05;
}
.scard .sc-name em { font-style: italic; }
.scard .sc-region {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(243,233,211,0.48);
  margin-bottom: 6px;
}
.scard .sc-divider {
  height: 1px;
  background: rgba(214,184,106,0.18);
  margin: 4px 0;
}
.scard .sc-pair {
  display: flex; justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.4);
  font-weight: 500;
}
.scard .sc-pair strong { color: var(--gold-light); font-weight: 500; }
.scard .sc-bot {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin: 4px 0 6px;
}
.scard .sc-bot span {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(214,184,106,0.22);
  color: rgba(243,233,211,0.6);
  border-radius: 30px;
  font-weight: 500;
}
.scard .sc-tasting {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
  color: rgba(243,233,211,0.7);
  flex: 1;
}
.scard .sc-tasting::before {
  content: "“";
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  margin-right: 2px;
  vertical-align: -4px;
}
.scard .sc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(214,184,106,0.14);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.6);
  font-weight: 500;
}
.scard .sc-foot .pr {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold-light);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}
.scard.behind { transform: scale(0.94) translateY(8px); opacity: 0.7; pointer-events: none; }
.scard.behind-2 { transform: scale(0.88) translateY(16px); opacity: 0.35; pointer-events: none; }

/* Swipe indicators on top of card */
.scard .badge {
  position: absolute;
  top: 22px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  font-style: italic;
  pointer-events: none;
}
.scard .badge.skip {
  left: 16px;
  transform: rotate(-12deg);
  color: rgba(243,233,211,0.85);
  border: 2px solid rgba(243,233,211,0.5);
}
.scard .badge.add {
  right: 16px;
  transform: rotate(12deg);
  color: var(--gold-light);
  border: 2px solid var(--gold-light);
}

.swipe-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}
.swipe-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(243,233,211,0.05);
  border: 1px solid rgba(214,184,106,0.3);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.swipe-btn:hover { background: rgba(214,184,106,0.12); border-color: var(--gold-light); }
.swipe-btn.add { background: var(--gold-light); color: var(--ink); border-color: var(--gold-light); }
.swipe-btn.add:hover { background: var(--gold); color: var(--paper); }
.swipe-btn svg { width: 20px; height: 20px; }

/* — Pane: Bordet — */
.bord-h {
  display: flex; justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.55);
  margin-bottom: 12px;
  font-weight: 500;
}
.bord-h em { font-family: var(--serif); font-size: 14px; text-transform: none; letter-spacing: 0; color: var(--gold-light); }

.ord-item {
  display: flex; align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(214,184,106,0.08);
}
.ord-name {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--paper);
  flex: 1;
  line-height: 1.2;
}
.ord-name em { font-style: italic; font-size: 11px; color: rgba(243,233,211,0.45); display: block; margin-top: 2px; }
.ord-qty {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(214,184,106,0.6); font-weight: 500;
}
.ord-pr {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 500;
  white-space: nowrap;
}

.bord-sum {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(214,184,106,0.2);
}
.bord-sum-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.5);
  font-weight: 500;
}
.bord-sum-row.total {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--paper);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(214,184,106,0.18);
}
.bord-sum-row.total .pr { color: var(--gold-light); }

.split-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 14px;
}
.split-row .av {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(214,184,106,0.1);
  border: 1px solid rgba(214,184,106,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-light);
}

.bord-cta {
  margin-top: 14px;
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold-light);
  color: var(--ink);
  border-radius: 10px;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.25s var(--ease);
}
.bord-cta:hover { background: var(--gold); color: var(--paper); }
.bord-cta small {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  opacity: 0.7;
}

/* ════════════════════════════════════════════════════
   MAPBOX
   ════════════════════════════════════════════════════ */
.mapbox-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-top: 0;
  min-height: 460px;
}
#mapbox-map {
  background: var(--forest);
  border: 1px solid var(--hairline-gold);
  position: relative;
  overflow: hidden;
}
.map-card {
  background: var(--ink);
  color: var(--paper);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.map-card::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(214,184,106,0.18);
  pointer-events: none;
}
.map-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.04;
  color: var(--paper);
  margin: 14px 0 6px;
  position: relative; z-index: 2;
}
.map-card h3 em { color: var(--gold-light); font-style: italic; }
.map-card .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(243,233,211,0.55);
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.map-card .meta-list {
  display: flex; flex-direction: column;
  gap: 14px;
  margin: 24px 0;
  position: relative; z-index: 2;
}
.map-card .meta-list .row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(214,184,106,0.12);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,233,211,0.55);
  font-weight: 500;
}
.map-card .meta-list .row strong {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold-light);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}
.map-card .actions {
  display: flex; gap: 8px;
  position: relative; z-index: 2;
  margin-top: 12px;
  flex-wrap: wrap;
}
.map-card .actions a {
  flex: 1;
  min-width: 120px;
  text-align: center;
  justify-content: center;
  font-size: 10px;
  padding: 12px 16px;
}

/* Custom Mapbox marker styling */
.bar-marker {
  width: 56px; height: 56px;
  position: relative;
  cursor: pointer;
  transform-origin: center bottom;
}
.bar-marker .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(214,184,106,0.25);
  animation: markerPulse 2.4s ease-out infinite;
}
.bar-marker .pulse.d2 { animation-delay: 1.2s; }
.bar-marker .core {
  position: absolute;
  inset: 14px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(184,138,60,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  border: 2px solid #f3e9d3;
}
@keyframes markerPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.mapboxgl-popup-content {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 20px 22px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(214,184,106,0.3) !important;
  font-family: var(--serif) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3) !important;
}
.mapboxgl-popup-content::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid rgba(214,184,106,0.18);
  pointer-events: none;
}
.mapboxgl-popup-content h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.mapboxgl-popup-content p {
  font-size: 13px;
  color: rgba(243,233,211,0.6);
  margin: 0;
  line-height: 1.5;
}
.mapboxgl-popup-tip { border-top-color: rgba(214,184,106,0.4) !important; }
.mapboxgl-popup-close-button { color: var(--gold-light) !important; font-size: 22px !important; padding: 6px 10px !important; }
.mapboxgl-ctrl-attrib { background: rgba(10,8,5,0.6) !important; color: rgba(243,233,211,0.5) !important; }
.mapboxgl-ctrl-attrib a { color: rgba(214,184,106,0.7) !important; }

@media (max-width: 1100px) {
  .app-layout { grid-template-columns: 1fr; gap: 40px; }
  .app-side, .app-side.right { text-align: left; }
  .app-side.right p { margin-left: 0; }
  .app-side.right .feat-row { flex-direction: row; text-align: left; }
  .mapbox-wrap { grid-template-columns: 1fr; gap: 0; min-height: auto; }
  #mapbox-map { min-height: 420px; }
}
@media (max-width: 600px) {
  .appsection { padding: 80px 20px; }
  .phone { transform: scale(0.92); }
}

/* ───────────────── REVEAL ────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d2 { transition-delay: 0.1s; }
.reveal.d3 { transition-delay: 0.2s; }
.reveal.d4 { transition-delay: 0.3s; }

/* ───────────────── RESPONSIVE ────────────────────── */
@media (max-width: 1100px) {
  .gin-inner { grid-template-columns: 1fr; gap: 56px; }
  .gin-grid { grid-template-columns: 1fr 1fr; }
  .gin-map { grid-template-columns: 1fr; gap: 40px; }
  .kitchen-feature { grid-template-columns: 1fr; gap: 40px; }
  .kitchen-feature-img { min-height: 420px; }
  .vokteren-inner { grid-template-columns: 1fr; gap: 56px; }
  .vokteren-owl { max-width: 320px; }
  .visit-inner { grid-template-columns: 1fr; gap: 56px; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-mark { min-height: 50vh; }
  .manifesto-body { padding: 64px 40px; }
}
@media (max-width: 1100px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px;
  }
  .hamburger span { width: 22px; height: 1px; background: var(--gold-light); }
}

@media (max-width: 900px) {
  .hero-stack { padding: 0 20px 32px; }
  .hero-foot { flex-direction: column; gap: 14px; align-items: center; }
  .hero-foot .col, .hero-foot .col:last-child { text-align: center; }
  .menu-peek { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .event-row .event-meta, .event-row .event-price, .event-row .event-cta { display: none; }
  .heritage-strip { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-template-columns: 1fr 1fr; }
  .poster.p1, .poster.p2, .poster.p3, .poster.p4, .poster.p5, .poster.p6 {
    grid-column: 1 / -1; aspect-ratio: 4/5; margin-top: 24px; transform: none;
  }
  .visit-map-row { grid-template-columns: 1fr; }
  .gin-grid { grid-template-columns: 1fr; }
  .visit-address { grid-template-columns: 1fr; }
  .reserve-card .reservation-meta { grid-template-columns: 1fr; }
  .reserve-card .countdown { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .gin-section, .kitchen, .vokteren, .posters, .events, .visit { padding: 80px 20px; }
  .footer-inner { padding: 0; }
  footer { padding: 60px 20px 24px; }
  .footer-brand { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .manifesto-body { padding: 48px 24px; }
  .hero-tagline { font-size: 18px; }
  .gin-intro .stat-row { grid-template-columns: 1fr 1fr; gap: 24px; }
}
