/* ============================================================
   PIZZA BJERGET — Vintage Italian Signage
   Bordeaux · Cremegul · Oliven · Stempel · Ornament
   ============================================================ */

:root {
  /* — Paper — */
  --cream: #ecd9a8;
  --cream-deep: #e1ca8c;
  --cream-soft: #f3e3b8;
  --cream-light: #f7eaca;
  --cream-paper: #faf1d8;

  /* — Ink — */
  --ink: #1c140b;
  --ink-soft: #3d2e1d;
  --ink-mute: #6b5638;

  /* — Bordeaux — */
  --wine: #6e1818;
  --wine-dark: #4e0d0d;
  --wine-bright: #8a2424;
  --wine-soft: #a23c34;

  /* — Olive — */
  --olive: #5d6e25;
  --olive-dark: #3f4d18;
  --olive-soft: #7a8c39;

  /* — Gold — */
  --gold: #b8862e;
  --gold-soft: #d1a14a;
  --gold-deep: #8e6620;

  /* — Type — */
  --f-display: "Bevan", "Bodoni Moda", Georgia, serif;
  --f-elegant: "Yeseva One", "DM Serif Display", Georgia, serif;
  --f-body: "EB Garamond", Georgia, "Times New Roman", serif;
  --f-script: "Allura", "Brush Script MT", cursive;
  --f-stamp: "Special Elite", "Courier New", monospace;

  /* — Layout — */
  --content-max: 1280px;
  --pad-x: clamp(1.25rem, 4vw, 3.5rem);
  --section-y: clamp(5rem, 9vw, 8.5rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-card: 0 24px 50px -28px rgba(28, 20, 11, 0.5),
                 0 4px 14px -6px rgba(28, 20, 11, 0.18);
  --shadow-lift: 0 32px 70px -34px rgba(28, 20, 11, 0.6),
                 0 12px 28px -10px rgba(28, 20, 11, 0.22);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(184, 134, 46, 0.10), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(110, 24, 24, 0.06), transparent 55%);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Vintage paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.42;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* ============================================================
   ANNOUNCE STRIP (top marquee)
   ============================================================ */
.announce {
  background: var(--wine);
  color: var(--cream-light);
  overflow: hidden;
  font-family: var(--f-stamp);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 0;
  position: relative;
  z-index: 50;
  border-bottom: 2px solid var(--wine-dark);
}
.announce::before, .announce::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.announce::before {
  background:
    linear-gradient(90deg, var(--wine) 0%, transparent 8%, transparent 92%, var(--wine) 100%);
  z-index: 2;
}
.announce-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.announce-track span { flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(236, 217, 168, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: rgba(28, 20, 11, 0.15);
  box-shadow: 0 10px 30px -22px rgba(28, 20, 11, 0.5);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
}

.brand { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.brand-emblem {
  width: 56px;
  height: 56px;
  color: var(--wine);
  flex-shrink: 0;
}
.brand-words { display: flex; flex-direction: column; line-height: 0.92; }
.brand-words-1 {
  font-family: var(--f-script);
  font-size: 28px;
  color: var(--wine);
  margin-bottom: -2px;
  transform: translateX(2px);
}
.brand-words-2 {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.primary-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 1.4rem;
  font-family: var(--f-stamp);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.primary-nav a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.primary-nav a:hover { color: var(--wine); }
.primary-nav a:hover::after { transform: scaleX(1); }
.nav-sep { color: var(--gold); font-size: 9px; opacity: 0.7; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 14px 28px;
  background: var(--wine);
  color: var(--cream-light);
  font-family: var(--f-stamp);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 2px solid var(--wine);
  position: relative;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--wine-bright);
}
.btn:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
  font-size: 14px;
  line-height: 1;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn--header { padding: 10px 20px; box-shadow: 3px 3px 0 var(--ink); }
.btn--xl { padding: 18px 36px; font-size: 13px; box-shadow: 5px 5px 0 var(--ink); }
.btn--xl:hover { box-shadow: 7px 7px 0 var(--ink); }
.btn--full { width: 100%; justify-content: center; }

.btn--cream {
  background: var(--cream-light);
  color: var(--wine);
  border-color: var(--cream-light);
}
.btn--cream:hover { background: var(--cream-paper); color: var(--wine-dark); }

/* Ghost link — handwritten "eller..." */
.ghost-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1.15rem;
  font-style: italic;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ghost-link .ghost-script {
  font-family: var(--f-script);
  font-style: normal;
  font-size: 1.7rem;
  color: var(--wine);
  border: 0;
  line-height: 1;
  transform: translateY(4px);
  margin-right: -0.1rem;
}
.ghost-link:hover { color: var(--wine); border-bottom-color: var(--wine); }
.ghost-link--light { color: var(--cream-light); border-bottom-color: var(--cream-light); }
.ghost-link--light .ghost-script { color: var(--gold-soft); }
.ghost-link--light:hover { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border: 1.5px solid var(--ink);
  background: var(--cream-light);
}
.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease), top 0.35s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.5rem var(--pad-x) 2rem;
  background: var(--cream);
  border-top: 1.5px solid rgba(28, 20, 11, 0.15);
}
.mobile-nav a {
  font-family: var(--f-elegant);
  font-size: 28px;
  color: var(--ink);
}
.mobile-nav .btn {
  font-family: var(--f-stamp);
  font-size: 12px;
  margin-top: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  inset: 1rem var(--pad-x) 1rem;
  background:
    repeating-linear-gradient(45deg,
      transparent 0,
      transparent 24px,
      rgba(110, 24, 24, 0.025) 24px,
      rgba(110, 24, 24, 0.025) 25px),
    var(--cream-paper);
  z-index: 0;
  border-radius: 2px;
}

.hero-frame {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
  border: 2px solid var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 8px;
  background: transparent;
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

/* Ornaments */
.ornament {
  display: block;
  width: min(360px, 70%);
  margin: 0 auto;
  color: var(--wine);
}
.ornament--top { margin-bottom: 1.6rem; }
.ornament--bottom { margin-top: 2.4rem; }

.hero-est {
  font-family: var(--f-stamp);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 1.8rem;
}

.hero-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.hero-title-overline {
  display: block;
  margin-bottom: 0.6rem;
}
.hero-script {
  font-family: var(--f-script);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--wine);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
  transform: rotate(-2deg);
}

.hero-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 2vw, 1.6rem);
  flex-wrap: wrap;
  font-size: clamp(3.2rem, 9.5vw, 8rem);
  line-height: 0.92;
  margin: 0.4rem 0 0.8rem;
}
.hero-word { display: inline-block; }
.hero-word--ornament {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 7vw, 90px);
}
.hero-amp {
  width: 100%;
  height: auto;
  color: var(--wine);
  transform: translateY(8px);
}

.hero-title-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.4rem;
  text-transform: none;
  letter-spacing: 0;
}
.hero-title-underline .rule {
  flex: 0 0 80px;
  height: 2px;
  background: var(--ink);
}
.hero-sub {
  font-family: var(--f-elegant);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink);
  letter-spacing: 0.05em;
}

.hero-tag {
  font-family: var(--f-body);
  font-size: clamp(1.1rem, 1.55vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 1.8rem auto 2.4rem;
  max-width: 56ch;
  font-style: italic;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Floating illustrations + seal */
.hero-illust {
  position: absolute;
  margin: 0;
  background: var(--cream-paper);
  padding: 8px 8px 28px;
  box-shadow: var(--shadow-lift);
  z-index: 4;
  width: 180px;
}
.hero-illust img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.95);
}
.hero-illust figcaption {
  font-family: var(--f-stamp);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  padding-top: 10px;
}
.hero-illust-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 70px;
  height: 22px;
  background: rgba(184, 134, 46, 0.5);
  border: 1px dashed rgba(28, 20, 11, 0.25);
}
.hero-illust--left {
  top: 8%;
  left: -1%;
  transform: rotate(-6deg);
}
.hero-illust--right {
  bottom: 6%;
  right: 0%;
  transform: rotate(5deg);
}

.hero-seal {
  position: absolute;
  top: 50%;
  right: -5%;
  width: 140px;
  height: 140px;
  color: var(--wine);
  z-index: 5;
  transform: translateY(-50%) rotate(8deg);
  pointer-events: none;
  opacity: 0.9;
  display: none; /* hidden on small screens; shown on big */
}
.hero-seal svg { width: 100%; height: 100%; }

@media (min-width: 1100px) {
  .hero-illust { width: 200px; }
  .hero-illust--left { left: -3%; }
  .hero-illust--right { right: -3%; }
  .hero-seal { display: block; }
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-head {
  max-width: 720px;
  margin: 0 0 clamp(3rem, 5vw, 5rem);
}
.section-head--center {
  margin: 0 auto clamp(3rem, 5vw, 5rem);
  text-align: center;
}

.section-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  color: var(--wine);
}
.section-head--center .section-ornament { justify-content: center; }
.ornament-line {
  flex: 0 0 60px;
  height: 1.5px;
  background: var(--wine);
}
.ornament-mark {
  font-family: var(--f-stamp);
  font-size: 14px;
  letter-spacing: 0.5em;
  color: var(--wine);
}

.section-kicker {
  font-family: var(--f-stamp);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 1rem;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 1.4rem;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.section-title .title-script {
  font-family: var(--f-script);
  color: var(--wine);
  font-size: 1.15em;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(0.08em);
  margin: 0 0.08em;
}

.section-lede {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0;
}
.section-head--center .section-lede { margin: 0 auto; }

/* ============================================================
   SIGNATURE PIZZAS
   ============================================================ */
.signatures {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.sig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.sig-card {
  position: relative;
  transition: transform 0.5s var(--ease);
}
.sig-card:hover { transform: translateY(-6px); }

.sig-card-frame {
  background: var(--cream-paper);
  border: 2px solid var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: outline-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.sig-card:hover .sig-card-frame {
  box-shadow: var(--shadow-lift);
  outline-color: var(--wine);
}

.sig-card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-deep);
  border-bottom: 1.5px solid var(--ink);
}
.sig-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.1) saturate(0.97);
  transition: transform 0.8s var(--ease);
}
.sig-card:hover .sig-card-media img { transform: scale(1.06); }

.sig-card-body {
  padding: 1.4rem 1.3rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  position: relative;
}
.sig-num {
  font-family: var(--f-stamp);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.2rem;
}
.sig-card-body h3 {
  font-family: var(--f-elegant);
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.sig-desc {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0.4rem 0 0;
}
.sig-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.8rem 0 0.4rem;
  color: var(--gold);
}
.sig-divider::before, .sig-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.sig-divider span { padding: 0 0.6rem; font-size: 11px; }
.sig-tag {
  font-family: var(--f-body);
  font-size: 1.04rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}
.sig-price {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--wine);
  margin: 0.8rem 0 0;
  letter-spacing: 0.02em;
}

.sig-card--featured .sig-card-frame {
  background: var(--wine);
  border-color: var(--wine-dark);
  outline-color: var(--wine);
}
.sig-card--featured .sig-card-media { border-bottom-color: var(--wine-dark); }
.sig-card--featured .sig-num { color: var(--gold-soft); }
.sig-card--featured h3 { color: var(--cream-light); }
.sig-card--featured .sig-desc,
.sig-card--featured .sig-tag { color: rgba(247, 234, 202, 0.82); }
.sig-card--featured .sig-divider { color: var(--gold-soft); }
.sig-card--featured .sig-price { color: var(--gold-soft); }
.sig-ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 3;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-stamp);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  transform: rotate(4deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.sig-foot {
  margin-top: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hand-note {
  font-family: var(--f-script);
  font-size: 2rem;
  color: var(--wine);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transform: rotate(-2deg);
}
.hand-note .arrow { font-size: 1.4rem; transform: translateY(2px); }

/* ============================================================
   STORY
   ============================================================ */
.story {
  background: var(--wine);
  color: var(--cream-light);
  padding: var(--section-y) var(--pad-x);
  position: relative;
  overflow: hidden;
  border-top: 4px double var(--wine-dark);
  border-bottom: 4px double var(--wine-dark);
}
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 134, 46, 0.18), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(28, 20, 11, 0.4), transparent 55%);
  pointer-events: none;
}

.story-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.story-art {
  position: relative;
  min-height: 600px;
}
.story-img {
  position: absolute;
  margin: 0;
  background: var(--cream-paper);
  padding: 10px 10px 36px;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.95);
}
.story-img--1 {
  width: 64%;
  aspect-ratio: 0.78;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
}
.story-img--2 {
  width: 50%;
  aspect-ratio: 0.85;
  bottom: 8%;
  right: -2%;
  transform: rotate(4deg);
}
.story-img figcaption { display: none; }

.story-decor {
  position: absolute;
  width: 110px;
  height: 160px;
  color: var(--olive-soft);
  opacity: 0.6;
  z-index: 0;
}
.story-decor--leaf {
  top: -30px;
  right: 4%;
  transform: rotate(15deg);
}

.story-stamp {
  position: absolute;
  bottom: 4%;
  left: 6%;
  z-index: 3;
  background: var(--cream-paper);
  border: 2px solid var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 3px;
  padding: 1rem 1.2rem 1.2rem;
  text-align: center;
  color: var(--ink);
  transform: rotate(-4deg);
  box-shadow: 4px 4px 0 var(--ink);
  min-width: 120px;
}
.stamp-script {
  display: block;
  font-family: var(--f-script);
  font-size: 1.6rem;
  color: var(--wine);
  line-height: 0.8;
}
.stamp-year {
  display: block;
  font-family: var(--f-display);
  font-size: 2.6rem;
  line-height: 1;
  margin: 0.2rem 0 0.4rem;
  color: var(--ink);
}
.stamp-tail {
  display: block;
  font-family: var(--f-stamp);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.story-copy { position: relative; z-index: 2; }
.story-copy .section-kicker { color: var(--gold-soft); }
.story-copy .section-title { color: var(--cream-light); }
.story-copy .section-title .title-script { color: var(--gold-soft); }

.story-prose p {
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(247, 234, 202, 0.92);
  max-width: 52ch;
}

.virtues {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-top: 1.5px solid rgba(247, 234, 202, 0.25);
  padding-top: 2rem;
}
.virtues li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  align-items: baseline;
}
.virtue-num {
  font-family: var(--f-elegant);
  font-size: 1.7rem;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}
.virtues li strong {
  display: block;
  font-family: var(--f-elegant);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream-light);
  margin-bottom: 0.15rem;
}
.virtues li span:not(.virtue-num) {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(247, 234, 202, 0.78);
  line-height: 1.4;
}

/* ============================================================
   MENU KORT
   ============================================================ */
.menukort {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}
.menu-cat {
  background: var(--cream-paper);
  padding: 2rem 1.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  overflow: hidden;
}
.menu-cat:nth-child(4n) { border-right: 0; }
.menu-cat:nth-last-child(-n+4) { border-bottom: 0; }

.menu-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wine);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.menu-cat > * { position: relative; z-index: 1; transition: color 0.3s var(--ease); }
.menu-cat:hover::before { transform: translateY(0); }
.menu-cat:hover .menu-cat-num,
.menu-cat:hover .menu-cat-name { color: var(--cream-light); }
.menu-cat:hover .menu-cat-meta { color: rgba(247, 234, 202, 0.7); }
.menu-cat:hover .menu-cat-arrow { color: var(--gold-soft); transform: translate(4px, -4px); }

.menu-cat-num {
  font-family: var(--f-display);
  font-size: 3.8rem;
  line-height: 1;
  color: var(--wine);
  letter-spacing: 0.02em;
}
.menu-cat-name {
  font-family: var(--f-elegant);
  font-size: 1.4rem;
  color: var(--ink);
  margin-top: 0.6rem;
}
.menu-cat-meta {
  font-family: var(--f-stamp);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.2rem;
}
.menu-cat-arrow {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: var(--f-stamp);
  font-size: 18px;
  color: var(--ink-mute);
  transition: transform 0.4s var(--ease), color 0.3s var(--ease);
}

.menu-foot {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  background: var(--ink);
  color: var(--cream-light);
  padding: var(--section-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.visit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(110, 24, 24, 0.4), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(184, 134, 46, 0.12), transparent 55%);
  pointer-events: none;
}
.visit::after {
  /* Vintage scallop edge top */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background-image: radial-gradient(circle at 12px 0, var(--cream) 6px, transparent 6.5px);
  background-size: 24px 12px;
}

.visit-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.visit-info .section-kicker { color: var(--gold-soft); }
.visit-info .section-title { color: var(--cream-light); }
.visit-info .section-title .title-script { color: var(--gold-soft); }

.info-list {
  margin: 2.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border-top: 1.5px solid rgba(247, 234, 202, 0.22);
  padding-top: 2rem;
}
.info-list > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  align-items: baseline;
}
.info-list dt {
  font-family: var(--f-stamp);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.info-list dd {
  margin: 0;
  font-family: var(--f-elegant);
  font-size: 1.3rem;
  color: var(--cream-light);
  line-height: 1.5;
}
.info-list dd a {
  border-bottom: 1.5px solid rgba(247, 234, 202, 0.4);
  padding-bottom: 1px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.info-list dd a:hover { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }

.hours {
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hours span { display: flex; gap: 1.4rem; }
.hours b {
  display: inline-block;
  min-width: 150px;
  font-family: var(--f-stamp);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 234, 202, 0.7);
  padding-top: 4px;
}
.hours i {
  font-style: italic;
  color: var(--cream-light);
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.visit-map {
  position: relative;
  aspect-ratio: 1.05;
  background: var(--cream-paper);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 4px solid var(--cream-light);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.45) sepia(0.25);
}
.map-card {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  background: var(--cream-paper);
  border: 2px solid var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 3px;
  padding: 0.8rem 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 3px 0 var(--ink);
}
.map-card-name {
  font-family: var(--f-elegant);
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.05;
}
.map-card-addr {
  font-family: var(--f-stamp);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

.map-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--gold-soft);
  z-index: 3;
}
.map-corner--tl { top: 4px; left: 4px; border-right: 0; border-bottom: 0; }
.map-corner--tr { top: 4px; right: 4px; border-left: 0; border-bottom: 0; }
.map-corner--bl { bottom: 4px; left: 4px; border-right: 0; border-top: 0; }
.map-corner--br { bottom: 4px; right: 4px; border-left: 0; border-top: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--cream);
  padding: 4rem var(--pad-x) 1.6rem;
  border-top: 4px double var(--wine);
  position: relative;
}

.footer-top {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer-emblem {
  width: 64px;
  height: 64px;
  color: var(--wine);
  flex-shrink: 0;
}
.footer-cry { margin: 0; text-align: center; }
.cry-script {
  display: block;
  font-family: var(--f-script);
  font-size: 2rem;
  color: var(--wine);
  line-height: 0.9;
  transform: rotate(-2deg);
}
.cry-loud {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1.5px solid rgba(28, 20, 11, 0.2);
  border-bottom: 1.5px solid rgba(28, 20, 11, 0.2);
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  font-family: var(--f-stamp);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  flex-wrap: wrap;
}
.footer-nav a { transition: color 0.25s var(--ease); }
.footer-nav a:hover { color: var(--wine); }

.footer-addr {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1rem;
  margin: 0;
  color: var(--ink-soft);
}
.footer-addr a { border-bottom: 1px solid currentColor; }

.footer-bottom {
  max-width: var(--content-max);
  margin: 1.4rem auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-stamp);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-vintage { color: var(--wine); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .sig-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-cat:nth-child(4n) { border-right: 1.5px solid var(--ink); }
  .menu-cat:nth-child(2n) { border-right: 0; }
  .menu-cat:nth-last-child(-n+4) { border-bottom: 1.5px solid var(--ink); }
  .menu-cat:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 880px) {
  .primary-nav { display: none; }
  .btn--header { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .header-inner { grid-template-columns: 1fr auto; gap: 1rem; }

  /* Hero illustrations: move out of overlap on smaller screens */
  .hero-frame { padding: 2.4rem 1.2rem 2rem; }
  .hero-illust { width: 130px; padding: 6px 6px 22px; }
  .hero-illust--left { top: auto; bottom: -40px; left: -10px; transform: rotate(-7deg); z-index: 6; }
  .hero-illust--right { top: auto; bottom: -40px; right: -10px; transform: rotate(7deg); z-index: 6; }
  .hero {
    padding-bottom: clamp(4rem, 8vw, 6rem);
  }

  .story-inner { grid-template-columns: 1fr; }
  .story-art { min-height: 480px; margin-bottom: 2rem; }

  .visit-inner { grid-template-columns: 1fr; }
  .visit-map { aspect-ratio: 1.2; }

  .info-list > div { grid-template-columns: 1fr; gap: 0.4rem; }
  .hours b { min-width: 110px; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 540px) {
  body { font-size: 18px; }
  .hero-illust { display: none; }
  .hero-headline { gap: 0.4rem; }
  .hero-title-underline .rule { flex-basis: 30px; }
  .sig-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-cat { border-right: 0 !important; border-bottom: 1.5px solid var(--ink) !important; }
  .menu-cat:last-child { border-bottom: 0 !important; }
  .hours span { flex-direction: column; gap: 0.1rem; }
  .hours b { min-width: 0; }
  .footer-top { gap: 1rem; }
  .footer-emblem { width: 48px; height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
