/* =========================================================
   MELLES — Mälarhöjden
   Design tokens, base styles, components, page sections
   ========================================================= */

:root {
  /* Palette — soft, warm, luxurious */
  --cream: #f7f2ea;
  --cream-2: #efe7da;
  --ivory: #fcfaf6;
  --ink: #2a2521;
  --ink-soft: #5d554d;
  --ink-faint: #8b8279;
  --gold: #b3925e;
  --gold-deep: #9a7a47;
  --gold-soft: #e2d4b6;
  --sage: #8e9b84;
  --sage-soft: #dfe4d9;
  --terracotta: #c98b6e;
  --terracotta-soft: #f0dfd4;
  --line: #e4dbcc;

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;
  --space-8: 8rem;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow-soft: 0 20px 60px rgba(42, 37, 33, 0.08);
  --shadow-card: 0 10px 30px rgba(42, 37, 33, 0.06);

  --container: 1200px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--ink); color: var(--cream); padding: 0.75rem 1rem; z-index: 1000; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 1.25rem;
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--gold); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 2rem; height: 1px; background: var(--gold); }
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before, .eyebrow--light::after { background: var(--gold-soft); }

.display { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 400; }
.h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.lead { font-size: 1.1rem; line-height: 1.8; color: var(--ink-soft); font-weight: 300; }
.italic { font-style: italic; }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.small { font-size: 0.875rem; }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 100% - 3rem); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 3rem); margin-inline: auto; }
.section { padding-block: var(--space-7); }
.section--tight { padding-block: var(--space-6); }
.section--alt { background: var(--cream-2); }
.section--ivory { background: var(--ivory); }
.section--dark { background: var(--ink); color: var(--cream); }
.section--dark .muted, .section--dark .lead { color: rgba(247, 242, 234, 0.72); }
.section-head { max-width: 640px; margin-bottom: var(--space-5); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1.25rem; }

.grid { display: grid; gap: var(--space-4); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.divider { width: 3rem; height: 1px; background: var(--gold); margin: 1.5rem 0; }
.divider--center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 48px; padding: 0.85rem 1.9rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--outline-light { background: transparent; color: var(--cream); border-color: rgba(247, 242, 234, 0.6); }
.btn--outline-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--light:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn svg { width: 16px; height: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-deep); border-bottom: 1px solid transparent; transition: border-color 0.25s;
}
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.link-arrow:hover { border-color: var(--gold-deep); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
  color: var(--cream);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.header--solid, .header--scrolled, .header--light {
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: 0.32em; }
.brand__sub { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.75; margin-top: 0.35rem; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  position: relative; font-size: 0.76rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.5rem 0; opacity: 0.85; transition: opacity 0.25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__cta { display: inline-flex; }
.header .btn { min-height: 42px; padding: 0.6rem 1.3rem; font-size: 0.7rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 0; color: inherit;
  align-items: center; justify-content: center; flex-direction: column; gap: 6px;
}
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: currentColor; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav { gap: 1.5rem; }
  .header__cta { display: none; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--cream); color: var(--ink);
    flex-direction: column; justify-content: center; gap: 0.5rem;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.04em; text-transform: none; font-weight: 400; padding: 0.6rem 0; }
  .nav a::after { display: none; }
  .header--menu-open { background: var(--cream); color: var(--ink); }
  body.menu-open { overflow: hidden; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  color: var(--cream); overflow: hidden; isolation: isolate; text-align: center;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(42,37,33,0.55) 0%, rgba(42,37,33,0.35) 45%, rgba(42,37,33,0.55) 100%),
    linear-gradient(180deg, rgba(42,37,33,0.45) 0%, rgba(42,37,33,0.15) 40%, rgba(42,37,33,0.6) 100%);
}
.hero__inner { padding-block: calc(var(--header-h) + 3rem) 6rem; }
.hero__grid { display: flex; flex-direction: column; align-items: center; gap: 0; }
.hero .eyebrow { justify-content: center; }
.hero .eyebrow::after { content: ""; width: 2rem; height: 1px; background: var(--gold-soft); }
.hero h1 { max-width: 18ch; margin-inline: auto; }
.hero .lead { color: rgba(247, 242, 234, 0.85); max-width: 52ch; margin: 1.5rem auto 0; }
.hero .btn-row { justify-content: center; }
.hero__aside {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0 3rem;
  margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(247, 242, 234, 0.25);
  text-align: center;
}
.hero__fact { padding: 0.5rem 0; }
.hero__fact strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.hero__fact span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.75; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.7;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__scroll::after { content: ""; width: 1px; height: 2.5rem; background: currentColor; animation: drip 2.2s var(--ease) infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 860px) {
  .hero__aside { gap: 1.25rem 2rem; }
  .hero .eyebrow::before, .hero .eyebrow::after { display: none; }
  .hero__fact strong { font-size: 1.25rem; }
  .hero__scroll { display: none; }
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 6rem) 0 5rem;
  color: var(--cream); overflow: hidden; isolation: isolate; text-align: center;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: rgba(42, 37, 33, 0.62); }
.page-hero .lead { color: rgba(247, 242, 234, 0.8); max-width: 52ch; margin: 1.5rem auto 0; }
.page-hero--plain { background: var(--cream-2); color: var(--ink); padding-bottom: 4rem; }
.page-hero--plain .lead { color: var(--ink-soft); }

/* ---------- Marquee ribbon ---------- */
.ribbon { background: var(--ink); color: var(--gold-soft); overflow: hidden; padding: 0.9rem 0; border-block: 1px solid rgba(226, 212, 182, 0.15); }
.ribbon__track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 40s linear infinite; width: max-content; }
.ribbon__track span { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 3rem; }
.ribbon__track span::after { content: "✦"; font-size: 0.6rem; opacity: 0.6; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Intro split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.split__media--landscape img { aspect-ratio: 4 / 3; }
.split__media::before {
  content: ""; position: absolute; inset: 1.25rem -1.25rem -1.25rem 1.25rem; z-index: -1;
  border: 1px solid var(--gold-soft); border-radius: var(--radius-lg);
}
.split__badge {
  position: absolute; left: -1.5rem; bottom: 2rem;
  background: var(--ivory); padding: 1.25rem 1.5rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); max-width: 220px;
}
.split__badge strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; line-height: 1; }
.split__badge span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .split__badge { left: 1rem; }
}

/* ---------- Feature cards ---------- */
.feature {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.25rem 2rem; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-2); color: var(--gold-deep); margin-bottom: 1.5rem;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.feature p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Dish cards (favorites) ---------- */
.dish {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4;
  color: var(--cream); isolation: isolate; display: flex; align-items: flex-end;
}
.dish img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.8s var(--ease); }
.dish::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(42,37,33,0) 40%, rgba(42,37,33,0.85) 100%); }
.dish:hover img { transform: scale(1.05); }
.dish__body { padding: 1.75rem; width: 100%; }
.dish__body h3 { font-size: 1.7rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish__price { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.1em; }
.dish__body p { font-size: 0.85rem; color: rgba(247, 242, 234, 0.78); margin-top: 0.5rem; }

/* ---------- Menu ---------- */
.menu-nav {
  position: sticky; top: var(--header-h); z-index: 50;
  background: rgba(247, 242, 234, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.menu-nav ul { display: flex; gap: 0.25rem; overflow-x: auto; scrollbar-width: none; padding: 0.25rem 0; }
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a {
  display: inline-block; padding: 0.9rem 1.1rem; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.menu-nav a:hover, .menu-nav a.is-active { color: var(--ink); border-color: var(--gold); }

.menu-section { padding-block: var(--space-6); scroll-margin-top: calc(var(--header-h) + 60px); }
.menu-section + .menu-section { border-top: 1px solid var(--line); }
.menu-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.menu-section__head .h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.menu-section__note { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--ink-soft); }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 4rem; row-gap: 1.75rem; }
@media (max-width: 760px) { .menu-grid { grid-template-columns: 1fr; } }

.item { display: grid; grid-template-columns: 1fr auto; gap: 0.25rem 1rem; align-items: baseline; }
.item__name {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.item__price { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em; color: var(--ink); white-space: nowrap; }
.item__desc { grid-column: 1 / -1; font-size: 0.92rem; color: var(--ink-soft); font-weight: 300; }
.tag {
  display: inline-block; font-family: var(--font-body); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.2rem 0.5rem; border-radius: 999px; background: var(--sage-soft); color: #4f5c47; vertical-align: middle;
}
.tag--gold { background: var(--gold-soft); color: var(--gold-deep); }

.item--line { grid-template-columns: auto 1fr auto; }
.item--line .item__leader { border-bottom: 1px dotted var(--line); transform: translateY(-6px); }

.notice {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--ivory); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; margin-top: 2.5rem; font-size: 0.92rem; color: var(--ink-soft);
}
.notice svg { width: 20px; height: 20px; flex: none; color: var(--gold-deep); margin-top: 2px; }

/* ---------- Wine ---------- */
.wine-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 860px) { .wine-intro { grid-template-columns: 1fr; } }
.wine-cols { display: grid; grid-template-columns: 1fr; gap: 0; }
.wine-head-row {
  display: grid; grid-template-columns: 1fr 90px 90px; gap: 1rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint);
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--line); margin-bottom: 0.5rem;
}
.wine-head-row span:not(:first-child) { text-align: right; }
.wine {
  display: grid; grid-template-columns: 1fr 90px 90px; gap: 0.25rem 1rem; align-items: baseline;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line);
}
.wine:last-child { border-bottom: 0; }
.wine__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.wine__origin { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-left: 0.6rem; font-family: var(--font-body); font-weight: 500; }
.wine__price { text-align: right; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em; }
.wine__price--muted { color: var(--ink-faint); }
.wine__desc { grid-column: 1 / -1; font-size: 0.92rem; color: var(--ink-soft); font-weight: 300; }
@media (max-width: 560px) {
  .wine, .wine-head-row { grid-template-columns: 1fr 70px 70px; }
  .wine__name { font-size: 1.2rem; }
}
.wine-group { margin-bottom: var(--space-6); }
.wine-group__title { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.wine-group__title h3 { font-size: 2rem; }
.wine-group__title::after { content: ""; flex: 1; height: 1px; background: var(--gold-soft); }
.wine-group__sub { font-family: var(--font-display); font-style: italic; color: var(--ink-soft); font-size: 1.05rem; margin: -1rem 0 1.5rem; }

.pairing {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem;
  display: grid; gap: 0.5rem;
}
.pairing__wine { font-family: var(--font-display); font-size: 1.5rem; }
.pairing__with { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }
.pairing p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Values / numbers ---------- */
.stat { text-align: center; padding: 2rem 1rem; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 400; line-height: 1; color: var(--gold); }
.stat span { display: block; margin-top: 0.75rem; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.section--dark .stat span { color: rgba(247, 242, 234, 0.7); }

.quote { text-align: center; max-width: 780px; margin-inline: auto; }
.quote blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.35; font-weight: 400; }
.quote cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.section--dark .quote cite { color: var(--gold-soft); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 160px; gap: 1rem; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-lg); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery .g1 { grid-column: span 7; grid-row: span 3; }
.gallery .g2 { grid-column: span 5; grid-row: span 2; }
.gallery .g3 { grid-column: span 5; grid-row: span 1; }
.gallery .g4 { grid-column: span 4; grid-row: span 2; }
.gallery .g5 { grid-column: span 8; grid-row: span 2; }
@media (max-width: 760px) {
  .gallery { grid-auto-rows: 120px; }
  .gallery .g1 { grid-column: span 12; }
  .gallery .g2, .gallery .g3 { grid-column: span 6; grid-row: span 2; }
  .gallery .g4, .gallery .g5 { grid-column: span 12; }
}

/* ---------- Steps ---------- */
.step { position: relative; padding-top: 1.5rem; }
.step__num { font-family: var(--font-display); font-size: 3.2rem; line-height: 1; color: var(--gold-soft); font-style: italic; }
.step h3 { font-size: 1.5rem; margin: 0.75rem 0 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.field input, .field textarea, .field select {
  font: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.9rem 1rem; min-height: 48px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(179, 146, 94, 0.18); }
.field small { font-size: 0.78rem; color: var(--ink-faint); }

/* ---------- Info strip ---------- */
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--ivory); }
.info-strip > div { padding: 2rem; border-right: 1px solid var(--line); }
.info-strip > div:last-child { border-right: 0; }
.info-strip .label { display: block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.6rem; font-weight: 500; }
.info-strip .value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.info-strip .value a:hover { color: var(--gold-deep); }
.info-strip p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.4rem; }
@media (max-width: 860px) {
  .info-strip { grid-template-columns: 1fr; }
  .info-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .info-strip > div:last-child { border-bottom: 0; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 1.75rem; }
.contact-list__item { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.contact-list__item .icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--cream-2); color: var(--gold-deep); }
.contact-list__item .icon svg { width: 20px; height: 20px; }
.contact-list__item .label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 0.2rem; }
.contact-list__item .value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; }
.contact-list__item .value a:hover { color: var(--gold-deep); }
.contact-list__item p { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.25rem; }
.map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); aspect-ratio: 4 / 3; background: var(--cream-2); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.6) contrast(0.95); }

/* ---------- CTA band ---------- */
.cta {
  position: relative; padding: var(--space-8) 0; color: var(--cream); text-align: center; isolation: isolate; overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: rgba(42, 37, 33, 0.72); }
.cta .h2 { max-width: 20ch; margin-inline: auto; }
.cta .lead { color: rgba(247, 242, 234, 0.8); max-width: 48ch; margin: 1.25rem auto 2.25rem; }
.cta .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(247, 242, 234, 0.78); padding: var(--space-7) 0 var(--space-4); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(247, 242, 234, 0.12); }
.footer .brand { color: var(--cream); }
.footer p { font-size: 0.9rem; font-weight: 300; }
.footer h4 { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.25rem; font-weight: 500; }
.footer li { margin-bottom: 0.65rem; font-size: 0.92rem; }
.footer a:hover { color: var(--cream); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.75rem; font-size: 0.78rem; color: rgba(247, 242, 234, 0.5); }
.footer__social { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer__social svg { width: 18px; height: 18px; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ribbon__track { animation: none; }
  .hero__scroll::after { animation: none; }
  .dish img, .gallery img, .btn, .feature { transition: none; }
}
