/* ============================================================
   PACIFIC POP — DESIGN SYSTEM
   "Ink & Paper" concept — warm off-white, near-black, sage accent
   ============================================================ */


:root {
  --color-paper: #f5f2ec;
  --color-paper-dark: #ede9e0;
  --color-ink: #1a1714;
  --color-ink-mid: #3d3830;
  --color-ink-light: #6b6357;
  --color-warm-white: #faf8f4;
  --color-sage: #7a9e7e;
  --color-sage-dark: #5c7d60;
  --color-sage-light: #a8c5ac;
  --color-sage-muted: #e8f0e9;
  --color-dark-section: #1a1714;
  --color-dark-surface: #252119;
  --color-border: rgba(26, 23, 20, 0.12);
  --color-border-strong: rgba(26, 23, 20, 0.25);

  --shadow-xs: 0 1px 3px rgba(26, 23, 20, 0.06), 0 1px 2px rgba(26, 23, 20, 0.04);
  --shadow-sm: 0 2px 6px rgba(26, 23, 20, 0.07), 0 1px 3px rgba(26, 23, 20, 0.05);
  --shadow-md: 0 4px 16px rgba(26, 23, 20, 0.08), 0 2px 6px rgba(26, 23, 20, 0.06);
  --shadow-lg: 0 8px 32px rgba(26, 23, 20, 0.10), 0 4px 12px rgba(26, 23, 20, 0.07);
  --shadow-xl: 0 16px 48px rgba(26, 23, 20, 0.12), 0 8px 20px rgba(26, 23, 20, 0.08);

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --nav-height: 72px;
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);

  --font-base: 'Albert Sans', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: clamp(2rem, 4vw, 3rem);
  --text-5xl: clamp(2.75rem, 6vw, 4.5rem);
  --text-display: clamp(3rem, 8vw, 6rem);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-base);
  background-color: var(--color-paper);
  color: var(--color-ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; transition: color var(--transition-base), opacity var(--transition-base); }

ul, ol { list-style: none; }

button { font-family: var(--font-base); cursor: pointer; border: none; background: none; }


.surface { background: var(--color-paper); }
.surface-raised {
  background: var(--color-warm-white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.surface-inset {
  background: var(--color-paper-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.surface-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.10);
}


.text-display {
  font-size: var(--text-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}
.text-heading {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
.text-body {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-ink-mid);
}
.text-caption {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sage);
}


.space-section { padding: var(--space-3xl) 0; }
.space-card { padding: var(--space-lg); }


.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}


.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-ink);
  color: var(--color-warm-white);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.action-primary:hover {
  background: var(--color-ink-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.action-primary:active { transform: translateY(0); }

.action-primary--light {
  background: var(--color-warm-white);
  color: var(--color-ink);
}
.action-primary--light:hover { background: var(--color-paper); }

.action-primary--large {
  padding: 1.125rem 2.25rem;
  font-size: var(--text-base);
}

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-ink);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid var(--color-border-strong);
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-fast);
}
.action-ghost:hover {
  border-color: var(--color-ink);
  background: rgba(26, 23, 20, 0.04);
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.site-header.nav-solid {
  background: var(--color-warm-white);
  box-shadow: var(--shadow-sm);
}
.site-header.nav-dark-mode {
  background: transparent;
}

.nav-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--container-pad);
  max-width: 100%;
}

.nav-logo img { transition: opacity var(--transition-base); }
.nav-logo:hover img { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-ink);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-base);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--color-sage);
  transition: right var(--transition-base);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--color-sage-dark); font-weight: 600; }


.site-header.over-dark .nav-links a { color: var(--color-warm-white); }
.site-header.over-dark .nav-links a::after { background: var(--color-sage-light); }
.site-header.over-dark .nav-links a[aria-current="page"] { color: var(--color-sage-light); }


.breadcrumb {
  background: var(--color-paper-dark);
  border-bottom: 1px solid var(--color-border);
  padding: 0.5rem var(--container-pad);
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  color: var(--color-ink-light);
}
.breadcrumb ol li::after { content: '/'; margin-left: 0.5rem; opacity: 0.5; }
.breadcrumb ol li:last-child::after { display: none; }
.breadcrumb ol li a { color: var(--color-ink-light); transition: color var(--transition-fast); }
.breadcrumb ol li a:hover { color: var(--color-sage-dark); }
.breadcrumb ol li[aria-current="page"] { color: var(--color-ink); font-weight: 500; }


.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.site-header.over-dark .nav-hamburger span { background: var(--color-warm-white); }


.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100%;
  z-index: 1000;
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}
.mobile-menu.is-open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}
.mobile-menu-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 100%);
  height: 100%;
  background: var(--color-ink);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
}
.mobile-menu-close {
  align-self: flex-end;
  color: var(--color-warm-white);
  font-size: 1.5rem;
  padding: 8px;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition-fast);
}
.mobile-menu-close:hover { color: var(--color-sage-light); }

.mobile-nav-links {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.mobile-nav-links li { opacity: 0; transform: translateX(20px); transition: opacity 0.3s ease, transform 0.3s ease; }
.mobile-menu.is-open .mobile-nav-links li { opacity: 1; transform: translateX(0); }
.mobile-menu.is-open .mobile-nav-links li:nth-child(1) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-nav-links li:nth-child(2) { transition-delay: 0.31s; }
.mobile-menu.is-open .mobile-nav-links li:nth-child(3) { transition-delay: 0.37s; }
.mobile-menu.is-open .mobile-nav-links li:nth-child(4) { transition-delay: 0.43s; }
.mobile-menu.is-open .mobile-nav-links li:nth-child(5) { transition-delay: 0.49s; }

.mobile-nav-links a {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-warm-white);
  letter-spacing: -0.01em;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.mobile-nav-links a:hover { color: var(--color-sage-light); transform: translateX(4px); }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.mobile-menu-overlay.is-visible { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.section-hero {
  min-height: 100vh;
  background: var(--color-dark-section);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 0;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--container-pad) var(--space-2xl);
  z-index: 2;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}

.hero-figure { height: 100%; }
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.05);
}

.hero-eyebrow { color: var(--color-sage-light); margin-bottom: var(--space-md); }

.hero-heading {
  font-size: var(--text-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--color-warm-white);
  margin-bottom: var(--space-lg);
}

.hero-sub {
  color: rgba(250, 248, 244, 0.7);
  font-size: var(--text-lg);
  max-width: 420px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.hero-actions .action-ghost {
  color: var(--color-warm-white);
  border-color: rgba(250, 248, 244, 0.3);
}
.hero-actions .action-ghost:hover {
  border-color: var(--color-warm-white);
  background: rgba(250, 248, 244, 0.08);
}


.hero-steps {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 0;
  padding: var(--space-lg) var(--container-pad);
  border-top: 1px solid rgba(250, 248, 244, 0.1);
  background: rgba(37, 33, 25, 0.8);
  overflow-x: auto;
  z-index: 2;
}

.step-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}
.step-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(122, 158, 126, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-sage-light);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.step-text strong {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-warm-white);
  white-space: nowrap;
}
.step-text span {
  display: block;
  font-size: 0.7rem;
  color: rgba(250, 248, 244, 0.5);
  white-space: nowrap;
}
.step-connector {
  width: 32px; height: 1px;
  background: rgba(250, 248, 244, 0.2);
  flex-shrink: 0;
  margin: 0 var(--space-xs);
}

/* ============================================================
   EDITORIAL SECTION
   ============================================================ */
.section-editorial { background: var(--color-paper); }
.editorial-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 80px 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
}

.editorial-label {
  display: flex;
  align-items: flex-start;
  padding-top: 0.5rem;
}
.label-rotated {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: var(--color-ink-light);
  letter-spacing: 0.12em;
}

.editorial-body h2 { margin-bottom: var(--space-md); }
.editorial-body p + p { margin-top: var(--space-sm); }

.editorial-aside figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ============================================================
   STICKY SCROLL SECTION
   ============================================================ */
.section-sticky { background: var(--color-dark-section); padding: 0; }
.sticky-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.sticky-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.sticky-figure { height: 100%; }
.sticky-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.sticky-figure figcaption {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  color: rgba(250, 248, 244, 0.6);
}

.sticky-content {
  padding: var(--space-3xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.sticky-article { border-top: 1px solid rgba(250, 248, 244, 0.1); padding-top: var(--space-xl); }
.article-number {
  display: block;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
  font-size: var(--text-xs);
}
.sticky-article h2 {
  color: var(--color-warm-white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}
.sticky-article p { color: rgba(250, 248, 244, 0.7); }
.sticky-article p + p { margin-top: var(--space-sm); }

.feature-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.feature-list li {
  color: rgba(250, 248, 244, 0.65);
  font-size: var(--text-sm);
  padding-left: var(--space-md);
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-sage);
}

/* ============================================================
   PLANTS SLIDER
   ============================================================ */
.section-slider { background: var(--color-paper); }
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header .text-caption { margin-bottom: var(--space-xs); }
.section-header h2 { margin-bottom: var(--space-sm); }
.section-intro { max-width: 600px; margin: 0 auto; color: var(--color-ink-light); }

.plant-card { overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.plant-card-image { overflow: hidden; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.plant-card-image img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.plant-card:hover .plant-card-image img { transform: scale(1.04); }

.plant-card-image--text {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-sage-muted);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.plant-icon-large { font-size: 4rem; color: var(--color-sage); }

.plant-card-body { padding: var(--space-md); flex: 1; }
.plant-name { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-xs); }
.plant-light { color: var(--color-ink-light); margin-bottom: var(--space-sm); }
.plant-light i { color: var(--color-sage); margin-right: 4px; }
.plant-features { margin-top: var(--space-sm); display: flex; flex-direction: column; gap: 4px; }
.plant-features li {
  font-size: var(--text-sm);
  color: var(--color-ink-light);
  padding-left: var(--space-sm);
  position: relative;
}
.plant-features li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--color-sage);
}


.swiper { padding-bottom: 3rem !important; }
.swiper-pagination-bullet { background: var(--color-sage) !important; opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1 !important; }
.swiper-button-prev, .swiper-button-next {
  color: var(--color-sage) !important;
  --swiper-navigation-size: 22px;
}
.swiper-button-prev { left: 0 !important; }
.swiper-button-next { right: 0 !important; }

/* ============================================================
   GLASS SECTION
   ============================================================ */
.section-glass {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}
.glass-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.glass-bg-image {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
}
.section-glass .container { position: relative; z-index: 1; }

.glass-header { text-align: center; margin-bottom: var(--space-xl); }

.glass-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.glass-card {
  padding: var(--space-lg);
  color: var(--color-warm-white);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.glass-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }
.glass-card-icon { font-size: 1.75rem; color: var(--color-sage-light); margin-bottom: var(--space-sm); }
.glass-card h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-xs); }
.glass-card p { font-size: var(--text-sm); opacity: 0.8; line-height: 1.6; }

.glass-cta { text-align: center; }

/* ============================================================
   GIFTS SECTION
   ============================================================ */
.section-gifts { background: var(--color-paper-dark); }
.gifts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.gifts-text .text-caption { margin-bottom: var(--space-xs); }
.gifts-text h2 { margin-bottom: var(--space-md); }
.gifts-text p { margin-bottom: var(--space-lg); }
.gifts-visual figure img {
  width: 100%; height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   CTA SPLIT
   ============================================================ */
.section-cta-split { background: var(--color-dark-section); }
.cta-split-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  align-items: center;
}
.cta-split-inner--light { background: var(--color-paper-dark); }
.cta-split-inner--light .cta-heading,
.cta-split-inner--light .text-body { color: var(--color-ink); }
.cta-split-inner--light .text-caption { color: var(--color-sage-dark); }

.cta-split-left .text-caption { margin-bottom: var(--space-xs); }
.cta-heading { color: var(--color-warm-white); margin-bottom: var(--space-md); }
.cta-split-left .text-body { color: rgba(250, 248, 244, 0.65); max-width: 480px; }
.cta-split-right { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
.cta-sub { color: rgba(250, 248, 244, 0.4); margin-top: 0; }

/* ============================================================
   CONTACT PREVIEW
   ============================================================ */
.section-contact-preview { background: var(--color-paper); }
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.contact-card {
  padding: var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-card-icon {
  font-size: 1.25rem;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
}
.contact-card-title {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-ink);
}
.contact-card address, .contact-card p { font-size: var(--text-sm); color: var(--color-ink-mid); line-height: 1.6; font-style: normal; }
.contact-link { color: var(--color-ink-mid); font-size: var(--text-sm); transition: color var(--transition-fast); }
.contact-link:hover { color: var(--color-sage-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-paper-dark);
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-logo img { opacity: 0.7; transition: opacity var(--transition-base); }
.footer-logo:hover img { opacity: 1; }
.footer-nav { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.footer-nav a {
  font-size: var(--text-xs);
  color: var(--color-ink-light);
  font-weight: 500;
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--color-sage-dark); }
.footer-copy { font-size: var(--text-xs); color: var(--color-ink-light); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-main { padding-top: var(--nav-height); }
.page-hero { background: var(--color-paper); border-bottom: 1px solid var(--color-border); }
.page-hero-inner { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.page-hero-inner .text-caption { margin-bottom: var(--space-sm); }
.page-hero-inner .text-display { margin-bottom: var(--space-md); }
.page-hero-sub { max-width: 640px; color: var(--color-ink-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-2xl);
  align-items: start;
}
.about-text .text-caption { margin-bottom: var(--space-sm); }
.about-text h2 { margin-bottom: var(--space-md); }
.about-text p + p { margin-top: var(--space-sm); }
.about-visual figure img {
  width: 100%; height: 580px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.section-values { background: var(--color-dark-section); }
.section-values .section-header .text-heading { color: var(--color-warm-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.value-card {
  padding: var(--space-lg);
  background: var(--color-dark-surface) !important;
  border-color: rgba(250, 248, 244, 0.08) !important;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 1.5rem; color: var(--color-sage); margin-bottom: var(--space-sm); }
.value-card h3 { color: var(--color-warm-white); font-size: var(--text-xl); margin-bottom: var(--space-xs); }
.value-card p { color: rgba(250, 248, 244, 0.65); font-size: var(--text-sm); }

.section-approach { background: var(--color-paper); }
.approach-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
.approach-header .text-caption { margin-bottom: var(--space-sm); }
.approach-lead { font-size: var(--text-lg); font-weight: 500; color: var(--color-ink); line-height: 1.6; margin-bottom: var(--space-md); }
.approach-content p + p { margin-top: var(--space-sm); }

/* ============================================================
   GIFTS PAGE
   ============================================================ */
.section-gifts-intro { background: var(--color-paper); }
.gifts-intro-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-2xl);
  align-items: center;
}
.gifts-intro-text .text-caption { margin-bottom: var(--space-sm); }
.gifts-intro-text h2 { margin-bottom: var(--space-md); }
.gifts-intro-text p + p { margin-top: var(--space-sm); }
.gifts-intro-image img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.section-sets { background: var(--color-paper-dark); }
.sets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.set-card { overflow: hidden; }
.set-card-header {
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.set-card-header--green { background: var(--color-sage-muted); }
.set-card-header--sand { background: #f0ebe0; }
.set-card-header--dark { background: var(--color-paper-dark); }
.set-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
}
.set-icon { font-size: 1.75rem; color: var(--color-sage); }
.set-card-body { padding: var(--space-lg); }
.set-card-body h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-sm); }
.set-card-body p { font-size: var(--text-sm); color: var(--color-ink-mid); margin-bottom: var(--space-sm); line-height: 1.6; }
.set-card-body ul { display: flex; flex-direction: column; gap: 4px; }
.set-card-body li {
  font-size: var(--text-xs);
  color: var(--color-ink-light);
  padding-left: var(--space-sm);
  position: relative;
}
.set-card-body li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--color-sage);
}

.section-gift-process { background: var(--color-dark-section); }
.section-gift-process .section-header .text-heading { color: var(--color-warm-white); }
.process-steps {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 200px;
  padding: var(--space-lg);
  background: var(--color-dark-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(250, 248, 244, 0.08);
  text-align: center;
}
.process-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-sage-dark);
  color: var(--color-warm-white);
  font-size: var(--text-xl);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-sm);
}
.process-step h3 { color: var(--color-warm-white); font-size: var(--text-lg); margin-bottom: var(--space-xs); }
.process-step p { color: rgba(250, 248, 244, 0.6); font-size: var(--text-sm); }
.process-connector { color: var(--color-sage); font-size: 1.25rem; flex-shrink: 0; }

/* ============================================================
   LIGHT GUIDE PAGE
   ============================================================ */
.section-light-intro { background: var(--color-paper); }
.light-intro-inner { max-width: 900px; margin: 0 auto; }
.light-intro-inner h2 { margin-bottom: var(--space-md); }
.light-lead { font-size: var(--text-lg); line-height: 1.7; margin-bottom: var(--space-xl); }
.light-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.light-method {
  padding: var(--space-lg);
}
.light-method i { font-size: 1.5rem; color: var(--color-sage); margin-bottom: var(--space-sm); display: block; }
.light-method h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-xs); }
.light-method p { font-size: var(--text-sm); color: var(--color-ink-light); line-height: 1.65; }

.section-light-types { background: var(--color-dark-section); }
.section-light-types .section-header .text-heading { color: var(--color-warm-white); }

.light-types-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}
.light-accordion-item {
  background: var(--color-dark-surface);
  border: 1px solid rgba(250, 248, 244, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.light-accordion-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  list-style: none;
  transition: background var(--transition-fast);
}
.light-accordion-header:hover { background: rgba(250, 248, 244, 0.04); }
.light-icon { color: var(--color-sage-light); font-size: 1.25rem; flex-shrink: 0; width: 32px; }
.light-title { color: var(--color-warm-white); font-weight: 700; font-size: var(--text-lg); flex: 1; }
.light-desc { color: rgba(250, 248, 244, 0.5); font-size: var(--text-sm); }
.light-chevron { color: var(--color-sage); transition: transform var(--transition-base); margin-left: auto; }
details[open] .light-chevron { transform: rotate(180deg); }
.light-accordion-body {
  padding: 0 var(--space-lg) var(--space-lg);
}
.light-accordion-body p { color: rgba(250, 248, 244, 0.7); font-size: var(--text-sm); margin-bottom: var(--space-md); }
.plant-list-light { display: flex; flex-direction: column; gap: var(--space-xs); }
.plant-list-light li {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(250, 248, 244, 0.05);
}
.plant-list-light li strong { color: var(--color-warm-white); font-size: var(--text-sm); min-width: 180px; }
.plant-list-light li span { color: rgba(250, 248, 244, 0.5); font-size: var(--text-sm); }

.section-pflegetipps { background: var(--color-paper); }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.tip-card { padding: var(--space-lg); transition: transform var(--transition-base), box-shadow var(--transition-base); }
.tip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tip-icon { font-size: 1.5rem; color: var(--color-sage); margin-bottom: var(--space-sm); }
.tip-card h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-sm); }
.tip-card p { font-size: var(--text-sm); color: var(--color-ink-light); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-main { padding-top: calc(var(--nav-height) + 48px); }
.contact-tips-section { background: var(--color-paper); }
.contact-tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-info-block .text-caption { margin-bottom: var(--space-xs); }
.contact-info-block h1 { margin-bottom: var(--space-sm); }
.contact-info-block > .text-body { margin-bottom: var(--space-lg); }

.contact-tips-list { margin-bottom: var(--space-lg); }
.tips-heading { display: block; margin-bottom: var(--space-sm); color: var(--color-ink-light); }
.contact-tips-list ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-tips-list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.contact-tips-list li i { color: var(--color-sage); margin-top: 0.2em; flex-shrink: 0; }
.contact-tips-list li strong { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--color-ink); }
.contact-tips-list li span { display: block; font-size: var(--text-sm); color: var(--color-ink-light); line-height: 1.5; }

.contact-address-block { font-style: normal; display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-address-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-ink-mid);
}
.contact-address-item i { color: var(--color-sage); width: 18px; }
.contact-address-item a { color: var(--color-ink-mid); transition: color var(--transition-fast); }
.contact-address-item a:hover { color: var(--color-sage-dark); }


.contact-form-block { background: var(--color-warm-white); padding: var(--space-xl); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink);
}
.form-field label abbr { color: var(--color-sage-dark); text-decoration: none; margin-left: 2px; }
.form-field input,
.form-field textarea {
  font-family: var(--font-base);
  font-size: var(--text-sm);
  color: var(--color-ink);
  background: var(--color-paper);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  min-height: 44px;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.15);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-helper { font-size: var(--text-xs); color: var(--color-ink-light); }
.form-field--checkbox { flex-direction: row; align-items: flex-start; gap: var(--space-sm); }
.checkbox-label { display: flex; align-items: flex-start; gap: var(--space-sm); cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--color-sage); cursor: pointer; }
.checkbox-label span { font-size: var(--text-sm); color: var(--color-ink-light); line-height: 1.5; }
.checkbox-label a { color: var(--color-sage-dark); text-decoration: underline; }
.form-note { font-size: var(--text-xs); color: var(--color-ink-light); }
.form-submit { width: 100%; justify-content: center; }

.section-map { padding: 0; }
.map-container iframe { display: block; }

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-main {
  min-height: calc(100vh - var(--nav-height) - 60px);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}
.thanks-section { width: 100%; padding: var(--space-3xl) 0; }
.thanks-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-pad);
}
.thanks-icon { font-size: 4rem; color: var(--color-sage); margin-bottom: var(--space-lg); }
.thanks-heading { margin-bottom: var(--space-md); }
.thanks-body { color: var(--color-ink-light); margin-bottom: var(--space-xl); }
.thanks-actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { background: var(--color-paper); }
.legal-container { max-width: 780px; padding-top: var(--space-2xl); padding-bottom: var(--space-3xl); }
.legal-header { margin-bottom: var(--space-2xl); border-bottom: 2px solid var(--color-border-strong); padding-bottom: var(--space-lg); }
.legal-header .text-caption { margin-bottom: var(--space-sm); }
.legal-header .text-display { margin-bottom: var(--space-sm); }
.legal-date { color: var(--color-ink-light); }

.legal-content h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-ink);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}
.legal-content p + p { margin-top: var(--space-sm); }
.legal-intro { font-size: var(--text-lg); line-height: 1.7; margin-bottom: var(--space-md); }

.term-highlight {
  background: rgba(122, 158, 126, 0.12);
  color: var(--color-sage-dark);
  padding: 0 3px;
  border-radius: 2px;
}
.term-definition {
  background: var(--color-sage-muted);
  border-left: 3px solid var(--color-sage);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-ink-mid);
  line-height: 1.65;
}
.term-definition strong { color: var(--color-ink); }

.legal-list {
  list-style: disc;
  padding-left: var(--space-lg);
  margin: var(--space-sm) 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-list li { font-size: var(--text-sm); color: var(--color-ink-mid); }
.legal-address { font-style: normal; font-size: var(--text-sm); color: var(--color-ink-mid); line-height: 1.8; margin: var(--space-sm) 0; }
.legal-address a { color: var(--color-sage-dark); }
.legal-footnote { display: block; font-size: var(--text-xs); color: var(--color-ink-light); margin-top: var(--space-xl); border-top: 1px solid var(--color-border); padding-top: var(--space-sm); }


.legal-content--clauses .legal-clause { margin-bottom: var(--space-xl); }
.legal-clause h2 { margin-top: 0; }


.cookie-table-wrapper { overflow-x: auto; margin: var(--space-md) 0; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.cookie-table th {
  background: var(--color-paper-dark);
  color: var(--color-ink);
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--color-border-strong);
}
.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-ink-mid);
  vertical-align: top;
}
.cookie-table code {
  background: var(--color-paper-dark);
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  font-family: monospace;
  font-size: 0.85em;
  color: var(--color-sage-dark);
}


.impressum-section { margin-bottom: var(--space-xl); }
.impressum-section h2 { margin-top: 0; }
.impressum-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); margin-top: var(--space-sm); }
.impressum-table th {
  text-align: left;
  width: 200px;
  padding: 0.6rem 1rem 0.6rem 0;
  font-weight: 600;
  color: var(--color-ink);
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}
.impressum-table td {
  padding: 0.6rem 0;
  color: var(--color-ink-mid);
  border-bottom: 1px solid var(--color-border);
}
.impressum-table a { color: var(--color-sage-dark); }

/* ============================================================
   COOKIE CONSENT — bottom-expandable-card
   ============================================================ */
#cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 520px;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.4s ease;
}
#cookie-consent.is-expanded { max-width: 680px; }

.cookie-card {
  background: var(--color-ink);
  color: var(--color-warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(250,248,244,0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-card-compact {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  flex-wrap: wrap;
}
.cookie-card-compact p { font-size: var(--text-sm); opacity: 0.8; flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-card-compact a { color: var(--color-sage-light); text-decoration: underline; }
.cookie-compact-actions { display: flex; gap: var(--space-xs); flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--color-sage);
  color: var(--color-ink);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  min-height: 44px;
  transition: background var(--transition-fast);
}
.cookie-btn-accept:hover { background: var(--color-sage-light); }
.cookie-btn-settings {
  background: transparent;
  color: rgba(250, 248, 244, 0.7);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  border: 1px solid rgba(250, 248, 244, 0.2);
  min-height: 44px;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.cookie-btn-settings:hover { border-color: rgba(250, 248, 244, 0.5); color: var(--color-warm-white); }

.cookie-card-expanded {
  display: none;
  padding: var(--space-lg);
  border-top: 1px solid rgba(250, 248, 244, 0.1);
}
.cookie-card-expanded.is-visible { display: block; }
.cookie-card-expanded h3 { font-size: var(--text-lg); margin-bottom: var(--space-sm); }
.cookie-card-expanded p { font-size: var(--text-sm); opacity: 0.7; margin-bottom: var(--space-md); }

.cookie-category { display: flex; align-items: center; justify-content: space-between; padding: var(--space-sm) 0; border-bottom: 1px solid rgba(250,248,244,0.08); }
.cookie-category-info strong { display: block; font-size: var(--text-sm); }
.cookie-category-info span { font-size: var(--text-xs); opacity: 0.6; }
.cookie-toggle { position: relative; width: 44px; height: 24px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(250,248,244,0.2);
  border-radius: 24px;
  transition: background var(--transition-base);
  cursor: pointer;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: var(--color-warm-white);
  border-radius: 50%;
  transition: transform var(--transition-base);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--color-sage); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: default; }

.cookie-expanded-actions { display: flex; gap: var(--space-sm); margin-top: var(--space-md); flex-wrap: wrap; }
.cookie-btn-save {
  background: var(--color-sage);
  color: var(--color-ink);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  min-height: 44px;
  transition: background var(--transition-fast);
}
.cookie-btn-save:hover { background: var(--color-sage-light); }
.cookie-btn-reject {
  background: transparent;
  color: rgba(250,248,244,0.6);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  border: 1px solid rgba(250,248,244,0.2);
  min-height: 44px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.cookie-btn-reject:hover { color: var(--color-warm-white); border-color: rgba(250,248,244,0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .editorial-grid { grid-template-columns: 60px 1fr 300px; }
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .section-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    min-height: auto;
  }
  .hero-content {
    grid-column: 1;
    grid-row: 1;
    padding-top: calc(var(--nav-height) + var(--space-xl));
  }
  .hero-visual {
    grid-column: 1;
    grid-row: 2;
    height: 50vh;
  }
  .hero-steps {
    grid-column: 1;
    grid-row: 3;
  }

  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-label { display: none; }
  .editorial-aside { display: none; }

  .sticky-container { grid-template-columns: 1fr; }
  .sticky-visual { display: none; }
  .sticky-content { padding: var(--space-2xl) var(--container-pad); }

  .glass-cards-grid { grid-template-columns: 1fr; }
  .gifts-grid { grid-template-columns: 1fr; }
  .gifts-visual { order: -1; }
  .gifts-visual figure img { height: 320px; }
  .cta-split-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .approach-inner { grid-template-columns: 1fr; }
  .sets-grid { grid-template-columns: 1fr; }
  .contact-tips-grid { grid-template-columns: 1fr; }
  .light-method-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .gifts-intro-grid { grid-template-columns: 1fr; }
  .gifts-intro-image { display: none; }
}

@media (max-width: 600px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
  }
  .hero-heading { font-size: clamp(2.5rem, 10vw, 4rem); }
  .text-display { font-size: clamp(2.25rem, 9vw, 3.5rem); }
  .text-heading { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero-steps { gap: var(--space-xs); padding: var(--space-md) var(--container-pad); }
  .step-connector { width: 20px; }
  .step-text { display: none; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .footer-nav { gap: var(--space-sm); }
  .process-steps { flex-direction: column; }
  .process-connector { transform: rotate(90deg); }
  .plant-list-light li { flex-direction: column; gap: 2px; }
  .plant-list-light li strong { min-width: unset; }
  #cookie-consent { width: calc(100% - 24px); bottom: 12px; }
  .cookie-card-compact { flex-direction: column; }
  .impressum-table th { width: 120px; }
  .light-accordion-header { flex-wrap: wrap; }
  .light-desc { display: none; }
}

@media (min-width: 961px) {
  .mobile-menu, .mobile-menu-overlay { display: none !important; }
}