/* ============================================
   I FRATELLI · Shared Design System
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html.no-scroll { overflow: hidden; }
body {
  font-family: 'Geist', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--cream); }

/* === DESIGN TOKENS === */
:root {
  /* Warm cream backgrounds */
  --bg: #f8f3e9;
  --bg-2: #f1e9d8;
  --bg-3: #ebdfc6;
  /* Gold accent family (replaces "pink") */
  --gold: #a87f3f;
  --gold-deep: #87632d;
  --honey: #c9a84c;
  --sand: #d6b366;
  /* Beige neutrals */
  --beige: #d9c5a3;
  --beige-deep: #b89a6e;
  /* Espresso darks */
  --ink: #2b1d13;
  --ink-soft: #4a342a;
  --ink-muted: #7a6a58;
  /* Light */
  --cream: #fffdf7;
  /* Borders */
  --line: rgba(43, 29, 19, 0.12);
  --line-strong: rgba(43, 29, 19, 0.35);
}

/* === TYPOGRAPHY UTILITIES === */
.display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 88, "opsz" 96;
  letter-spacing: -0.035em;
  line-height: 0.92;
}
.script { font-family: 'Caveat', cursive; font-weight: 600; line-height: 1; }
.mono { font-family: 'Geist Mono', monospace; font-weight: 500; }

.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1 } 50% { opacity: 0.4 } }

/* === CONTAINER === */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 48px);
  position: relative;
  z-index: 2;
}
section { position: relative; z-index: 2; }

/* === HEADER (Transparent, Glass on scroll) === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(248, 243, 233, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.site-header.on-light { /* When over white content */
  color: var(--ink);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  z-index: 102;
}
.nav-logo img {
  height: 72px; width: auto;
  transition: height 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
}
.site-header.scrolled .nav-logo img { height: 60px; }
.nav-logo .brand { display: none; }
.site-header.over-hero:not(.scrolled) .nav-link {
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
  position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-1px); }
.nav-cta-group { display: inline-flex; align-items: center; gap: 9px; }
.nav-cta--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.nav-cta--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.site-header.over-hero:not(.scrolled) .nav-cta--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 253, 247, 0.65);
}
.site-header.over-hero:not(.scrolled) .nav-cta--ghost:hover {
  background: var(--cream); color: var(--ink); border-color: var(--cream);
}
.site-header.over-hero:not(.scrolled) .nav-cta {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.site-header.over-hero:not(.scrolled) .nav-cta:hover {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 102;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.35s ease;
}
.site-header.over-hero:not(.scrolled) .nav-burger span { background: var(--cream); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ink); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; max-width: 420px;
  height: 100vh; height: 100dvh;
  background: var(--bg);
  z-index: 101;
  padding: 90px 32px 32px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  overflow-y: auto;
}
.nav-drawer.open { right: 0; box-shadow: -10px 0 40px rgba(43, 29, 19, 0.18); }
.nav-drawer .drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer .drawer-links li {
  border-bottom: 1px solid var(--line);
}
.nav-drawer .drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 88;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 18px 0;
  transition: color 0.2s ease, padding 0.2s ease;
}
.nav-drawer .drawer-links a:hover { color: var(--gold); padding-left: 8px; }
.nav-drawer .drawer-links a.active { color: var(--gold); }
.nav-drawer .drawer-links a::after {
  content: "→";
  font-size: 1.3rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-drawer .drawer-links a:hover::after { opacity: 1; transform: translateX(4px); }

.drawer-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 24px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.drawer-cta:hover { background: var(--gold-deep); }
.drawer-cta-group { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.drawer-cta-group .drawer-cta { margin-top: 0; }
.drawer-cta--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.drawer-cta--ghost:hover { background: var(--ink); color: var(--cream); }
.drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}
.drawer-footer a { color: var(--gold); }
.drawer-footer .row { margin-bottom: 6px; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 29, 19, 0.4);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.show { opacity: 1; pointer-events: auto; }

/* === HERO (Full-bleed on Home) === */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 720px;
  overflow: hidden;
}
.hero-full .bg-img {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-full .bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.hero-full .bg-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 29, 19, 0.55) 0%, rgba(43, 29, 19, 0.15) 35%, rgba(43, 29, 19, 0.65) 100%),
    linear-gradient(90deg, rgba(43, 29, 19, 0.4) 0%, rgba(43, 29, 19, 0) 55%);
  z-index: 2;
}
.hero-full .container {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 12vh, 120px);
  padding-top: 180px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(255, 253, 247, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 253, 247, 0.3);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

.hero-full h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 80, "opsz" 96;
  font-size: clamp(2.8rem, 8.5vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 26px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  max-width: 980px;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero-full h1 .row { display: block; }
.hero-full h1 .gold { color: var(--honey); }
.hero-full h1 .ital {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 0.7em;
  font-variation-settings: normal;
  color: var(--sand);
  display: inline-block;
  transform: rotate(-4deg) translateY(0.05em);
  margin: 0 0.08em;
  letter-spacing: 0;
}

.hero-full .lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  color: var(--cream);
  max-width: 540px;
  margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--cream);
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}
.hero-scroll-cue .line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

/* === SUB HERO (Smaller, for subpages) === */
.subhero {
  position: relative;
  padding: 180px 0 80px;
  background: var(--bg-2);
  overflow: hidden;
}
.subhero::before {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 600px; height: 600px;
  background: var(--bg-3);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  z-index: 0;
}
.subhero .container { position: relative; z-index: 2; }
.subhero .crumbs {
  font-family: 'Geist Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.subhero .crumbs a { color: var(--gold); }
.subhero .crumbs span { margin: 0 8px; opacity: 0.5; }
.subhero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 85, "opsz" 96;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 900px;
}
.subhero h1 .gold { color: var(--gold); }
.subhero h1 .ital {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 0.75em;
  color: var(--gold);
  display: inline-block;
  transform: rotate(-3deg);
}
.subhero .lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.55;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  transition: all 0.25s ease;
  font-family: inherit;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); }
.btn-secondary {
  background: var(--cream);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--bg-2); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.btn-light {
  background: rgba(255, 253, 247, 0.95);
  color: var(--ink);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 253, 247, 0.95);
}
.btn-light:hover { background: var(--cream); transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 253, 247, 0.6);
}
.btn-ghost-light:hover { background: rgba(255, 253, 247, 0.15); border-color: var(--cream); }

.btn .arr {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arr { transform: translateX(3px); }

/* === SECTION === */
.section {
  padding: clamp(70px, 10vw, 130px) 0;
  position: relative;
}
.section.bg-light { background: var(--bg-2); }
.section.bg-cream { background: var(--cream); }
.section.bg-warm { background: var(--bg-3); }
.section.bg-dark {
  background: var(--ink);
  color: var(--cream);
}
.section.bg-espresso {
  background: var(--ink-soft);
  color: var(--cream);
}

.section-head {
  max-width: 920px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 85, "opsz" 96;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.section-head h2 .gold { color: var(--gold); }
.section-head h2 .ital {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 0.78em;
  color: var(--gold);
  display: inline-block;
  transform: rotate(-3deg);
}
.section-head p {
  font-size: 1.04rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 580px;
}
.section.bg-dark .section-head h2,
.section.bg-espresso .section-head h2 { color: var(--cream); }
.section.bg-dark .section-head h2 .gold,
.section.bg-espresso .section-head h2 .gold { color: var(--honey); }
.section.bg-dark .section-head p,
.section.bg-espresso .section-head p { color: rgba(255, 253, 247, 0.75); }
.section.bg-dark .eyebrow,
.section.bg-espresso .eyebrow {
  background: rgba(255, 253, 247, 0.1);
  border-color: rgba(255, 253, 247, 0.3);
  color: var(--cream);
}

/* === TEASER CARDS (Home overview cards) === */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.teaser {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: 0 8px 0 var(--ink);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: transform 0.4s ease;
}
.teaser:hover { transform: translateY(-4px); }
.teaser.tall { min-height: 520px; }
.teaser .img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.teaser .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
}
.teaser:hover .img img { transform: scale(1.05); }
.teaser .body {
  padding: 28px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.teaser .tag {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.teaser h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 88;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.teaser h3 .ital {
  font-family: 'Caveat', cursive;
  font-size: 0.85em;
  color: var(--gold);
  display: inline-block;
  transform: rotate(-3deg);
}
.teaser p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.teaser .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.25s ease;
}
.teaser:hover .more { gap: 14px; }

/* Featured teaser variants */
.teaser.dark {
  background: var(--ink);
  color: var(--cream);
}
.teaser.dark p { color: rgba(255, 253, 247, 0.7); }
.teaser.dark .tag { color: var(--honey); }
.teaser.gold {
  background: var(--gold);
  color: var(--cream);
}
.teaser.gold .tag { color: rgba(255, 253, 247, 0.85); }
.teaser.gold p { color: rgba(255, 253, 247, 0.9); }
.teaser.gold .more { color: var(--cream); }

/* === FACTS BAR === */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 30px 0;
}
.fact {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  border-radius: 18px;
  padding: 22px 24px;
}
.fact.gold { background: var(--gold); color: var(--cream); }
.fact.dark { background: var(--ink); color: var(--cream); }
.fact .big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 88;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 6px;
}
.fact .lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.fact.gold .lbl, .fact.dark .lbl { color: rgba(255, 253, 247, 0.75); }
.fact .stars {
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--honey);
  display: block;
  margin-bottom: 6px;
}

/* === GALLERY BENTO === */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.gal {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  transition: transform 0.4s ease;
}
.gal:hover { transform: translateY(-3px) rotate(-0.5deg); z-index: 5; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.gal:hover img { transform: scale(1.06); }
.gal-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* === MAP / VISIT === */
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.visit-card {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 6px 0 var(--ink);
}
.visit-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 90;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.visit-card .sub {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 24px;
}
.hours-list { display: flex; flex-direction: column; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; }
.hours-row .time { font-family: 'Geist Mono', monospace; color: var(--ink-muted); }

.addr-block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1.5px dashed var(--line);
}
.addr-block .lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.addr-block .addr {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-variation-settings: "wdth" 92;
  font-size: 1.2rem;
  line-height: 1.35;
}

.visit-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: 0 6px 0 var(--ink);
  min-height: 460px;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9); position: absolute; inset: 0; }
.map-pin {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 3;
  background: var(--gold);
  color: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 0 var(--ink);
}
.map-pin .pd {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream);
  animation: blink 1.5s ease-in-out infinite;
}

/* === INSTAGRAM === */
.insta-section {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.insta-section::before {
  content: "★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★ ✦ ★";
  position: absolute;
  top: 30px; left: -10%; right: -10%;
  font-size: 1.5rem;
  letter-spacing: 8px;
  color: rgba(255, 253, 247, 0.08);
  white-space: nowrap;
  pointer-events: none;
}
.insta-section .section-head h2,
.insta-section .section-head h2 .gold { color: var(--cream); }
.insta-section .section-head h2 .ital { color: var(--honey); }
.insta-section .section-head p { color: rgba(255, 253, 247, 0.78); }
.insta-handle-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.insta-handle {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--honey);
  font-weight: 600;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.insta-tile {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 253, 247, 0.15);
  position: relative;
  transition: transform 0.3s ease;
}
.insta-tile:hover { transform: scale(1.04) rotate(-1deg); z-index: 5; border-color: var(--honey); }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.insta-tile:hover img { transform: scale(1.08); }

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.footer-stripe {
  height: 8px;
  background: linear-gradient(90deg, var(--gold) 0 33%, var(--sand) 33% 66%, var(--beige) 66% 100%);
}
.footer-inner { padding: 80px 0 30px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 253, 247, 0.1);
}
.footer-brand img {
  height: 110px;
  margin-bottom: 18px;
  filter: invert(1) brightness(1.2);
}
.footer-brand p {
  color: rgba(255, 253, 247, 0.72);
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-script {
  font-family: 'Caveat', cursive;
  font-size: 1.55rem;
  color: var(--honey);
  font-weight: 600;
  display: block;
}
.footer-col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  color: rgba(255, 253, 247, 0.85);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--honey); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-family: 'Geist Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 253, 247, 0.5);
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a {
  font-family: 'Geist Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 253, 247, 0.6);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--honey); }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 18px; left: 18px; right: 18px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(43, 29, 19, 0.22);
  padding: 26px 28px;
  z-index: 200;
  display: none;
}
.cookie-banner.show { display: block; animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 90;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.cookie-banner h4 .em { color: var(--gold); }
.cookie-banner p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 18px;
}
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions .btn { padding: 12px 22px; font-size: 0.86rem; }

/* === LEGAL PAGES === */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 0 100px;
}
.legal-content h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 90;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--ink);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-variation-settings: "wdth" 92;
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--ink);
}
.legal-content p,
.legal-content li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content .info-block {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 22px;
}
.legal-content .info-block p { margin-bottom: 6px; font-size: 0.95rem; color: var(--ink); }
.legal-content .info-block strong { color: var(--gold-deep); font-weight: 600; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta, .nav-cta-group { display: none; }
  .nav-burger { display: flex; }
  
  .teaser-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .visit-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-bento { grid-auto-rows: 110px; }
}

@media (max-width: 600px) {
  .nav-logo img { height: 56px; }
  .site-header.scrolled .nav-logo img { height: 48px; }
  .hero-full { min-height: 600px; }
  .hero-full h1 { font-size: clamp(2.2rem, 11vw, 4.2rem); }
  .hero-full .lead { font-size: 1rem; }
  .hero-full .container { padding-top: 130px; }
  .hero-actions { gap: 10px; width: 100%; }
  .hero-actions .btn { flex: 1; min-width: 0; justify-content: center; }
  
  .subhero { padding: 130px 0 60px; }
  
  .facts { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fact { padding: 18px 16px; }
  .fact .big { font-size: 1.7rem; }
  
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  
  .cookie-banner { padding: 20px 22px; }
  .cookie-actions { gap: 8px; }
  .cookie-actions .btn { flex: 1; min-width: 0; justify-content: center; padding: 11px 14px; font-size: 0.82rem; }
}

/* No-scrollbar utility */
.no-bar { scrollbar-width: none; }
.no-bar::-webkit-scrollbar { display: none; }

/* === Page-specific responsive tweaks === */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr !important; gap: 40px !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .flav-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .signature-split, .bowl-split, .cone-split { grid-template-columns: 1fr !important; gap: 32px !important; }
  .waffle-grid { grid-template-columns: 1fr !important; }
  .shake-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}
@media (max-width: 600px) {
  .flav-grid { grid-template-columns: 1fr !important; }
  .gallery-bento { grid-auto-rows: 120px !important; }
  .gallery-bento .gal { grid-column: span 2 !important; grid-row: span 2 !important; }
}

/* ============================================
   VIDEO FEATURE SECTION (single, large)
   ============================================ */
.vf-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.vf-grid.reverse .vf-text { order: 2; }
.vf-grid.reverse .vf-video { order: 1; }

.vf-text .eyebrow { margin-bottom: 18px; }
.vf-text h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-variation-settings: 'wdth' 84, 'opsz' 96;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.vf-text p {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 460px;
  margin-bottom: 16px;
}
.vf-text .btn { margin-top: 10px; }

.vf-video {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 420px;
  justify-self: center;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 0 10px 0 var(--ink);
  background: var(--ink);
}
.vf-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-sound {
  position: absolute;
  bottom: 14px;
  right: 14px;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(20,16,12,0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.reel-sound:hover { background: rgba(20,16,12,0.8); transform: translateY(-1px); }

@media (max-width: 860px) {
  .vf-grid, .vf-grid.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vf-grid.reverse .vf-text { order: 2; }
  .vf-grid.reverse .vf-video { order: 1; }
  .vf-text p { max-width: none; }
  .vf-video { max-width: 340px; }
}

/* ============================================
   FLAVOUR CHIP GRID (Eis-Seite)
   ============================================ */
.flav-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 12px;
}
.flav {
  display: flex; align-items: baseline; gap: 7px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 13px 16px;
  box-shadow: 0 3px 0 var(--ink);
}
.flav .flav-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-variation-settings: 'wdth' 90;
  font-size: 1.04rem; letter-spacing: -0.015em; color: var(--ink);
}
.flav .flav-all {
  margin-left: auto;
  font-family: 'Geist Mono', monospace;
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em;
  color: var(--ink-muted); white-space: nowrap;
}
.flav.is-star {
  background: var(--gold); border-color: var(--ink);
}
.flav.is-star .flav-name { color: var(--cream); }
.flav.is-star .flav-badge {
  margin-left: auto;
  font-family: 'Geist Mono', monospace;
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.flav.is-vegan .flav-tag {
  margin-left: auto;
  font-family: 'Geist Mono', monospace;
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: #4f7a3a; white-space: nowrap;
}
@media (max-width: 600px) {
  .flav-list { grid-template-columns: 1fr 1fr; gap: 9px; }
  .flav { padding: 11px 13px; }
  .flav .flav-name { font-size: 0.95rem; }
}

/* ============================================
   CUSTOMER CREATIONS GALLERY (Waffeln)
   ============================================ */
.creations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.creations-grid .cre {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
}
.creations-grid .cre img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.creations-grid .cre:hover img { transform: scale(1.04); }
@media (max-width: 760px) {
  .creations-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ============================================
   ABHOLUNG / ORDER FORM
   ============================================ */
.order-layout { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 36px; align-items: start; }
.order-cat { margin-bottom: 30px; }
.order-cat-title {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-variation-settings: 'wdth' 90; font-size: 1.15rem; letter-spacing: 0.02em;
  text-transform: uppercase; display: flex; align-items: center; gap: 9px;
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1.6px dashed var(--line);
}
.order-cat-title .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; }
.ord-item {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: var(--cream); border: 1.5px solid var(--ink); border-radius: 16px;
  padding: 14px 18px; margin-bottom: 10px; box-shadow: 0 3px 0 var(--ink);
  transition: border-color 0.2s ease;
}
.ord-item.is-active { box-shadow: 0 3px 0 var(--gold); border-color: var(--gold-deep); }
.ord-info { display: flex; flex-direction: column; gap: 2px; }
.ord-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-variation-settings: 'wdth' 90; font-size: 1.05rem; color: var(--ink); }
.ord-sub { font-size: 0.78rem; color: var(--ink-muted); }
.ord-right { display: flex; align-items: center; gap: 14px; flex: none; }
.ord-price { font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 0.92rem; color: var(--ink); white-space: nowrap; }
.qty { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--ink); border-radius: 999px; overflow: hidden; }
.qty button {
  width: 32px; height: 32px; border: none; background: var(--cream); color: var(--ink);
  font-size: 1.1rem; font-weight: 700; cursor: pointer; line-height: 1; transition: background 0.15s ease;
}
.qty button:hover { background: var(--gold); color: var(--cream); }
.qty .qval { min-width: 26px; text-align: center; font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 0.9rem; }

.order-aside { position: sticky; top: 96px; }
.order-summary { background: var(--ink); color: var(--cream); border-radius: 22px; padding: 28px 26px; box-shadow: 0 6px 0 var(--gold-deep); }
.order-summary h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-variation-settings: 'wdth' 88; font-size: 1.5rem; margin-bottom: 16px; color: var(--cream); }
.ord-lines { min-height: 40px; margin-bottom: 14px; }
.ord-empty { color: rgba(255,253,247,0.5); font-size: 0.9rem; }
.ord-line { display: grid; grid-template-columns: auto 1fr auto; gap: 8px; align-items: baseline; padding: 7px 0; border-bottom: 1px dashed rgba(255,253,247,0.18); font-size: 0.9rem; }
.ord-line .ol-q { font-family: 'Geist Mono', monospace; color: var(--honey); }
.ord-line .ol-name { color: rgba(255,253,247,0.9); }
.ord-line .ol-sum { font-family: 'Geist Mono', monospace; color: var(--cream); white-space: nowrap; }
.ord-total-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; margin-bottom: 6px; border-top: 1.5px solid rgba(255,253,247,0.3); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.3rem; }
.ord-total-row #ord-total { color: var(--honey); }
.ord-fields { display: flex; flex-direction: column; gap: 12px; margin: 16px 0 18px; }
.ord-fields label { display: flex; flex-direction: column; gap: 5px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,253,247,0.7); font-weight: 600; }
.ord-fields input, .ord-fields textarea {
  background: rgba(255,253,247,0.08); border: 1.5px solid rgba(255,253,247,0.25); border-radius: 12px;
  padding: 11px 14px; color: var(--cream); font-family: 'Geist', sans-serif; font-size: 0.95rem; text-transform: none; letter-spacing: 0; resize: vertical;
}
.ord-fields input::placeholder, .ord-fields textarea::placeholder { color: rgba(255,253,247,0.4); }
.ord-fields input:focus, .ord-fields textarea:focus { outline: none; border-color: var(--honey); }
.ord-note { font-size: 0.78rem; color: rgba(255,253,247,0.55); margin-top: 12px; line-height: 1.5; text-align: center; }

@media (max-width: 860px) {
  .order-layout { grid-template-columns: 1fr; gap: 28px; }
  .order-aside { position: static; }
}

/* Recurring delivery/pickup CTA band */
.cta-band { text-align: center; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ============================================
   ABHOLUNG · ACCORDION + CONFIGURATORS
   ============================================ */
.order-intro { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; margin-bottom: 20px; }
.acc { border: 1.5px solid var(--ink); border-radius: 16px; margin-bottom: 12px; overflow: hidden; background: var(--cream); box-shadow: 0 3px 0 var(--ink); }
.acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: var(--cream); border: none; cursor: pointer; padding: 16px 20px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-variation-settings: 'wdth' 90;
  font-size: 1.08rem; color: var(--ink); text-align: left;
}
.acc-head:hover { background: var(--sand, #f0e6d2); }
.acc-ic { font-size: 1.4rem; line-height: 1; transition: transform 0.25s ease; color: var(--gold-deep); }
.acc.open .acc-ic { transform: rotate(45deg); }
.acc-body { display: none; padding: 4px 16px 18px; }
.acc.open .acc-body { display: block; }

.cfg { padding: 6px 2px 2px; }
.cfg-hint { font-size: 0.86rem; color: var(--ink-muted); margin-bottom: 14px; }
.cfg-sizes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.cfg-size {
  display: flex; flex-direction: column; gap: 3px; text-align: left;
  background: var(--paper, #fffcf6); border: 1.5px solid var(--ink); border-radius: 12px;
  padding: 12px 14px; cursor: pointer; transition: all 0.18s ease;
}
.cfg-size strong { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; }
.cfg-size span { font-size: 0.78rem; color: var(--ink-muted); }
.cfg-size.sel { background: var(--gold); border-color: var(--ink); box-shadow: 0 3px 0 var(--ink); }
.cfg-size.sel strong, .cfg-size.sel span { color: var(--cream); }

.cfg-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.cfg-row > span { flex: none; }
.cfg-row em { font-style: normal; color: var(--gold-deep); font-family: 'Geist Mono', monospace; font-size: 0.8rem; }
.cfg-select {
  flex: 1; max-width: 60%; background: var(--paper, #fffcf6); border: 1.5px solid var(--ink); border-radius: 10px;
  padding: 9px 12px; font-family: 'Geist', sans-serif; font-size: 0.92rem; color: var(--ink); cursor: pointer;
}
.cfg-select:focus { outline: none; border-color: var(--gold-deep); }
.cfg-check { display: flex; align-items: center; gap: 10px; margin: 14px 0; font-weight: 600; font-size: 0.92rem; cursor: pointer; }
.cfg-check input { width: 18px; height: 18px; accent-color: var(--gold-deep); }
.cfg-check em { font-style: normal; color: var(--gold-deep); font-family: 'Geist Mono', monospace; font-size: 0.8rem; }

.cfg-multi { margin: 14px 0; }
.cfg-multi-lbl { font-weight: 700; font-size: 0.92rem; display: block; margin-bottom: 8px; }
.cfg-multi-lbl em { font-style: normal; color: var(--gold-deep); font-family: 'Geist Mono', monospace; font-size: 0.8rem; }
.cfg-multi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; }
.cfg-chk { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; cursor: pointer; }
.cfg-chk input { width: 16px; height: 16px; accent-color: var(--gold-deep); }
.cfg-eis { margin: 14px 0; }
.cfg-add { width: 100%; justify-content: center; margin-top: 14px; }

.ol-det { display: block; font-size: 0.74rem; color: rgba(255,253,247,0.6); margin-top: 2px; line-height: 1.35; }
.ord-line { position: relative; grid-template-columns: auto 1fr auto auto; }
.ol-rm { background: none; border: none; color: rgba(255,253,247,0.45); font-size: 1.1rem; cursor: pointer; padding: 0 0 0 8px; line-height: 1; }
.ol-rm:hover { color: var(--honey); }

@media (max-width: 600px) {
  .cfg-sizes { grid-template-columns: 1fr; }
  .cfg-select { max-width: 55%; }
  .cfg-multi-grid { grid-template-columns: 1fr; }
}
