/* ============================================================
   KlarLeuchter Raum · Ina Sterzel · Element Feuer
   Helle Frequenz · Feuer-Farbpalette
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  /* Feuer-Farbpalette (hell, warm) */
  --bg:          #FFFAF2;
  --bg-warm:     #FFF5E6;
  --bg-section:  #FEF0D8;
  --bg-dark:     #3A1A0A;
  --surface:     #FFFFFF;
  --surface-warm:#FFF8EE;
  --surface-glow:#FFF3DC;

  /* Akzentfarben Feuer */
  --fire-gold:   #D4860A;
  --fire-amber:  #E8960C;
  --fire-orange: #D9622A;
  --fire-red:    #B83A1E;
  --fire-light:  #F5B942;
  --fire-glow:   #FDDEA0;

  /* Text */
  --text:        #2C1A0E;
  --text-soft:   #5C3D26;
  --text-muted:  #8A6040;
  --text-light:  #B8905A;

  /* Linien & Schatten */
  --line:        rgba(180, 100, 30, 0.18);
  --line-warm:   rgba(212, 134, 10, 0.25);
  --shadow:      0 4px 24px rgba(180, 80, 20, 0.10);
  --shadow-lg:   0 8px 48px rgba(180, 80, 20, 0.16);
  --shadow-glow: 0 0 40px rgba(248, 185, 66, 0.25);

  /* Radius & Spacing */
  --radius:      16px;
  --radius-lg:   28px;
  --max-w:       1100px;
  --section-pad: 96px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--fire-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--fire-orange); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--text);
  font-weight: 600;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-soft); line-height: 1.8; }

.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fire-gold);
  margin-bottom: 12px;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: var(--section-pad) 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-full {
  padding: var(--section-pad) 28px;
  width: 100%;
}

/* --- Site Glow --- */
.site-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(248, 185, 66, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* --- Header / Topbar --- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(180, 80, 20, 0.07);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-text .eyebrow {
  margin-bottom: 0;
  font-size: 0.7rem;
  color: var(--fire-gold);
}

.brand-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
}

.nav a:hover { color: var(--fire-gold); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-warm);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--text);
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--fire-amber), var(--fire-orange));
  color: #fff;
  box-shadow: 0 4px 20px rgba(217, 98, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217, 98, 42, 0.45);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--fire-gold);
  border: 1.5px solid var(--fire-gold);
}

.btn-secondary:hover {
  background: var(--fire-glow);
  color: var(--fire-orange);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-soft);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--surface-glow);
  color: var(--text);
}

.btn-small {
  padding: 9px 20px;
  font-size: 0.82rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* --- Hero Section --- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  min-height: 88vh;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.hero-copy h1 {
  margin: 12px 0 20px;
  color: var(--text);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-meta span::before {
  content: '·';
  margin-right: 8px;
  color: var(--fire-light);
}

.hero-meta span:first-child::before { display: none; }

.hero-visual {
  position: relative;
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  aspect-ratio: 3/4;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58, 26, 10, 0.15) 100%);
  border-radius: var(--radius-lg);
}

.visual-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--surface);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  max-width: 240px;
}

.visual-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fire-gold);
  margin-bottom: 6px;
}

.visual-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 6px;
}

.visual-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Flame Divider --- */
.flame-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
  color: var(--fire-light);
  font-size: 1.4rem;
}

.flame-divider::before,
.flame-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-warm), transparent);
}

/* --- Intro Band --- */
.intro-band {
  background: linear-gradient(135deg, var(--bg-warm), var(--surface-glow));
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  border: 1px solid var(--line-warm);
  box-shadow: var(--shadow);
  margin: 0 28px;
  max-width: calc(var(--max-w) - 56px);
  margin-left: auto;
  margin-right: auto;
}

.intro-band h2 {
  margin: 8px 0 16px;
}

/* --- Two Column --- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.two-col-reverse {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* --- Cards --- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.card-warm {
  background: linear-gradient(145deg, var(--surface-warm), var(--surface-glow));
  border-color: var(--line-warm);
}

.card-fire {
  background: linear-gradient(135deg, rgba(232, 150, 12, 0.08), rgba(217, 98, 42, 0.05));
  border-color: rgba(232, 150, 12, 0.25);
}

.card-dark {
  background: linear-gradient(135deg, var(--bg-dark), #5C2A10);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.card-dark h2, .card-dark h3, .card-dark p, .card-dark .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.card-dark .eyebrow { color: var(--fire-light); }

.card-dark p { color: rgba(255, 220, 180, 0.85); }

.card h3 { margin-bottom: 12px; }

/* --- Checklist --- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line);
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
  content: '✦';
  color: var(--fire-gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.dashlist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.dashlist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.dashlist li::before {
  content: '–';
  color: var(--fire-orange);
  flex-shrink: 0;
}

/* --- Section Backgrounds --- */
.bg-warm { background-color: var(--bg-warm); }
.bg-section { background-color: var(--bg-section); }

/* --- Split Band (dark/light) --- */
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* --- Focus Section --- */
.focus {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.focus-copy {
  background: linear-gradient(145deg, var(--surface-glow), var(--surface-warm));
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}

.focus-quote {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-dark), #5C2A10);
  border-radius: var(--radius);
  padding: 44px 32px;
  box-shadow: var(--shadow-lg);
}

.focus-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-style: italic;
  color: var(--fire-glow);
  line-height: 1.3;
}

/* --- Grid Layouts --- */
.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* --- Section Head --- */
.section-head {
  max-width: 800px;
  margin-bottom: 40px;
}

.section-head h2 { margin: 8px 0 16px; }
.section-head p { font-size: 1.05rem; }

/* --- Image Sections --- */
.img-full {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-full img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.img-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Offer Cards --- */
.offer-card {
  background: var(--surface);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire-amber), var(--fire-orange));
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.offer-card h3 { margin-bottom: 12px; }
.offer-card .offer-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

/* --- Spark Row --- */
.spark-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  justify-content: center;
}

.spark-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--surface-glow), var(--surface-warm));
  border: 1px solid var(--line-warm);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fire-orange);
  box-shadow: 0 2px 12px rgba(180, 80, 20, 0.08);
}

/* --- Invitation Section --- */
.invitation {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #7A3018 50%, #3A1A0A 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin: 0 28px;
  max-width: calc(var(--max-w) - 56px);
  margin-left: auto;
  margin-right: auto;
}

.invitation::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248, 185, 66, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.invitation-inner {
  padding: 72px 64px;
  position: relative;
  z-index: 1;
}

.invitation-inner .eyebrow { color: var(--fire-light); }
.invitation-inner h2 { color: #fff; margin: 8px 0 20px; }
.invitation-inner p { color: rgba(255, 220, 180, 0.9); font-size: 1.05rem; }

/* --- INA Akrostichon --- */
.ina-acrostic {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 32px 0;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  max-width: 360px;
}

.ina-acrostic span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--fire-glow);
  font-style: italic;
}

.ina-acrostic span strong {
  color: var(--fire-light);
  font-style: normal;
}

/* --- Statement Card --- */
.statement {
  background: linear-gradient(145deg, var(--surface-glow), var(--surface-warm));
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  padding: 32px 40px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

.statement p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* --- Image with Overlay --- */
.img-overlay-section {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}

.img-overlay-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.img-overlay-content {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(58, 26, 10, 0.88) 0%, rgba(90, 40, 15, 0.60) 100%);
}

.img-overlay-content h2, .img-overlay-content p, .img-overlay-content .eyebrow {
  color: rgba(255, 255, 255, 0.95);
}

.img-overlay-content .eyebrow { color: var(--fire-light); }
.img-overlay-content p { color: rgba(255, 220, 180, 0.9); }

/* --- Netzwerk Banner --- */
.netzwerk-banner {
  background: linear-gradient(90deg, var(--bg-warm), var(--surface-glow));
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.netzwerk-banner p {
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, var(--bg-warm), var(--bg));
  border-top: 1px solid var(--line-warm);
  padding: 64px 28px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto 40px;
  align-items: end;
}

.footer-grid h2 { margin: 8px 0 16px; }

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-meta {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-meta-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- Legal Pages --- */
.legal-page { background: var(--bg); }

.legal-wrap {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
}

.legal-wrap h1 { margin-bottom: 32px; }

.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: 1.5rem;
  margin: 28px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-card h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-card p, .legal-card li {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-card ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-card a {
  color: var(--fire-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-back { margin-top: 40px; }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 250, 242, 0.97);
  border-top: 1px solid var(--line-warm);
  box-shadow: 0 -4px 24px rgba(180, 80, 20, 0.12);
  padding: 20px 28px;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.cookie-inner a { color: var(--fire-gold); text-decoration: underline; }

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-amber), var(--fire-orange));
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(217, 98, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 90;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(217, 98, 42, 0.5);
}

/* --- Responsive --- */
@media (max-width: 980px) {
  :root { --section-pad: 64px; }

  .hero,
  .two-col,
  .two-col-reverse,
  .split-band,
  .focus,
  .footer-grid,
  .grid-three {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; padding-top: 48px; }
  .hero-copy h1 { max-width: 14ch; }

  .visual-card {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid var(--line-warm);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 10px 16px;
    border-radius: 8px;
  }

  .nav a:hover { background: var(--surface-glow); }

  .menu-toggle { display: inline-flex; }

  .topbar { position: relative; }

  .intro-band { padding: 36px 28px; margin: 0 16px; }

  .invitation { margin: 0 16px; }
  .invitation-inner { padding: 48px 32px; }

  .grid-two { grid-template-columns: 1fr; }
  .grid-four { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 48px; }

  .section { padding: 48px 20px; }
  .topbar { padding: 12px 20px; }

  .hero-copy h1 { font-size: 2.4rem; }

  .focus-copy, .focus-quote { padding: 28px 24px; }

  .invitation-inner { padding: 36px 24px; }

  .legal-card { padding: 24px 20px; }

  .footer { padding: 48px 20px 32px; }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ina-acrostic { padding: 20px 24px; }

  .brand-text .eyebrow { display: none; }
}
