@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --ink: #1A1A18;
  --ink-light: #4A4A44;
  --gold: #9E7E4A;
  --gold-light: #C4A96A;
  --forest: #2E4A3A;
  --stone: #CEC4B0;
  --warm: #E8DDD0;
  --white: #FFFFFF;
  --radius: 3px;
  --nav-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.2; }

/* ── Announcement bar ── */
.announce-bar {
  background: var(--forest);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
}
.announce-bar a { color: var(--gold-light); text-decoration: underline; }
.announce-bar .close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  font-size: 16px;
  padding: 4px;
}
.announce-bar .close:hover { opacity: 1; }

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 68px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.15s;
  border-radius: var(--radius);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a.active { border-bottom: 2px solid var(--gold); }

.nav-cta {
  margin-left: 20px;
  background: var(--ink);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 2px;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
}
.nav-cta:hover { background: var(--forest) !important; color: var(--white) !important; }

.nav-hiring {
  color: var(--forest) !important;
}
.nav-hiring::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--forest);
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 8px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

/* ── Mobile nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  padding: 80px 40px 40px;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--stone);
  color: var(--ink);
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 24px;
  padding: 8px;
}

/* ── Page header ── */
.page-header {
  padding: 72px 32px 56px;
  max-width: 1240px;
  margin: 0 auto;
}
.page-header h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--ink);
}
.page-header p {
  margin-top: 14px;
  max-width: 560px;
  color: var(--ink-light);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Sections ── */
.section { padding: 80px 32px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--ink-light);
  max-width: 520px;
  margin-bottom: 40px;
  font-size: 15px;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: calc(95vh - var(--nav-h));
  min-height: 560px;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,24,0.62) 0%, rgba(26,26,24,0.15) 70%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 72px;
  max-width: 780px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(42px, 6vw, 80px);
  color: var(--white);
  line-height: 1.07;
  font-weight: 500;
}
.hero-sub {
  margin-top: 18px;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 440px;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.18s;
}
.btn-light {
  background: var(--white);
  color: var(--ink);
}
.btn-light:hover { background: var(--cream); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: var(--forest); }
.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--forest); }

/* ── Product grid ── */
.product-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 0;
}
.product-scroll-inner {
  display: flex;
  gap: 20px;
  padding-right: 0;
  width: max-content;
  min-width: 100%;
}
.product-card {
  scroll-snap-align: start;
  width: 220px;
  flex-shrink: 0;
  cursor: pointer;
}
.product-card-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--warm);
}
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  margin-top: 12px;
  font-weight: 500;
}
.product-card p {
  font-size: 12.5px;
  color: var(--ink-light);
  margin-top: 4px;
}

/* ── Product grid (full page) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.product-grid-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
}

/* ── Product modal ── */
.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,24,0.55);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-modal.open { display: flex; }
.product-modal-box {
  background: var(--white);
  border-radius: 6px;
  width: 100%;
  max-width: 540px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(26,26,24,0.25);
}
.product-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 18px;
  color: var(--ink-light);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  padding: 4px 6px;
}
.product-modal-close:hover { color: var(--ink); }
.modal-product-header {
  display: flex;
}
.modal-product-header img {
  width: 150px;
  min-height: 150px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 6px 0 0 0;
}
.modal-product-info {
  padding: 20px 44px 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-product-info h3 { font-size: 18px; font-weight: 500; margin: 4px 0 8px; }
.modal-details {
  padding: 16px 24px 24px;
  font-size: 12.5px;
  color: var(--ink-light);
  line-height: 1.65;
  border-top: 1px solid var(--cream-dark);
}
.modal-details table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.modal-details table td { padding: 3px 0; font-size: 12px; }
.modal-details table td:first-child { color: var(--ink); font-weight: 500; width: 54%; }
.modal-details table td.indent { padding-left: 10px; color: var(--ink-light); font-weight: 400; }
.modal-details .card-nr { font-size: 11px; color: var(--stone); margin: 0 0 12px; }
@media (max-width: 480px) {
  .modal-product-header { flex-direction: column; }
  .modal-product-header img { width: 100%; min-height: 180px; border-radius: 6px 6px 0 0; }
}
.product-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,26,24,0.1);
}
.product-grid-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--warm);
}
.product-grid-card .card-body {
  padding: 16px 18px 20px;
}
.product-grid-card h3 {
  font-size: 16px;
  font-weight: 500;
}
.product-grid-card .card-cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.product-grid-card .card-desc {
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 8px;
  line-height: 1.55;
}
.product-grid-card .card-meta {
  margin-top: 12px;
  font-size: 12px;
  color: var(--stone);
  display: flex;
  gap: 12px;
}
.card-toggle {
  width: 100%;
  text-align: left;
  padding: 10px 18px 14px;
  border-top: 1px solid var(--cream-dark);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-details {
  display: none;
  padding: 0 18px 16px;
  font-size: 12.5px;
  color: var(--ink-light);
  line-height: 1.6;
}
.card-details.open { display: block; }
.card-details table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.card-details table td { padding: 3px 0; font-size: 12px; }
.card-details table td:first-child { color: var(--ink); font-weight: 500; width: 54%; }
.card-details table td.indent { padding-left: 10px; color: var(--ink-light); font-weight: 400; }
.card-nr { font-size: 11px; color: var(--stone); margin: 0 0 10px; }

/* ── Filter tabs ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--stone);
  color: var(--ink-light);
  transition: all 0.15s;
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--ink); color: var(--ink); }
.filter-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* ── Photo strip ── */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3px;
  height: 460px;
  overflow: hidden;
}
.photo-strip-item { overflow: hidden; }
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.photo-strip-item:hover img { transform: scale(1.04); }

/* ── Stories grid ── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story-card { cursor: pointer; }
.story-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--warm);
  overflow: hidden;
}
.story-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.story-card:hover .story-card-img img { transform: scale(1.04); }
.story-card-cat {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-top: 14px;
  margin-bottom: 8px;
}
.story-card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.story-card p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.55;
}
.story-card .story-date {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--stone);
}

/* ── Stories list (historier page) ── */
.stories-list { display: flex; flex-direction: column; gap: 0; }
.story-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--stone);
  align-items: start;
}
.story-row:first-child { border-top: 1px solid var(--stone); }
.story-row-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--warm);
}
.story-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.story-row:hover .story-row-img img { transform: scale(1.04); }
.story-row-body { padding-top: 4px; }
.story-row-cat {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.story-row h3 { font-size: 22px; font-weight: 500; line-height: 1.25; }
.story-row p { margin-top: 10px; font-size: 14px; color: var(--ink-light); line-height: 1.6; max-width: 600px; }
.story-row .story-meta { margin-top: 16px; font-size: 12px; color: var(--stone); }
.story-row .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.story-row .read-more:hover { color: var(--ink); }

/* ── Split section ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 20px; }
.split-text p { color: var(--ink-light); margin-bottom: 16px; line-height: 1.75; }
.split-text .lead { font-size: 17px; color: var(--ink); font-weight: 400; font-family: 'Playfair Display', serif; font-style: italic; margin-bottom: 24px; }

/* ── Dark band ── */
.dark-band {
  background: var(--ink);
  color: var(--white);
  padding: 80px 32px;
}
.dark-band .section-label { color: var(--gold-light); }
.dark-band h2 { font-size: clamp(28px, 3.5vw, 48px); max-width: 700px; margin-bottom: 20px; }
.dark-band p { color: rgba(255,255,255,0.7); max-width: 620px; line-height: 1.75; }
.dark-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dark-band-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.dark-band-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

/* ── Forest band ── */
.forest-band {
  background: var(--forest);
  color: var(--white);
  padding: 56px 32px;
}
.forest-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.forest-band h2 { font-size: 28px; font-weight: 500; }
.forest-band p { color: rgba(255,255,255,0.75); max-width: 480px; margin-top: 8px; }
.forest-band .btn-light { flex-shrink: 0; }

/* ── Locations ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.location-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}
.location-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--warm);
}
.location-card-body {
  padding: 18px 20px 20px;
}
.location-card h3 { font-size: 17px; font-weight: 500; margin-bottom: 6px; }
.location-card address {
  font-style: normal;
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.5;
}
.location-card .hours {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-light);
}
.location-card .hours strong { color: var(--ink); font-weight: 600; }
.location-card .loc-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.loc-tag {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--ink-light);
  border: none;
  cursor: default;
}
.loc-tag.has-menu { background: var(--cream); color: var(--ink-light); cursor: pointer; }

/* ── Om oss ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.about-card { border-top: 2px solid var(--gold); padding-top: 24px; }
.about-card h3 { font-size: 20px; margin-bottom: 12px; }
.about-card p { font-size: 14px; color: var(--ink-light); line-height: 1.7; }

.timeline { max-width: 720px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--stone);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 500;
  padding-top: 2px;
}
.timeline-body h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.timeline-body p { font-size: 14px; color: var(--ink-light); line-height: 1.65; }

/* ── Møtemat ── */
.menu-table { width: 100%; border-collapse: collapse; }
.menu-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-light);
  padding: 10px 0;
  border-bottom: 2px solid var(--stone);
}
.menu-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 14px;
  vertical-align: top;
}
.menu-table td:first-child { font-weight: 500; width: 60%; }
.menu-table td:last-child { color: var(--gold); font-weight: 600; text-align: right; white-space: nowrap; }
.menu-category {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  padding: 28px 0 8px;
  display: block;
}
.menu-desc { font-size: 12.5px; color: var(--ink-light); margin-top: 3px; }

/* ── Bestilling two-col grid ── */
.bestill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Contact form ── */
.contact-form {
  max-width: 560px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--stone);
  border-radius: 2px;
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 64px 32px 0;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 90px; filter: invert(1) brightness(0.9); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.65; max-width: 260px; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom .made-by { display: flex; align-items: center; gap: 6px; }

/* ── 404 ── */
.not-found {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 32px;
}
.not-found-num {
  font-family: 'Playfair Display', serif;
  font-size: 160px;
  line-height: 1;
  color: var(--stone);
  font-weight: 400;
}
.not-found h1 { font-size: 32px; margin: 8px 0 16px; }
.not-found p { color: var(--ink-light); max-width: 380px; margin-bottom: 32px; }

/* ── Privacy ── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}
.prose h1 { font-size: 40px; margin-bottom: 8px; }
.prose .subtitle { color: var(--ink-light); margin-bottom: 48px; font-size: 15px; }
.prose h2 { font-size: 22px; margin-top: 48px; margin-bottom: 12px; }
.prose p, .prose li { font-size: 15px; color: var(--ink-light); line-height: 1.75; margin-bottom: 14px; }
.prose ul { margin-left: 20px; }
.prose a { color: var(--gold); text-decoration: underline; }

/* ── Scrollbar ── */
.product-scroll::-webkit-scrollbar { height: 3px; }
.product-scroll::-webkit-scrollbar-track { background: var(--warm); }
.product-scroll::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 2px; }

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--ink-light); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.hidden { display: none !important; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .split-img { aspect-ratio: 16/9; }
  .dark-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 84px; }
  .nav-logo img { height: 62px; }
  .section { padding: 56px 20px; }
  .product-scroll { max-width: none; margin: 0 -20px; padding-left: 20px; }
  .product-scroll-inner { min-width: 0; padding-right: 20px; }
  .page-header { padding: 48px 20px 36px; }
  .hero-content { padding: 0 28px 48px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 320px; }
  .photo-strip-item:nth-child(n+3) { display: none; }
  .stories-grid { grid-template-columns: 1fr; }
  .story-row { grid-template-columns: 1fr; }
  .story-row-img { aspect-ratio: 16/9; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 36px 20px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 32px; }
  .footer-brand { grid-column: 1/-1; display: flex; align-items: center; gap: 14px; padding-bottom: 4px; }
  .footer-brand img { height: 58px; margin-bottom: 0; }
  .footer-brand p { display: none; }
  .footer-col h4 { margin-bottom: 10px; }
  .footer-col ul { gap: 7px; }
  .footer-col a { font-size: 13px; }
  .footer-col address { font-size: 12px; line-height: 1.6; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .forest-band-inner { flex-direction: column; align-items: flex-start; }
  .dark-band { padding: 56px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .bestill-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { max-width: 100%; }
}

@media (max-width: 480px) {
  .photo-strip { grid-template-columns: 1fr; height: 260px; }
  .photo-strip-item:nth-child(n+2) { display: none; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .not-found-num { font-size: 100px; }
}

/* ── Menu Modal ── */
.menu-btn { cursor: pointer; border: none; font-family: inherit; }
.menu-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; align-items: center; justify-content: center; padding: 24px; }
.menu-modal.open { display: flex; }
.menu-modal-box { background: var(--cream, #f8f5ef); border-radius: 6px; max-width: 560px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 40px 36px 36px; position: relative; }
.menu-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 18px; cursor: pointer; color: var(--ink, #1a1a18); opacity: 0.5; }
.menu-modal-close:hover { opacity: 1; }
.menu-modal-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; margin-bottom: 4px; }
.menu-modal-hours { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold, #b8860b); margin-bottom: 28px; }
.menu-modal-section { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin: 24px 0 12px; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 6px; }
.menu-modal-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.menu-item-row { display: flex; justify-content: space-between; gap: 12px; }
.menu-item-name { font-weight: 600; font-size: 14px; }
.menu-item-price { font-size: 14px; white-space: nowrap; color: var(--gold, #b8860b); }
.menu-item-desc { font-size: 13px; color: rgba(26,26,24,0.65); margin-top: 3px; line-height: 1.55; }
.menu-item-extras { font-size: 12.5px; color: rgba(26,26,24,0.6); border-top: 1px dashed rgba(0,0,0,0.15); padding-top: 12px; }
