/* ============================================================
   BÄCKEREI KONDITOREI FEUZ — Hauptstrasse 58, 3806 Bönigen
   Design System · Mobile-First · Production CSS
   ============================================================ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* Brand colors */
  --cream:        #F2EDE3;
  --cream-alt:    #EAE3D5;
  --slate:        #191F2A;
  --slate-mid:    #2A3344;
  --gold:         #8A6B3C;
  --gold-light:   #B08D5A;
  --gold-pale:    #C9AA7A;
  --sage:         #546252;
  --text:         #2E2921;
  --text-muted:   #6B6157;
  --border:       rgba(25,31,42,0.10);
  --border-gold:  rgba(138,107,60,0.20);

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Outfit', 'Helvetica Neue', sans-serif;

  /* Spacing — 8pt grid */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* Nav */
  --nav-h: 68px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* Easing — Emil Kowalski */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
ul, ol { list-style: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── GRAIN (fixed, never on scroll containers) ───────────── */
#grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)'/%3E%3C/svg%3E");
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(242,237,227,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(25,31,42,0.07);
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img { height: 42px; width: auto; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.01em;
}
.nav-logo-sub {
  font-size: 0.575rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 0.6rem 0.9rem;
  border-radius: var(--r-sm);
  font-weight: 400;
  transition: background 0.18s, color 0.18s;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nav-link:hover { background: var(--border); }
.nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--slate);
  color: var(--cream) !important;
  border-radius: 100px;
  padding: 0.55rem 1.2rem !important;
  margin-left: 0.5rem;
  transition: background 0.18s !important;
}
.nav-cta:hover { background: var(--gold) !important; }

/* Burger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--r-sm);
  transition: background 0.18s;
}
.nav-burger:hover { background: var(--border); }
.nav-burger span {
  display: block;
  width: 21px;
  height: 1.5px;
  background: var(--slate);
  transition: transform 0.35s var(--ease), opacity 0.25s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.7px, 4.7px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.7px, -4.7px); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  transform: translateY(-0.75rem);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s var(--ease), opacity 0.3s var(--ease);
}
.nav-overlay.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-overlay a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--slate);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  min-height: 64px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  transition: color 0.18s;
}
.nav-overlay a:last-child { border-bottom: none; }
.nav-overlay a:hover { color: var(--gold); }
.nav-overlay a.active { color: var(--gold); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
/* Strong overlay on mobile for readable text */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(25,31,42,0.78) 0%,
    rgba(25,31,42,0.55) 50%,
    rgba(25,31,42,0.30) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 1rem) 1.25rem 2.5rem;
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(138,107,60,0.18);
  border: 1px solid rgba(201,170,122,0.35);
  color: var(--gold-pale);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 1.25rem;
}
.hero-tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-pale);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero-h1 em { font-style: italic; color: var(--gold-pale); }
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: rgba(242,237,227,0.78);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── INFO STRIP ─────────────────────────────────────────── */
.info-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(25,31,42,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(242,237,227,0.07);
}
.info-strip-item:last-child { border-bottom: none; }
.info-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(138,107,60,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 17px; height: 17px;
  stroke: var(--gold-pale);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 400;
  display: block;
  margin-bottom: 0.15rem;
}
.info-val {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--cream);
  display: block;
}
.info-val a {
  color: inherit;
  transition: color 0.18s;
}
.info-val a:hover { color: var(--gold-pale); }

/* ── STATUS DOT ─────────────────────────────────────────── */
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 400;
  vertical-align: middle;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.dot--open {
  background: #5BB87A;
}
.dot--open::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #5BB87A;
  animation: ring 2s ease-out infinite;
}
.dot--closed { background: rgba(242,237,227,0.3); }
@keyframes ring { to { opacity: 0; transform: scale(2.2); } }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--slate);
  padding-block: 0.9rem;
  border-top: 1px solid rgba(242,237,227,0.05);
  border-bottom: 1px solid rgba(242,237,227,0.05);
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  will-change: transform;
  animation: scroll-left 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  padding-right: 1.75rem;
}
.marquee-text {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.7);
  white-space: nowrap;
}
.marquee-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ───────────────────────────────────────────── */
section { padding-block: var(--space-12); }
section.alt { background: var(--cream-alt); }
section.dark { background: var(--slate); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.1rem;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.light { color: var(--gold-pale); }
.section-label.light::before { background: var(--gold-pale); }

/* ── DISPLAY HEADINGS ──────────────────────────────────── */
.h-xl {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--slate);
}
.h-xl em { font-style: italic; color: var(--gold); }
.h-xl.on-dark { color: var(--cream); }
.h-xl.on-dark em { color: var(--gold-pale); }

.h-lg {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--slate);
}
.h-lg em { font-style: italic; color: var(--gold); }
.h-lg.on-dark { color: var(--cream); }
.h-lg.on-dark em { color: var(--gold-pale); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0 1.5rem;
  min-height: 48px;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s, transform 0.15s;
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--slate);
  color: var(--cream);
  border-color: var(--slate);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242,237,227,0.38);
}
.btn-ghost-light:hover {
  background: rgba(242,237,227,0.1);
  border-color: rgba(242,237,227,0.6);
}
.btn-outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--slate); color: var(--cream); }
.btn-gold {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-call {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.btn-call:hover { background: var(--slate); border-color: var(--slate); }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform 0.42s var(--ease), border-color 0.22s;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease), filter 0.65s;
  filter: brightness(0.92) saturate(0.88);
}
.card:hover .card-img img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
.card-tag {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  background: rgba(25,31,42,0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(138,107,60,0.22);
  color: var(--gold-pale);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
}
.card-img-wrap { position: relative; }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--slate);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: gap 0.22s var(--ease);
}
.card-link:hover { gap: 0.6rem; }

/* ── HOURS ───────────────────────────────────────────────── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table tr.today-row { background: rgba(138,107,60,0.06); }
.hours-table tr.today-row td:first-child { color: var(--gold); font-weight: 500; }
.hours-table td {
  padding: 0.85rem 0;
  font-size: 0.88rem;
}
.hours-table td:first-child {
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.hours-table td:last-child {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  text-align: right;
  padding-right: 0;
}
.hours-closed { color: var(--text-muted) !important; font-family: var(--sans) !important; font-size: 0.85rem !important; }

/* ── TODAY BOX ───────────────────────────────────────────── */
.today-box {
  background: var(--slate);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.today-box-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 400;
}
.today-box-time {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.today-box-day {
  font-size: 0.82rem;
  color: rgba(242,237,227,0.42);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  width: fit-content;
}
.badge-open {
  background: rgba(91,184,122,0.12);
  border: 1px solid rgba(91,184,122,0.3);
  color: #5BB87A;
}
.badge-closed {
  background: rgba(242,237,227,0.05);
  border: 1px solid rgba(242,237,227,0.12);
  color: rgba(242,237,227,0.4);
}
.badge-pause {
  background: rgba(201,170,122,0.12);
  border: 1px solid rgba(201,170,122,0.3);
  color: var(--gold-pale);
}

/* ── CONTACT ITEM ────────────────────────────────────────── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: none; }
.ci-icon {
  width: 42px; height: 42px;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 17px; height: 17px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ci-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 0.25rem;
}
.ci-value {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--slate);
  display: block;
  line-height: 1.35;
}
a.ci-value {
  transition: color 0.18s;
}
a.ci-value:hover { color: var(--gold); }

/* ── MAP ──────────────────────────────────────────────────── */
.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 6px;
  background: var(--cream-alt);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
  border-radius: calc(var(--r-lg) - 4px);
}

/* ── BERN BADGE ───────────────────────────────────────────── */
.bern-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bern-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}

/* ── IMAGE FRAME ─────────────────────────────────────────── */
.img-frame {
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 7px;
  background: rgba(138,107,60,0.04);
}
.img-frame-inner {
  border-radius: calc(var(--r-xl) - 5px);
  overflow: hidden;
}
.img-frame-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.img-frame:hover .img-frame-inner img { transform: scale(1.04); }

/* ── FLOAT BADGE ─────────────────────────────────────────── */
.float-badge {
  position: absolute;
  background: var(--gold);
  color: var(--cream);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(138,107,60,0.28);
}
.float-badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.float-badge-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── PILLAR TAGS ─────────────────────────────────────────── */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--cream-alt);
  border: 1px solid var(--border-gold);
  padding: 0.42rem 0.9rem;
  border-radius: 100px;
  font-size: 0.76rem;
  color: var(--text);
}
.pill-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── DIVIDER ─────────────────────────────────────────────── */
hr { border: none; border-top: 1px solid var(--border); }
.divider-gold { border-color: var(--border-gold); }

/* ── BLOCKQUOTE ──────────────────────────────────────────── */
blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}
blockquote p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.45;
}
blockquote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── FORM ────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  min-height: 48px;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(138,107,60,0.12);
}
.form-textarea { min-height: 130px; resize: vertical; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--slate);
  padding-block: var(--space-8) var(--space-6);
  border-top: 1px solid rgba(242,237,227,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(242,237,227,0.07);
  margin-bottom: var(--space-4);
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 0.6rem;
}
.footer-brand-name em { color: var(--gold-pale); font-style: italic; }
.footer-desc {
  font-size: 0.85rem;
  color: rgba(242,237,227,0.42);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer-col a {
  display: flex;
  align-items: center;
  min-height: 36px;
  font-size: 0.85rem;
  color: rgba(242,237,227,0.48);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(242,237,227,0.22);
  letter-spacing: 0.04em;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-legal a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.28);
  transition: color 0.18s;
}
.footer-legal a:hover { color: var(--gold-pale); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
[data-d="1"] { transition-delay: 0.08s; }
[data-d="2"] { transition-delay: 0.16s; }
[data-d="3"] { transition-delay: 0.24s; }
[data-d="4"] { transition-delay: 0.32s; }
[data-d="5"] { transition-delay: 0.40s; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--slate);
  padding-top: var(--nav-h);
  padding-bottom: var(--space-8);
}
.page-hero .wrap {
  padding-top: var(--space-8);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.35);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: inherit; transition: color 0.18s; }
.breadcrumb a:hover { color: var(--gold-pale); }
.breadcrumb span { color: rgba(242,237,227,0.15); }

/* ── PRODUCT LIST ────────────────────────────────────────── */
.product-list {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
  min-height: 52px;
}
.product-row:last-child { border-bottom: none; }
.product-row:hover { background: var(--cream-alt); }
.product-row-name { font-size: 0.9rem; color: var(--text); }
.product-row-price {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 1rem;
}

/* ── VIDEO PROMPT SECTION ────────────────────────────────── */
.video-prompt {
  border: 1px dashed var(--border-gold);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  background: rgba(138,107,60,0.03);
}
.video-prompt-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 0.75rem;
}
.video-prompt-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--slate);
  margin-bottom: 0.75rem;
}
.video-prompt-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CATEGORY TABS ───────────────────────────────────────── */
.cat-tabs {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
  margin-top: var(--space-4);
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.45);
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(242,237,227,0.1);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  min-height: 40px;
}
.cat-tab:hover {
  background: rgba(242,237,227,0.06);
  color: var(--cream);
  border-color: rgba(242,237,227,0.2);
}
.cat-tab.active {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

/* ── HORIZONTAL DRAG GALLERY ─────────────────────────────── */
.drag-gallery {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.drag-gallery::-webkit-scrollbar { display: none; }
.drag-gallery.dragging { cursor: grabbing; }
.drag-gallery-item {
  flex-shrink: 0;
  width: clamp(240px, 72vw, 340px);
  scroll-snap-align: start;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.drag-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.drag-gallery-item:hover img { transform: scale(1.04); }

/* ── GRIDS ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; }
.stat-box { padding: 2rem 1.5rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-box:nth-child(2n) { border-right: none; }
.stat-box:nth-child(3), .stat-box:nth-child(4) { border-bottom: none; }
.stat-num { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--slate); line-height: 1; letter-spacing: -0.02em; display: block; margin-bottom: 0.3rem; }
.stat-num em { color: var(--gold); font-style: normal; }
.stat-lbl { font-size: 0.75rem; color: var(--text-muted); }

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 1.75rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0.4rem; bottom: 0;
  width: 1px;
  background: var(--border-gold);
}
.tl-item { position: relative; padding-bottom: 2.25rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -2.2rem; top: 0.3rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream-alt);
}
.tl-year {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 0.3rem;
}
.tl-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 0.3rem;
  font-weight: 400;
}
.tl-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; max-width: 340px; }

/* ── ARRIVAL CARD ────────────────────────────────────────── */
.arrival-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  background: var(--cream);
  transition: border-color 0.22s, transform 0.35s var(--ease);
}
.arrival-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.arrival-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.arrival-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.arrival-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.35rem;
}
.arrival-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ══════════════════════════════════════════════════════════ */

/* ── 560px+ ─────────────────────────────────────────────── */
@media (min-width: 560px) {
  .wrap { padding-inline: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .drag-gallery-item { width: clamp(260px, 45vw, 360px); }
}

/* ── 768px+ (tablet) ─────────────────────────────────────── */
@media (min-width: 768px) {
  :root { --nav-h: 72px; }
  .wrap { padding-inline: 2.5rem; }
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .hero-bg::after {
    background: linear-gradient(
      160deg,
      rgba(25,31,42,0.70) 0%,
      rgba(25,31,42,0.40) 55%,
      rgba(25,31,42,0.18) 100%
    );
  }
  .hero-body { padding-inline: 2.5rem; }
  .info-strip { grid-template-columns: repeat(3, 1fr); }
  .info-strip-item { border-bottom: none; border-right: 1px solid rgba(242,237,227,0.07); }
  .info-strip-item:last-child { border-right: none; }
  .map-frame iframe { height: 420px; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── 1024px+ (desktop) ───────────────────────────────────── */
@media (min-width: 1024px) {
  .wrap { padding-inline: clamp(2.5rem, 5vw, 5rem); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  section { padding-block: var(--space-16); }
  .drag-gallery-item { width: clamp(280px, 28vw, 380px); }
}

/* ── prefers-reduced-motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { transition: opacity 0.3s; transform: none; }
  .card { transition: border-color 0.18s; }
  .card:hover { transform: none; }
  * { transition-duration: 0.15s !important; }
}
