/* ============================================================
   Doppio Zero — Stylesheet
   Designsystem: Cremeweiß + Brand-Weinrot + Brand-Gold,
   Typografie Montserrat + Playfair Display
   ============================================================ */

/* === Fonts (self-hosted) === */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('../fonts/playfair-display-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/caveat-latin.woff2') format('woff2');
}

/* === Design Tokens === */
:root {
  --c-bg:           #F8F4EC;
  --c-bg-alt:       #FFFFFF;
  --c-bg-dark:      #701117;
  --c-text:         #1A1410;
  --c-text-muted:   #6B5F54;
  --c-accent:       #701117;
  --c-gold:         #B38339;
  --c-gold-light:   #E8C988;
  --c-border:       #E8DECE;

  --ff-body:    'Montserrat', system-ui, -apple-system, sans-serif;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-script:  'Caveat', cursive;

  --fs-body:   17px;
  --fs-small:  14px;
  --fs-h3:     22px;
  --fs-h2:     clamp(28px, 4vw, 44px);
  --fs-h1:     clamp(36px, 6vw, 72px);

  --lh-body:    1.6;
  --lh-display: 1.15;

  --space-section: 96px;
  --container-max: 1200px;
  --container-pad: 24px;

  --r-card:   12px;
  --r-button: 8px;

  --shadow-card:       0 4px 24px rgba(112, 17, 23, 0.06);
  --shadow-card-hover: 0 12px 32px rgba(112, 17, 23, 0.10);

  --t-fast:   150ms ease;
  --t-medium: 300ms ease;
}
@media (max-width: 1024px) { :root { --space-section: 64px; } }
@media (max-width: 768px)  { :root { --space-section: 48px; --fs-body: 16px; } }

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* === Typografie === */
h1, h2 { font-family: var(--ff-display); line-height: var(--lh-display); font-weight: 600; }
h3 { font-family: var(--ff-body); font-weight: 600; line-height: 1.3; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { max-width: 65ch; }
.lead { font-size: 1.12em; color: var(--c-text-muted); line-height: 1.55; }
.kicker {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.script { font-family: var(--ff-script); font-weight: 400; font-size: 1.4em; color: var(--c-gold); }

/* === Intro Section === */
.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; gap: 40px; }
}
.intro__media {
  margin: 0;
  position: relative;
}
.intro__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: 0 24px 60px rgba(112, 17, 23, 0.18);
}
.intro__media::before {
  content: '';
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 2px solid var(--c-gold);
  border-radius: var(--r-card);
  z-index: -1;
  opacity: 0.5;
}
.intro__text h2 {
  margin: 12px 0 28px;
  font-style: italic;
}
.intro__text p {
  font-size: 1.06em;
  color: var(--c-text);
  margin-bottom: 16px;
  max-width: 52ch;
}
.intro__text .script {
  font-family: var(--ff-script);
  font-size: 1.65em;
  color: var(--c-gold);
  line-height: 1.2;
  margin: 24px 0 8px;
}
.intro__facts {
  list-style: none;
  padding: 32px 0 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--c-border);
  display: grid;
  gap: 18px;
}
.intro__facts li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: baseline;
}
.intro__facts strong {
  font-weight: 600;
  color: var(--c-accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.intro__facts span {
  color: var(--c-text-muted);
  font-size: 15px;
}
@media (max-width: 600px) {
  .intro__facts li { grid-template-columns: 1fr; gap: 4px; }
}

/* === Layout === */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: var(--space-section) 0; }
.section--alt  { background: var(--c-bg-alt); }
.section--dark { background: var(--c-bg-dark); color: #FBF5E8; }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #FBF5E8; }
.section--dark .lead { color: rgba(255,255,255,0.85); }
.section--dark .kicker { color: var(--c-gold-light); }

.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.section-head { max-width: 680px; margin: 0 auto var(--space-section-head, 48px); text-align: center; }
.section-head p { margin: 16px auto 0; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-button);
  border: 2px solid transparent;
  transition: all var(--t-fast);
  white-space: nowrap;
  text-align: center;
}
.btn--primary {
  background: var(--c-accent); color: #FBF5E8;
}
.btn--primary:hover {
  background: var(--c-gold); transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(112, 17, 23, 0.25);
}
.btn--ghost {
  background: transparent; color: var(--c-text); border-color: var(--c-text);
}
.btn--ghost:hover {
  background: var(--c-text); color: var(--c-bg);
}
.btn--ghost-light { color: #fff; border-color: rgba(255,255,255,0.85); background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--c-text); border-color: #fff; }
.btn--link {
  color: var(--c-gold); padding: 0; border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  font-weight: 600;
}
.btn--link:hover { border-bottom-color: var(--c-gold); }

/* === Cards === */
.card {
  background: var(--c-bg-alt);
  border-radius: var(--r-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-medium), box-shadow var(--t-medium);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.card .icon {
  width: 36px; height: 36px; color: var(--c-gold); margin-bottom: 18px;
}
.card .icon svg { width: 100%; height: 100%; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--c-text-muted); }

.card-step .step-num {
  font-family: var(--ff-display); font-size: 48px; font-weight: 700;
  color: var(--c-gold); line-height: 1; margin-bottom: 12px;
}

.card-pizza { padding: 0; overflow: hidden; }
.card-pizza img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-pizza .body { padding: 24px; }
.card-pizza h3 { margin-bottom: 6px; }

/* === Header === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--t-medium), box-shadow var(--t-medium);
  background: transparent;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: var(--c-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.site-header.is-scrolled .brand,
.site-header.is-solid .brand,
.site-header.is-scrolled .nav a,
.site-header.is-solid .nav a { color: var(--c-text); }
.site-header.is-scrolled .nav a.active,
.site-header.is-solid .nav a.active { color: var(--c-accent); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  color: #fff; transition: color var(--t-medium), text-shadow var(--t-medium);
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 0 24px rgba(0,0,0,0.35);
}
.brand-logo {
  height: 88px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
  transition: filter var(--t-medium), height var(--t-medium);
}
.site-header.is-scrolled .brand,
.site-header.is-solid .brand { text-shadow: none; }
.site-header.is-scrolled .brand-logo,
.site-header.is-solid .brand-logo {
  filter: none;
  height: 72px;
}
.brand-name { font-family: var(--ff-display); font-weight: 700; font-size: 22px; line-height: 1.1; display: block; }
.brand-sub { display: block; font-size: 12px; opacity: 0.85; margin-top: 2px; }

@media (max-width: 600px) {
  .brand-logo { height: 64px; }
  .site-header.is-scrolled .brand-logo,
  .site-header.is-solid .brand-logo { height: 56px; }
}

.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  color: #fff; font-weight: 500; font-size: 15px;
  transition: color var(--t-medium);
}
.nav a.active { color: var(--c-gold-light); }
.nav a:hover { color: var(--c-gold-light); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none; padding: 10px 14px;
  border: 1px solid currentColor; border-radius: var(--r-button);
  color: inherit; font-weight: 600;
}

@media (max-width: 1000px) {
  .nav { display: none; }
  .nav-cta .btn { display: none; }
  .burger { display: block; }
  .site-header { background: var(--c-bg); }
  .site-header .brand, .site-header .nav a { color: var(--c-text); }
}

.drawer {
  display: none; flex-direction: column; gap: 4px;
  padding: 24px var(--container-pad);
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}
.drawer.is-open { display: flex; }
.drawer a { color: var(--c-text); font-weight: 500; padding: 10px 0; }
.drawer a:hover { color: var(--c-accent); }
.drawer-cta { display: flex; gap: 12px; margin-top: 16px; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,20,16,0.55) 0%, rgba(26,20,16,0.15) 30%, rgba(26,20,16,0.82) 100%),
    linear-gradient(90deg, rgba(26,20,16,0.45) 0%, rgba(26,20,16,0) 60%);
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 720px;
  padding: 140px 0 100px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p.lead { color: rgba(255,255,255,0.95); margin-bottom: 36px; max-width: 56ch; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* === Page-Hero (Unterseiten) === */
.page-hero {
  background: var(--c-bg-alt);
  padding: 180px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 60ch; margin: 0 auto; color: var(--c-text-muted); font-size: 1.1em; }

/* === Showcase (CSS Scroll-Snap Karussell) === */
.showcase {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: var(--container-pad);
  padding: 8px var(--container-pad) 24px;
  margin: 0 calc(-1 * var(--container-pad));
  scrollbar-color: var(--c-gold) transparent;
}
.showcase::-webkit-scrollbar { height: 8px; }
.showcase::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 4px; }
.showcase > figure {
  flex: 0 0 320px; scroll-snap-align: start;
  margin: 0;
}
.showcase img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--r-card);
}
.showcase figcaption {
  margin-top: 14px;
  font-weight: 600;
  color: #FBF5E8;
  font-size: 16px;
}

/* === Callout === */
.callout {
  background: var(--c-bg-dark);
  color: #FBF5E8;
  padding: 56px;
  border-radius: var(--r-card);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.callout h2 { color: #FBF5E8; margin-bottom: 8px; }
.callout p { color: rgba(255,255,255,0.85); }
@media (max-width: 768px) {
  .callout { padding: 40px 28px; text-align: center; justify-content: center; }
}

/* === Footer === */
.site-footer {
  background: var(--c-text);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.site-footer h4 {
  color: #fff; margin-bottom: 16px; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-family: var(--ff-body); font-weight: 600;
}
.site-footer a {
  color: rgba(255,255,255,0.7); display: block; padding: 5px 0;
  transition: color var(--t-fast);
}
.site-footer a:hover { color: var(--c-gold-light); }
.site-footer .brand-name { color: #fff; margin-bottom: 12px; }
.smallprint { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-align: center;
}

/* === Accordion (FAQ) === */
.accordion details {
  border-bottom: 1px solid var(--c-border);
  padding: 24px 0;
}
.accordion summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+'; font-size: 28px; color: var(--c-gold);
  transition: transform var(--t-fast); line-height: 1;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details > *:not(summary) {
  margin-top: 14px; color: var(--c-text-muted);
}

/* === Media-Grid (Galerie) === */
.media-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .media-grid { grid-template-columns: 1fr; } }
.media-grid picture, .media-grid img {
  border-radius: var(--r-card);
  overflow: hidden;
}
.media-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  cursor: zoom-in;
  transition: transform var(--t-fast);
}
.media-grid img:hover { transform: scale(1.02); }

/* === Lightbox === */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 32px; cursor: zoom-out;
  animation: fadeIn 200ms ease;
}
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* === Forms === */
.form-grid {
  display: grid; gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: 14px; }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-button);
  background: var(--c-bg-alt);
  color: var(--c-text);
  transition: border-color var(--t-fast);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(179, 131, 57, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-section { padding-top: 32px; }
.form-section + .form-section { border-top: 1px solid var(--c-border); margin-top: 32px; }
.form-section h3 { margin-bottom: 20px; color: var(--c-accent); }

/* === Quote / Contact: 2-Spalten-Layout (Formular + Aside) === */
.quote-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1000px) {
  .quote-layout { grid-template-columns: 1fr; gap: 32px; }
}
.quote-aside { display: grid; gap: 20px; }
.quote-aside .card { padding: 28px; }

/* === Testimonials (Gallery) === */
.testimonial { padding: 32px; }
.testimonial p {
  font-family: var(--ff-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
  color: var(--c-text);
  margin-bottom: 18px;
}
.testimonial p::before { content: '„'; color: var(--c-gold); font-size: 2em; vertical-align: -0.3em; margin-right: 4px; }
.testimonial p::after  { content: '"'; color: var(--c-gold); font-size: 2em; vertical-align: -0.3em; margin-left: 2px; }
.testimonial footer {
  font-size: 14px;
  color: var(--c-text-muted);
  font-weight: 500;
}

/* === Legal-Content (Impressum/Datenschutz) === */
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-accent);
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 24px; }
.legal-content li { margin-bottom: 6px; color: var(--c-text-muted); }

/* === 404 Seite === */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--c-bg-alt);
  padding: 120px 0;
}
.not-found__inner { max-width: 560px; margin: 0 auto; }
.not-found__logo {
  height: 88px;
  width: auto;
  margin: 0 auto 24px;
  opacity: 0.4;
}
.not-found h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-style: italic;
  margin: 12px 0 18px;
}
.not-found p { margin: 0 auto; color: var(--c-text-muted); max-width: 44ch; }

/* === Kalender (availability.html) === */
.cal-wrapper {
  padding: 32px;
}
@media (max-width: 600px) { .cal-wrapper { padding: 20px; } }
.cal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 24px;
}
.cal-head h2 { font-size: 28px; text-transform: capitalize; }
.cal-controls {
  display: flex; gap: 8px; flex-shrink: 0;
}
.cal-nav-btn,
.cal-today-btn {
  padding: 10px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-button);
  background: var(--c-bg);
  color: var(--c-text);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--t-fast);
  min-width: 44px;
  cursor: pointer;
}
.cal-nav-btn:hover,
.cal-today-btn:hover {
  background: var(--c-gold);
  color: #fff;
  border-color: var(--c-gold);
}

.cal-legend {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 16px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  font-size: 14px; color: var(--c-text-muted);
}
.cal-legend-item { display: inline-flex; align-items: center; gap: 8px; }
.cal-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.cal-dot--free    { background: #4CAF50; }
.cal-dot--limited { background: var(--c-gold); }
.cal-dot--booked  { background: var(--c-accent); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.cal-dow {
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 0 8px;
}
.cal-day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  aspect-ratio: 1;
  padding: 8px 4px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: var(--c-bg-alt);
  color: var(--c-text);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.cal-day:not(:disabled):hover {
  border-color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(112, 17, 23, 0.08);
}
.cal-day.muted {
  color: rgba(0,0,0,0.25);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.cal-day .n { font-family: var(--ff-display); font-size: 18px; font-weight: 600; }
.cal-day .s {
  width: 8px; height: 8px; border-radius: 50%;
}
.cal-day .s.green  { background: #4CAF50; }
.cal-day .s.yellow { background: var(--c-gold); }
.cal-day .s.red    { background: var(--c-accent); }

@media (max-width: 600px) {
  .cal-day { font-size: 13px; padding: 4px 2px; }
  .cal-day .n { font-size: 14px; }
  .cal-grid { gap: 3px; }
}

/* === Utilities === */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === Formular-Feedback === */
.form-feedback {
  padding: 24px 28px;
  border-radius: var(--r-card);
  margin-bottom: 24px;
}
.form-feedback strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}
.form-feedback p { margin-bottom: 4px; line-height: 1.5; }
.form-feedback p:last-child { margin-bottom: 0; }
.form-feedback--success {
  background: #EEF8EE;
  border-left: 4px solid #4CAF50;
  color: #1A3A1A;
}
.form-feedback--error {
  background: #FCEFEF;
  border-left: 4px solid var(--c-accent);
  color: var(--c-accent);
}
.form-feedback--error a { color: var(--c-accent); text-decoration: underline; font-weight: 600; }

/* === Cookie Banner & Modal === */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 480px;
  background: var(--c-bg-alt);
  border-radius: var(--r-card);
  padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  z-index: 9000;
  border-top: 4px solid var(--c-gold);
}
@media (min-width: 768px) {
  .cookie-banner { bottom: 24px; left: auto; right: 24px; }
}
.cookie-banner h3 {
  font-family: var(--ff-body);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--c-accent);
}
.cookie-banner p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.cookie-banner .btn {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: var(--r-button);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner .btn.primary,
.cookie-banner .btn--primary {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.cookie-banner .btn.primary:hover,
.cookie-banner .btn--primary:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.cookie-banner .btn:not(.primary):not(.btn--primary) {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.cookie-banner .btn:not(.primary):not(.btn--primary):hover {
  border-color: var(--c-text);
}
.cookie-banner .link {
  color: var(--c-gold);
  font-size: 13px;
  text-decoration: underline;
  margin-left: 4px;
}

.cookie-modal {
  position: fixed; inset: 0;
  background: rgba(26, 20, 16, 0.6);
  z-index: 9500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.cookie-modal .panel {
  background: var(--c-bg-alt);
  border-radius: var(--r-card);
  max-width: 520px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.cookie-modal header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 16px;
  border-bottom: 1px solid var(--c-border);
}
.cookie-modal header h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--c-text);
  margin-bottom: 6px;
}
.cookie-modal header p {
  font-size: 13px;
  color: var(--c-text-muted);
  margin: 0;
}
.cookie-modal main {
  padding: 24px 28px;
  display: grid;
  gap: 20px;
}
.cookie-opt {
  border: 1px solid var(--c-border);
  border-radius: var(--r-button);
  padding: 16px 18px;
  background: var(--c-bg);
}
.cookie-opt label {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  cursor: pointer;
}
.cookie-opt label input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--c-accent);
  cursor: pointer;
}
.cookie-opt small {
  display: block;
  margin-top: 6px;
  color: var(--c-text-muted);
  font-size: 13px;
  line-height: 1.5;
}
.cookie-modal footer {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--c-border);
  justify-content: flex-end;
}
.cookie-modal footer .btn {
  padding: 12px 22px;
  font-size: 14px;
  border-radius: var(--r-button);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal footer .btn.primary,
.cookie-modal footer .btn--primary {
  background: var(--c-accent); color: #fff;
}
.cookie-modal footer .btn.primary:hover,
.cookie-modal footer .btn--primary:hover {
  background: var(--c-gold);
}
.cookie-modal footer .btn:not(.primary):not(.btn--primary) {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.cookie-modal header .btn {
  padding: 8px 14px;
  font-size: 13px;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--r-button);
  cursor: pointer;
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
