@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700&family=Inter:wght@400;600&display=swap');

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

:root {
  --espresso: #14100D;
  --umber: #4A2E1C;
  --ember: #E4622A;
  --oat: #EFE7DA;
  --ash: #8C8378;
  --oat-85: rgba(239, 231, 218, 0.85);
  --oat-70: rgba(239, 231, 218, 0.7);
  --espresso-12: rgba(20, 16, 13, 0.12);
  --shadow: 0 16px 48px rgba(20, 16, 13, 0.28);
  --shadow-soft: 0 6px 28px rgba(20, 16, 13, 0.16);
  --max: 1180px;
  --section-y: clamp(5.5rem, 9vw, 8rem);
  --rule-heavy: 2px solid var(--ash);
  --rule-ember: 2px solid rgba(228, 98, 42, 0.45);
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%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: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  filter: brightness(1.08);
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.875rem, 7vw, 5.375rem); }
h2 { font-size: clamp(1.875rem, 3.8vw, 2.875rem); }
h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 600;
}

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

/* Surface system — always paired bg + text */
.surface-espresso { background-color: var(--espresso); color: var(--oat); }
.surface-umber { background-color: var(--umber); color: var(--oat); }
.surface-oat { background-color: var(--oat); color: var(--espresso); }
.surface-ember { background-color: var(--ember); color: var(--espresso); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  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-rule,
hr.section-rule {
  border: none;
  border-top: var(--rule-heavy);
  margin: 2.75rem 0;
}

.rule-heavy {
  border: none;
  border-top: var(--rule-heavy);
}

.rule-ember {
  border: none;
  border-top: var(--rule-ember);
}

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

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

.site-header.is-scrolled.surface-espresso {
  background-color: rgba(20, 16, 13, 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.7rem;
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.6vw, 1rem);
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--espresso);
  color: var(--ember);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--ember);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid currentColor;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  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: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
  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.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: filter 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background-color: var(--ember);
  color: var(--espresso);
  border-color: var(--ember);
}

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

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

/* Hero — ROESTEREI-WAND (full-bleed, not 50/50) */
.hero-roesterei-wand {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-roesterei-wand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hellwach-01-hero-roastery.jpg') center / cover no-repeat;
  z-index: 0;
}

.hero-roesterei-wand::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 13, 0.35) 0%, rgba(20, 16, 13, 0.72) 48%, rgba(20, 16, 13, 0.92) 100%);
  z-index: 1;
}

.hero-roesterei-wand .grain-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.055;
  background-image: var(--grain);
}

.hero-roesterei-wand > .container {
  position: relative;
  z-index: 3;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 6.5rem 0 1.25rem;
  border-bottom: var(--rule-heavy);
}

.hero-body {
  padding: 2.75rem 0 2.5rem;
  max-width: 720px;
}

.hero-body h1 em,
.hero-body h1 .accent {
  font-style: normal;
  color: var(--ember);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--oat-85);
  max-width: 34rem;
  margin-top: 0.5rem;
}

.hero-bar {
  border-top: var(--rule-heavy);
  padding: 0.85rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
}

/* Roast level meter (CSS graphic, max 64px) */
.roast-meter {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  width: 64px;
  max-width: 64px;
  height: 48px;
  max-height: 64px;
  vertical-align: middle;
}

.roast-meter span {
  flex: 1;
  border-radius: 1px;
  background: var(--ash);
}

.roast-meter span:nth-child(1) { height: 28%; opacity: 0.35; }
.roast-meter span:nth-child(2) { height: 44%; opacity: 0.5; }
.roast-meter span:nth-child(3) { height: 62%; opacity: 0.68; background: var(--umber); }
.roast-meter span:nth-child(4) { height: 78%; opacity: 0.82; background: var(--umber); }
.roast-meter span:nth-child(5) { height: 100%; background: var(--ember); }

.roast-meter-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
}

/* Stats with coffee ring motif */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
  border-top: var(--rule-heavy);
  border-bottom: var(--rule-heavy);
}

.stat-item {
  position: relative;
  padding: 1.5rem 0.5rem;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(7rem, 14vw, 9.5rem);
  height: clamp(7rem, 14vw, 9.5rem);
  transform: translate(-50%, -50%);
  border: 2px solid rgba(228, 98, 42, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(5.5rem, 11vw, 7.5rem);
  height: clamp(5.5rem, 11vw, 7.5rem);
  transform: translate(-50%, -52%);
  border: 1px solid rgba(140, 131, 120, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.stat-num {
  position: relative;
  z-index: 1;
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-label {
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.pillar-card {
  padding: 1.85rem 1.5rem;
  border-top: var(--rule-heavy);
}

.pillar-card h3 {
  margin-bottom: 0.65rem;
}

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

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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 — oversized numerals */
.menu-hero {
  padding: 7.5rem 0 3rem;
  border-bottom: var(--rule-heavy);
}

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

.menu-section-head {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: var(--rule-ember);
  padding-bottom: 1rem;
}

.menu-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 0.85;
  color: var(--ember);
  opacity: 0.22;
  flex-shrink: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(140, 131, 120, 0.35);
  align-items: baseline;
}

.menu-item-name {
  font-weight: 600;
}

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

.surface-oat .menu-item-desc,
.surface-espresso .menu-item-desc,
.surface-umber .menu-item-desc {
  color: inherit;
  opacity: 0.72;
}

.menu-item-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.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%;
}

.menu-note {
  font-size: 0.875rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: var(--rule-heavy);
}

/* Services / Angebote */
.angebote-hero {
  position: relative;
  padding: 7.5rem 0 3.5rem;
  min-height: 44vh;
}

.angebote-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/hellwach-07-filter-brew.jpg') center / cover no-repeat;
  z-index: 0;
}

.angebote-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 13, 0.78);
}

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

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

.offer-card {
  padding: 2rem;
  border-top: var(--rule-heavy);
}

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

.offer-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ember);
  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: 'Bricolage Grotesque', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  border-left: 4px solid var(--ember);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

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

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

.about-secondary img {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

/* 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;
  border-top: var(--rule-heavy);
}

.contact-map-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

/* Forms — light surface only */
.form-panel {
  padding: 2rem;
  border-top: var(--rule-heavy);
  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-oat .form-group input:not([type="checkbox"]):not([type="radio"]),
.surface-oat .form-group select,
.surface-oat .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(20, 16, 13, 0.22);
  background: #fff;
  color: var(--espresso);
  font: inherit;
}

.surface-oat .form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.surface-oat .form-group select:focus,
.surface-oat .form-group textarea:focus {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}

.surface-oat .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(--ember);
}

.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;
  border-bottom: var(--rule-heavy);
}

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

.faq-item {
  border-bottom: var(--rule-heavy);
}

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

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

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

.faq-icon {
  color: var(--ember);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.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%;
}

/* 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;
  border-top: var(--rule-heavy);
  font-size: 0.9rem;
}

/* 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 0;
  border-bottom: 1px solid rgba(140, 131, 120, 0.35);
}

.highlight-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ember);
  opacity: 0.35;
  line-height: 1;
}

.mini-faq .faq-item {
  border-bottom: 1px solid rgba(140, 131, 120, 0.35);
}

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

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

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

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

.footer-brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  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 {
  text-decoration: underline;
}

.footer-bottom {
  border-top: var(--rule-heavy);
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--ash);
}

.surface-espresso .footer-bottom,
.surface-umber .footer-bottom {
  color: var(--oat-70);
}

.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 -10px 40px rgba(20, 16, 13, 0.28);
  border-top: var(--rule-heavy);
}

.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(20, 16, 13, 0.72);
  display: grid;
  place-items: center;
  padding: 1rem;
}

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

.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 rgba(140, 131, 120, 0.35);
}

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

.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 {
  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(18px);
  }
}

@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;
  border-bottom: var(--rule-heavy);
}

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

/* 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;
}

/* Responsive */
@media (max-width: 960px) {
  .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: var(--rule-heavy);
    box-shadow: var(--shadow-soft);
  }

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

  .site-header {
    position: sticky;
  }

  .hero-roesterei-wand {
    min-height: 78vh;
  }

  .hero-top {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 5.5rem;
  }

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

  .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;
  }
}
