@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

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

:root {
  --porcelain: #FAF6EE;
  --ink: #2A2723;
  --sage: #7C8A5A;
  --terra: #C96F44;
  --stone: #D9CFBE;
  --ink-08: rgba(42, 39, 35, 0.08);
  --ink-12: rgba(42, 39, 35, 0.12);
  --ink-18: rgba(42, 39, 35, 0.18);
  --ink-55: rgba(42, 39, 35, 0.55);
  --porcelain-90: rgba(250, 246, 238, 0.9);
  --porcelain-75: rgba(250, 246, 238, 0.75);
  --sage-18: rgba(124, 138, 90, 0.18);
  --terra-22: rgba(201, 111, 68, 0.22);
  --shadow-soft: 0 8px 32px rgba(42, 39, 35, 0.08);
  --shadow-card: 0 12px 40px rgba(42, 39, 35, 0.1);
  --shadow-lift: 0 20px 56px rgba(42, 39, 35, 0.12);
  --radius-sm: 18px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-arch: 999px 999px 0 0;
  --max: 1180px;
  --section-y: clamp(6rem, 10vw, 8.75rem);
  --leaf-accent: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 4C14 12 8 22 8 32c0 6 4 10 10 12 2-8 6-14 12-18-6-4-10-10-12-18 4 2 8 4 12 4 0-4-2-6-6-8z' fill='%237C8A5A' opacity='0.35'/%3E%3C/svg%3E");
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-color: var(--porcelain);
  color: var(--ink);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

a:not(.btn):hover {
  color: var(--terra);
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.5rem, 6.5vw, 4.75rem); font-weight: 600; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
}

p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

/* Surface system — always paired bg + text */
.surface-porcelain { background-color: var(--porcelain); color: var(--ink); }
.surface-sage { background-color: var(--sage); color: var(--porcelain); }
.surface-ink { background-color: var(--ink); color: var(--porcelain); }
.surface-terra { background-color: var(--terra); color: var(--porcelain); }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 0.85rem;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--leaf::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 4%;
  width: 72px;
  height: 72px;
  background-image: var(--leaf-accent);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.7;
}

.leaf-accent {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-image: var(--leaf-accent);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled {
  padding: 0.65rem 0;
  box-shadow: var(--shadow-soft);
}

.site-header.is-scrolled.surface-porcelain {
  background-color: var(--porcelain-90);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled.surface-sage {
  background-color: rgba(124, 138, 90, 0.96);
}

.site-header.is-scrolled.surface-ink {
  background-color: rgba(42, 39, 35, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 1.5vw, 0.98rem);
  letter-spacing: 0.01em;
  color: inherit;
}

.logo:hover {
  color: var(--terra);
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--terra);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 12px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background-color: var(--terra);
  color: var(--porcelain);
  border-color: var(--terra);
}

.btn-secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.btn-secondary:hover {
  filter: brightness(1.08);
  background-color: rgba(255, 255, 255, 0.14);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

/* Cards */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.card--soft {
  background: var(--porcelain);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-soft);
}

/* Hero — TISCH AM FENSTER (asymmetric, bright, arched photo right & low) */
.hero-tisch-am-fenster {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-tisch-am-fenster::before {
  content: '';
  position: absolute;
  top: -8%;
  left: -6%;
  width: 280px;
  height: 280px;
  background-image: var(--leaf-accent);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.hero-tisch-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(7rem, 12vw, 9rem) clamp(3rem, 6vw, 5rem);
  min-height: 90vh;
}

.hero-tisch-content {
  max-width: 34rem;
  padding-right: 1rem;
}

.hero-tisch-content h1 em,
.hero-tisch-content h1 .accent {
  font-style: italic;
  color: var(--sage);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--ink-55);
  max-width: 32rem;
  margin-top: 0.5rem;
}

.hero-tisch-visual {
  position: relative;
  align-self: end;
  margin-top: 3.5rem;
  margin-bottom: -1.5rem;
}

.hero-arch-frame {
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
  max-height: 72vh;
}

.hero-arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-arch-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--stone);
  border-radius: inherit;
  pointer-events: none;
}

.hero-tisch-bar {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stone);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-tisch-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--stone);
}

.stat-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-55);
}

/* Pillars / feature cards */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pillar-card {
  padding: 1.85rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--stone);
}

.pillar-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

/* Photo grids */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.span-7 { grid-column: span 7; min-height: 380px; }
.span-5 { grid-column: span 5; min-height: 380px; }
.span-6 { grid-column: span 6; min-height: 320px; }
.span-4 { grid-column: span 4; min-height: 280px; }

/* Menu */
.menu-hero {
  padding: 7.5rem 0 3rem;
}

.menu-section {
  margin-bottom: 3rem;
  position: relative;
}

.menu-section-head {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--sage-18);
}

.menu-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 0.9;
  color: var(--sage);
  opacity: 0.35;
  flex-shrink: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  padding: 0.85rem 0;
  align-items: baseline;
}

.menu-item-name {
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.menu-item-name::after {
  content: '';
  position: absolute;
  bottom: 0.35em;
  left: 0;
  right: 0;
  border-bottom: 2px dotted var(--stone);
  z-index: 0;
}

.menu-item-name span {
  position: relative;
  z-index: 1;
  padding-right: 0.35rem;
  background: inherit;
}

.surface-porcelain .menu-item-name span { background-color: var(--porcelain); }
.surface-sage .menu-item-name span { background-color: var(--sage); }
.surface-ink .menu-item-name span { background-color: var(--ink); }
.surface-terra .menu-item-name span { background-color: var(--terra); }

.menu-item-desc {
  grid-column: 1;
  font-size: 0.9rem;
  color: var(--ink-55);
  margin: 0;
}

.surface-sage .menu-item-desc,
.surface-ink .menu-item-desc,
.surface-terra .menu-item-desc {
  color: inherit;
  opacity: 0.78;
}

.menu-item-price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  white-space: nowrap;
  color: var(--terra);
}

.menu-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.menu-photo-row img {
  height: 280px;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.menu-note {
  font-size: 0.875rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage);
}

/* Services / Angebote */
.angebote-hero {
  position: relative;
  padding: 7.5rem 0 3.5rem;
  min-height: 44vh;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.angebote-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/loeffelkrume-08-bright-interior.jpg') center / cover no-repeat;
  z-index: 0;
}

.angebote-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 138, 90, 0.82) 0%, rgba(42, 39, 35, 0.55) 100%);
}

.angebote-hero .container {
  position: relative;
  z-index: 1;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.offer-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--stone);
}

.offer-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.offer-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--terra);
  margin-top: 1rem;
}

/* About */
.about-hero {
  padding: 7.5rem 0 2rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.pull-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  border-left: 4px solid var(--sage);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: var(--ink);
}

.about-portrait img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.about-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.about-secondary img {
  height: 300px;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

/* Contact */
.contact-hero {
  padding: 7.5rem 0 2rem;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-split > * {
  min-width: 0;
}

.contact-info-block {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--stone);
}

.contact-map-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

/* Forms — light surface only */
.form-panel {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--stone);
  min-width: 0;
}

.form-panel form {
  width: 100%;
  max-width: 100%;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group:not(.form-check) > label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.surface-porcelain .form-group input:not([type="checkbox"]):not([type="radio"]),
.surface-porcelain .form-group select,
.surface-porcelain .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--stone);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.surface-porcelain .form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.surface-porcelain .form-group select:focus,
.surface-porcelain .form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-18);
}

.surface-porcelain .form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  width: 100%;
}

.form-check input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.25rem 0 0;
  padding: 0;
  border: none;
  background: transparent;
  accent-color: var(--terra);
}

.form-check label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.55;
  letter-spacing: normal;
  text-transform: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* FAQ */
.faq-hero {
  padding: 7.5rem 0 2rem;
}

.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--stone);
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.35rem 1.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.5rem 1.35rem;
  font-size: 0.95rem;
}

.faq-answer[hidden] {
  display: none;
}

.faq-icon {
  color: var(--terra);
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--terra-22);
  border-radius: 50%;
}

.faq-aside {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}

.faq-aside img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

/* Legal / prose */
.legal-hero {
  padding: 7.5rem 0 2rem;
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.75rem;
  font-size: 1.125rem;
}

.disclaimer-box {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--terra);
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
}

/* Highlights / preview cards */
.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--stone);
}

.highlight-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--sage);
  opacity: 0.5;
  line-height: 1;
}

.mini-faq .faq-item {
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding-block: var(--section-y);
  border-radius: var(--radius-lg);
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  font-size: 0.875rem;
  border-top: 1px solid var(--stone);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--terra);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--stone);
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--ink-55);
}

.surface-sage .footer-bottom,
.surface-ink .footer-bottom {
  color: var(--porcelain-75);
}

.footer-meta {
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.25rem;
  box-shadow: 0 -8px 32px rgba(42, 39, 35, 0.12);
  border-top: 1px solid var(--stone);
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.75rem;
}

.cookie-banner[hidden] {
  display: none;
}

/* Cookie settings modal */
.cookie-modal[hidden] {
  display: none;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(42, 39, 35, 0.55);
  display: grid;
  place-items: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.cookie-modal-panel {
  max-width: 520px;
  width: 100%;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  border-top: 4px solid var(--terra);
}

.cookie-modal-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.cookie-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--stone);
}

.cookie-option input {
  margin-top: 0.2rem;
  accent-color: var(--terra);
}

.cookie-option-label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.cookie-option-desc {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.82;
}

/* 404 */
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8rem 1rem 4rem;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Story block */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Scroll reveal — visible without JS; animated only with .js */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .js .reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal:not(.is-visible) {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page hero (inner pages) */
.page-hero {
  padding: 7.5rem 0 2.5rem;
}

.page-hero .lead {
  max-width: 640px;
  font-size: 1.0625rem;
  color: inherit;
  opacity: 0.82;
}

/* Divider */
.divider-stone {
  border: none;
  border-top: 1px solid var(--stone);
  margin: 2.5rem 0;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-tisch-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 6.5rem 3rem;
  }

  .hero-tisch-am-fenster {
    min-height: auto;
  }

  .hero-tisch-visual {
    margin-top: 1.5rem;
    margin-bottom: 0;
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-arch-frame {
    max-height: 52vh;
  }

  .pillars { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .about-portrait { order: -1; }
  .contact-split { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .story-block { grid-template-columns: 1fr; }
  .faq-aside { grid-template-columns: 1fr; }
  .span-7, .span-5, .span-6, .span-4 { grid-column: span 12; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-top: 1px solid var(--stone);
    box-shadow: var(--shadow-soft);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .main-nav.is-open { display: flex; }

  .site-header {
    position: sticky;
  }

  .hero-tisch-am-fenster {
    min-height: 78vh;
  }

  .hero-tisch-inner {
    min-height: 78vh;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillars { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .menu-photo-row { grid-template-columns: 1fr; }
  .about-secondary { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .menu-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
