/* ============================================================
   OMEGA Catering — Gemeinsames Design-System
   Gilt für: index.html, ueber-uns.html, events.html,
             weddings.html, business-cuisine.html, menu.html,
             kontakt.html, impressum.html, datenschutz.html
   ============================================================ */

/* ── Google Fonts werden in jeder HTML eingebunden ──
   <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
*/

/* ══════════════════════════════════════
   DESIGN-TOKENS
══════════════════════════════════════ */
:root {
  --gold:       #C8956C;
  --gold-light: #DCA882;
  --gold-dim:   rgba(200,149,108,0.15);
  --black:      #0a0a0a;
  --dark:       #111111;
  --card-bg:    #161616;
  --cream:      #f5f0e8;
  --cream-dim:  rgba(245,240,232,0.7);
  --white:      #ffffff;
  --border:     rgba(200,149,108,0.3);
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtiles Noise-Overlay über der ganzen Seite */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* Burger-Icon (mobil) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* Mobiles Menü (aufgeklappt) */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  padding: 24px 32px;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  z-index: 99;
}

/* ══════════════════════════════════════
   HERO — ohne Hintergrundbild (menu.html-Stil)
══════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: 70px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200,149,108,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* HERO — mit Hintergrundbild (für index, events, weddings etc.) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.75));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  text-align: center;
}

/* Gemeinsame Hero-Elemente */
.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  animation: fadeUp 0.8s both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--white);
  animation: fadeUp 0.8s 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  margin-top: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  animation: fadeUp 0.8s 0.2s both;
}

.hero-divider {
  margin: 28px auto 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: fadeUp 0.8s 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   SPRACH-TOGGLE
══════════════════════════════════════ */
.lang-bar {
  display: flex;
  justify-content: center;
  margin: 32px auto 0;
  animation: fadeUp 0.8s 0.4s both;
}

.lang-btn {
  padding: 8px 28px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--cream-dim);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.lang-btn:first-child { border-radius: 2px 0 0 2px; }
.lang-btn:last-child  { border-radius: 0 2px 2px 0; border-left: none; }

.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
}

/* ══════════════════════════════════════
   SECTION-ELEMENTE (Eyebrow, Titel, Divider, Text)
══════════════════════════════════════ */
.section-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.section-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

.section-text {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--cream-dim);
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 600px;
}

/* ══════════════════════════════════════
   MAIN-WRAPPER
══════════════════════════════════════ */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px 100px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   KARTEN — Gerichte (dish-card)
══════════════════════════════════════ */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.dish-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 2px;
  padding: 20px 22px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.dish-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,149,108,0.08);
}

.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.dish-desc {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
}

/* Tag / Badge auf Karte */
.dish-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 1px;
}

/* ══════════════════════════════════════
   KARTEN — Beilagen (side-card)
══════════════════════════════════════ */
.sides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.side-card {
  background: rgba(200,149,108,0.06);
  border: 1px solid rgba(200,149,108,0.2);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.4;
  transition: background 0.25s, border-color 0.25s;
}

.side-card:hover {
  background: rgba(200,149,108,0.12);
  border-color: var(--gold);
}

/* ══════════════════════════════════════
   KARTEN — Format / Feature (format-card)
   Für Seiten wie business-cuisine, events, weddings
══════════════════════════════════════ */
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.format-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 2px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.format-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,149,108,0.08);
}

.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s;
}

.format-card:hover::before {
  height: 100%;
}

.format-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200,149,108,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.format-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.format-text {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.8;
  font-weight: 300;
}

/* ══════════════════════════════════════
   INTRO-SECTION (Text + Bild nebeneinander)
══════════════════════════════════════ */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.88);
  position: relative;
  z-index: 1;
}

/* Dekorativer Gold-Rahmen symmetrisch ums Bild */
.intro-image-wrap {
  padding: 14px;
}

.intro-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  z-index: 0;
}

/* ══════════════════════════════════════
   HIGHLIGHT-LISTE (z.B. schwäbische Spezialitäten)
══════════════════════════════════════ */
.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-item {
  background: var(--card-bg);
  border-left: 2px solid var(--gold);
  padding: 18px 22px;
  transition: background 0.25s;
}

.highlight-item:hover {
  background: #1c1c1c;
}

.highlight-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
}

.highlight-item-desc {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.6;
  font-weight: 300;
}

/* ══════════════════════════════════════
   HINWEIS-BAR (notice-bar)
══════════════════════════════════════ */
.note-bar {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 20px 30px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  background: var(--gold-dim);
  font-size: 0.78rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

.note-bar p + p { margin-top: 6px; }

.notice {
  padding: 40px 40px;
  background: var(--dark);
  text-align: center;
}

.notice p {
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--cream-dim);
  font-style: italic;
  max-width: 760px;
  margin: 0 auto;
}

.notice strong { color: var(--gold); }

/* ══════════════════════════════════════
   KATEGORIE-HEADER (cat-header, cat-rule)
══════════════════════════════════════ */
.cat-section { margin-bottom: 80px; }

.cat-header {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 10px;
}

.cat-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.cat-title-wrap { flex: 1; }

.cat-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
}

.cat-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--cream-dim);
}

.cat-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(200,149,108,0.1) 60%, transparent 100%);
  margin-bottom: 32px;
}

/* ══════════════════════════════════════
   UNTERKATEGORIE-TITEL (subcat)
══════════════════════════════════════ */
.subcat { margin-bottom: 36px; }

.subcat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,149,108,0.2);
}

/* ══════════════════════════════════════
   STICKY JUMP-NAVIGATION (menu.html)
══════════════════════════════════════ */
.cat-nav {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.cat-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4px 24px;
}

.cat-nav-btn {
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(245,240,232,0.45);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
}

.cat-nav-btn:hover { color: var(--cream); }

.cat-nav-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ══════════════════════════════════════
   CTA-BLOCK
══════════════════════════════════════ */
.cta-block {
  padding: 80px 40px;
  background: linear-gradient(135deg, #161616, #1a1510);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,149,108,0.15), transparent 70%);
  pointer-events: none;
}

.cta-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-block p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Outline-Variante (transparent mit Gold-Rand) */
.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
}

.footer-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-about {
  font-size: 0.78rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.4);
  font-weight: 300;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.4);
  line-height: 2;
  font-weight: 300;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.08em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.25);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.25s;
}

.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   SPRACH-SICHTBARKEIT
   Verwendung: class="de-text" / class="en-text"
   Body bekommt class="lang-de" oder "lang-en"
══════════════════════════════════════ */
.en-text { display: none !important; }

/* DE-Modus (Standard): EN-Texte verstecken */
body.lang-de .en-text { display: none !important; }
body.lang-de .de-text { display: revert !important; }

/* EN-Modus: DE-Texte verstecken, EN-Texte zeigen */
body.lang-en .de-text { display: none !important; }
body.lang-en .en-text { display: block !important; }

/* Inline-Elemente (Links, Spans, Labels) bleiben inline */
body.lang-en a.en-text,
body.lang-en span.en-text,
body.lang-en label.en-text { display: inline !important; }

/* Spezifische Overrides */
body.lang-en .en-text.inline  { display: inline !important; }
body.lang-en .de-text.inline  { display: none !important; }

/* ══════════════════════════════════════
   HILFSELEMENTE
══════════════════════════════════════ */

/* Gold-Trennlinie */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* Zentrierter Inhalt */
.text-center { text-align: center; }

/* Hintergrund-Varianten */
.bg-black { background: var(--black); }
.bg-dark   { background: var(--dark); }
.bg-card   { background: var(--card-bg); }

/* Abstandshelfer */
.mt-40  { margin-top: 40px; }
.mt-60  { margin-top: 60px; }
.mt-80  { margin-top: 80px; }
.mb-40  { margin-bottom: 40px; }
.mb-60  { margin-bottom: 60px; }
.mb-80  { margin-bottom: 80px; }
.pt-80  { padding-top: 80px; }
.pb-80  { padding-bottom: 80px; }
.p-section { padding: 80px 40px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .intro-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }

  .intro-image-wrap img { height: 300px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }

  main { padding: 40px 20px 80px; }

  .dish-grid  { grid-template-columns: 1fr; }
  .sides-grid { grid-template-columns: 1fr 1fr; }
  .format-grid { grid-template-columns: 1fr; }

  .cta-block  { padding: 60px 24px; }
  .p-section  { padding: 60px 24px; }

  footer { padding: 48px 24px 24px; }
}

@media (max-width: 420px) {
  .sides-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
