/* =================================================================
   KALAE SOLAR — warm, human, earthy, high-end
   Palette: cream #EFEBE4 · forest #3D5A40 · clay #A67B5B · ink #1A2019
   Type: Instrument Serif (display) · Inter (ui) · JetBrains Mono
================================================================= */

:root {
  --cream: #EFEBE4;
  --cream-2: #E6DFD2;
  --cream-3: #F5F1EA;
  --forest: #3D5A40;
  --forest-2: #2E4434;
  --forest-3: #1A2019;
  --clay: #A67B5B;
  --clay-2: #8F6B4D;
  --sand: #C9B896;
  --ink: #1A2019;
  --ink-2: #2B302B;
  --muted: #6E6B62;
  --line: rgba(26,32,25,0.12);
  --line-strong: rgba(26,32,25,0.22);
  --shadow-sm: 0 1px 0 rgba(26,32,25,0.06), 0 2px 8px rgba(26,32,25,0.04);
  --shadow-md: 0 8px 32px rgba(26,32,25,0.08);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --container: 1280px;
  --gut: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

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

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(56px, 8.4vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.display em { font-style: italic; color: var(--clay); }

.section-title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
}
.section-title em { font-style: italic; color: var(--clay); }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--forest);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .dot,
.nav-phone .dot,
.hero-a-eyebrow .dot,
.hero-b-eyebrow .dot,
.hero-c-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--clay);
  display: inline-block;
}
.cap-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head {
  max-width: 780px;
  margin: 0 0 64px;
}
.section-sub {
  font-size: 18px; color: var(--muted); margin-top: 20px; max-width: 60ch;
  text-wrap: pretty;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 200ms cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 18px 28px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--forest);
  color: var(--cream-3);
}
.btn-primary:hover { background: var(--forest-2); transform: translateY(-1px); }

.btn-dark {
  background: var(--ink);
  color: var(--cream-3);
}
.btn-dark:hover { background: var(--ink-2); }

.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--cream-3);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); }

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost-dark:hover { background: rgba(26,32,25,0.04); }

.link-under {
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  transition: border-color 160ms;
}
.link-under:hover { border-color: var(--clay); color: var(--clay); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 240ms, backdrop-filter 240ms, box-shadow 240ms;
  padding: 18px 0;
}
.nav-scrolled {
  background: rgba(239,235,228,0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--forest);
}
.nav-links {
  display: flex; gap: 32px; justify-self: center;
  font-size: 14px; color: var(--ink);
}
.nav-links a:hover { color: var(--clay); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink);
}
.nav-phone:hover { color: var(--clay); }

/* Hero A on top — nav needs contrast over dark bg */
body.hero-a-active .nav:not(.nav-scrolled) { color: var(--cream-3); }
body.hero-a-active .nav:not(.nav-scrolled) .nav-logo,
body.hero-a-active .nav:not(.nav-scrolled) .nav-links a,
body.hero-a-active .nav:not(.nav-scrolled) .nav-phone { color: var(--cream-3); }

/* ---------- HERO A — Emotional fullscreen ---------- */
.hero-a {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--cream-3);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-a-media { position: absolute; inset: 0; z-index: 0; }
.hero-a-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,32,25,0.45) 0%, rgba(26,32,25,0.1) 28%, rgba(26,32,25,0.3) 58%, rgba(26,32,25,0.85) 100%);
}
.hero-a-content {
  position: relative; z-index: 2;
  width: 100%;
}
.hero-a-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.hero-a-eyebrow-clean {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  color: rgba(245,241,234,0.7);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  gap: 12px;
}
.hero-a-eyebrow-clean .dot { background: var(--clay); }
.hero-a .display { max-width: 14ch; }
.hero-a-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  max-width: 52ch;
  margin: 32px 0 40px;
  color: rgba(245,241,234,0.85);
  text-wrap: pretty;
}
.hero-a-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-a-meta {
  margin-top: 72px;
  display: flex; gap: 56px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-a-meta > div { display: flex; flex-direction: column; gap: 2px; }
.hero-a-meta b { font-family: 'Instrument Serif', serif; font-size: 32px; font-weight: 400; line-height: 1; }
.hero-a-meta span { font-size: 12px; color: rgba(245,241,234,0.7); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-a-scroll {
  position: absolute; right: var(--gut); bottom: 32px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,241,234,0.75);
}
.scroll-line {
  width: 60px; height: 1px; background: rgba(245,241,234,0.4);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--cream-3);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ---------- HERO B — Cinematic wide ---------- */
.hero-b {
  padding: 140px 0 80px;
  background: var(--cream);
}
.hero-b-top { margin-bottom: 48px; display: flex; flex-direction: column; gap: 24px; }
.hero-b-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--forest);
  align-self: flex-start;
}
.hero-b-title { max-width: 12ch; }
.hero-b-media {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
  margin: 0 0 40px;
}
.hero-b-media > .ph { position: absolute; inset: 0; }
.hero-b-caption {
  position: absolute; left: 28px; bottom: 24px;
  display: flex; flex-direction: column; gap: 4px;
  color: var(--cream-3);
  z-index: 2;
}
.hero-b-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gut);
  align-items: end;
}
.hero-b-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
  text-wrap: pretty;
}
.hero-b-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; }

/* ---------- HERO C — Split editorial ---------- */
.hero-c {
  padding: 140px 0 100px;
  background: var(--cream);
}
.hero-c-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}
.hero-c-text { display: flex; flex-direction: column; gap: 28px; }
.hero-c-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--forest);
  align-self: flex-start;
}
.hero-c .display { max-width: 10ch; margin-top: -8px; }
.hero-c-sub {
  font-size: 18px; line-height: 1.55; max-width: 50ch; color: var(--muted); margin: 0;
  text-wrap: pretty;
}
.hero-c-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.hero-c-trust { margin-top: auto; padding-top: 32px; border-top: 1px solid var(--line); }
.trust-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item b { font-family: 'Instrument Serif', serif; font-size: 28px; font-weight: 400; line-height: 1; }
.trust-item span { font-size: 12px; color: var(--muted); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; }
.trust-sep { width: 1px; height: 32px; background: var(--line); }

.hero-c-visual {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
  min-height: 600px;
}
.hero-c-main { grid-row: 1 / 3; grid-column: 1; overflow: hidden; }
.hero-c-main > .ph { height: 100%; }
.hero-c-small { grid-column: 2; grid-row: 1; overflow: hidden; align-self: end; }
.hero-c-tag {
  grid-column: 2; grid-row: 2;
  padding: 20px 16px;
  background: var(--forest);
  color: var(--cream-3);
  display: flex; flex-direction: column; gap: 6px;
}

/* ---------- VALUE STRIP ---------- */
.value-strip {
  background: var(--cream);
  padding: clamp(60px, 8vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-card {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.value-card:last-child { border-right: 0; }
.value-k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--clay);
}
.value-card h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px; line-height: 1.1; margin: 0; font-weight: 400;
  letter-spacing: -0.01em;
}
.value-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* ---------- PACKAGES ---------- */
.packages {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-3);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.pkg {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0;
  display: flex; flex-direction: column;
  transition: all 320ms cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  overflow: hidden;
}
.pkg:hover { border-color: var(--ink); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg:hover .pkg-hero img { transform: scale(1.06); }
.pkg-popular { background: var(--forest); color: var(--cream-3); border-color: var(--forest); }
.pkg-popular:hover { border-color: var(--forest-2); }
.pkg-popular .pkg-num,
.pkg-popular .pkg-sub,
.pkg-popular .pkg-mini-spec span { color: rgba(245,241,234,0.65); }
.pkg-popular .pkg-mini-spec b { color: var(--cream-3); }
.pkg-popular .pkg-mini-spec { border-top-color: rgba(245,241,234,0.18); border-bottom-color: rgba(245,241,234,0.18); }
.pkg-popular .pkg-price-label,
.pkg-popular .pkg-price-tax { color: rgba(245,241,234,0.7); }
.pkg-popular .btn-dark { background: var(--clay); }
.pkg-popular .btn-dark:hover { background: var(--clay-2); }
.pkg-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--clay); color: var(--cream-3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px;
  z-index: 3;
}
.pkg-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.pkg-hero img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.pkg-hero-illus {
  background: var(--cream-3);
  aspect-ratio: 4/3;
}
.pkg-hero-illus svg { width: 100%; height: 100%; display: block; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.pkg:hover .pkg-hero-illus svg { transform: scale(1.04); }
.pkg-popular .pkg-hero-illus { background: #E8E2D5; }
.pkg-modal-media-illus { background: var(--cream-3); min-height: auto; aspect-ratio: 4/5; }
.pkg-modal-media-illus svg { width: 100%; height: 100%; }
.pkg-modal-media-overlay-illus { background: linear-gradient(180deg, rgba(26,32,25,0) 60%, rgba(26,32,25,0.88) 100%); }
.pkg-hero-kwp {
  position: absolute; bottom: 12px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0,0,0,0.55); color: var(--cream-3);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.pkg-body { padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.pkg-head { display: flex; flex-direction: column; gap: 6px; }
.pkg-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--muted);
}
.pkg-tier {
  font-family: 'Instrument Serif', serif;
  font-size: 32px; font-weight: 400; margin: 0;
  letter-spacing: -0.01em;
  line-height: 1;
}
.pkg-sub { font-size: 13px; color: var(--muted); margin: 4px 0 0; line-height: 1.45; min-height: 38px; }

.pkg-mini-spec {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pkg-mini-spec > div { display: flex; flex-direction: column; gap: 3px; }
.pkg-mini-spec span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.pkg-mini-spec b { font-size: 13px; font-weight: 500; }

.pkg-foot { display: flex; flex-direction: column; gap: 16px; margin-top: auto; }
.pkg-price { display: flex; flex-direction: column; gap: 2px; }
.pkg-price-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.pkg-price-num {
  font-family: 'Instrument Serif', serif;
  font-size: 44px; font-weight: 400; line-height: 1;
  letter-spacing: -0.02em;
}
.pkg-price-tax { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ---------- PACKAGE MODAL ---------- */
.pkg-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,12,10,0.68);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: modalFade 240ms ease-out;
  overscroll-behavior: contain;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.pkg-modal-inner {
  background: var(--cream);
  max-width: 1120px;
  width: 100%;
  max-height: 92vh;
  max-height: 92dvh; /* dynamic viewport — avoids iOS URL-bar jump */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  animation: modalIn 360ms cubic-bezier(.2,.7,.2,1);
  border-radius: var(--r-md);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
/* Close is a sibling of .pkg-modal-inner — fixed to viewport so it never
   scrolls out of reach. */
.pkg-modal-close {
  position: fixed;
  top: max(20px, env(safe-area-inset-top, 0px) + 16px);
  right: max(20px, env(safe-area-inset-right, 0px) + 16px);
  z-index: 210;
  width: 48px; height: 48px;
  background: rgba(26,32,25,0.78); color: var(--cream-3);
  border-radius: 999px;
  font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 180ms, transform 180ms;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.pkg-modal-close:hover { background: var(--ink); transform: scale(1.05); }
.pkg-modal-close:focus-visible { outline: 2px solid var(--cream-3); outline-offset: 3px; }
.pkg-modal-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.pkg-modal-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.pkg-modal-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,32,25,0) 40%, rgba(26,32,25,0.75) 100%);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--cream-3);
  gap: 8px;
}
.pkg-modal-media-overlay .cap-mono { color: var(--sand); }
.pkg-modal-media-overlay h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 56px; font-weight: 400; margin: 0; line-height: 1;
}
.pkg-modal-kwp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.1em;
  color: rgba(245,241,234,0.85);
  margin-top: 4px;
}
.pkg-modal-body {
  padding: 40px 44px;
  display: flex; flex-direction: column; gap: 28px;
}
.pkg-modal-head { display: flex; flex-direction: column; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pkg-modal-subtitle { font-size: 18px; line-height: 1.45; color: var(--ink); margin: 0; max-width: 40ch; }
.pkg-modal-price { display: flex; flex-direction: column; gap: 2px; }
.pkg-modal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.pkg-modal-col h5 { margin: 0 0 12px; color: var(--clay); font-weight: 500; }
.pkg-spec-modal {
  margin: 0; display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.pkg-spec-modal > div {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.pkg-spec-modal dt { color: var(--muted); font-weight: 400; margin: 0; }
.pkg-spec-modal dd { margin: 0; font-weight: 500; }

.pkg-modal-included h5 { margin: 0 0 12px; color: var(--clay); font-weight: 500; }
.pkg-modal-included ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;
}
.pkg-modal-included li { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.pkg-modal-included li svg { color: var(--forest); flex-shrink: 0; }

.pkg-modal-cta {
  margin-top: auto;
  padding-top: 20px;
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-start;
}

.pkg-included {
  background: var(--ink); color: var(--cream-3);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: center;
}
.pkg-included-head .cap-mono { color: var(--clay); }
.pkg-included-head h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 32px; font-weight: 400; margin: 12px 0 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
  max-width: 14ch;
}
.pkg-included-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 32px;
}
.pkg-included-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
}
.pkg-included-list li svg { color: var(--clay); flex-shrink: 0; }

/* ---------- PROCESS ---------- */
.process {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}
.process-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gut); align-items: end;
  max-width: none;
}
.process-sub { font-size: 18px; color: var(--muted); margin: 0; max-width: 40ch; text-wrap: pretty; }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.process-step { display: flex; flex-direction: column; gap: 20px; }
.process-step-img { overflow: hidden; }
.process-step-text { display: flex; flex-direction: column; gap: 8px; }
.process-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--clay);
}
.process-step h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px; font-weight: 400; margin: 0; letter-spacing: -0.01em;
  line-height: 1.1;
}
.process-step p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ---------- ABOUT ---------- */
.about {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--forest-3);
  color: var(--cream-3);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}
.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  grid-template-rows: 0.6fr 1fr;
  gap: 16px;
  aspect-ratio: 4/4.5;
}
.about-main-img {
  grid-row: 1 / 3; grid-column: 1; overflow: hidden;
}
.about-main-img > .ph { height: 100%; }
.about-sub-img { grid-column: 2; grid-row: 2; overflow: hidden; align-self: end; }
.about-quote-tag {
  position: absolute;
  top: 24px; right: 24px;
  padding: 10px 16px;
  background: var(--cream);
  color: var(--forest);
  z-index: 2;
}
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text .eyebrow { color: var(--clay); }
.about-text .eyebrow .dot { background: var(--clay); }
.about-text .section-title { color: var(--cream-3); }
.about-text .section-title em { color: var(--sand); }
.about-lead { font-size: 20px; line-height: 1.45; margin: 12px 0 0; color: rgba(232,226,213,0.9); text-wrap: pretty; }
.about-text > p { margin: 0; color: rgba(232,226,213,0.72); font-size: 15px; line-height: 1.65; max-width: 58ch; }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(232,226,213,0.18);
  border-bottom: 1px solid rgba(232,226,213,0.18);
  margin: 16px 0 8px;
}
.about-stats > div { display: flex; flex-direction: column; gap: 4px; }
.about-stats b { font-family: 'Instrument Serif', serif; font-size: 32px; font-weight: 400; line-height: 1; color: var(--sand); }
.about-stats span { font-size: 11px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(232,226,213,0.6); }
.about-text .link-under { color: var(--cream-3); border-color: rgba(232,226,213,0.4); align-self: flex-start; }
.about-text .link-under:hover { color: var(--sand); border-color: var(--sand); }

/* ---------- REFERENCES / COMPARE ---------- */
.refs {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-3);
}
.refs-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gut); align-items: end;
  max-width: none;
}
.refs-sub { font-size: 18px; color: var(--muted); margin: 0; max-width: 42ch; text-wrap: pretty; }

.refs-compare { margin-bottom: 80px; }
.compare-frame {
  position: relative;
  aspect-ratio: 21/10;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}
.compare-before, .compare-after {
  position: absolute; inset: 0;
}
.compare-before > .ph, .compare-after > .ph { position: absolute; inset: 0; }
.compare-label {
  position: absolute; top: 24px; left: 24px;
  background: rgba(26,32,25,0.7);
  color: var(--cream-3);
  padding: 6px 12px;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.compare-label-right { left: auto; right: 24px; }
.compare-handle {
  position: absolute; top: 0; bottom: 0;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}
.handle-line { width: 2px; height: 100%; background: var(--cream-3); box-shadow: 0 0 20px rgba(0,0,0,0.3); }
.handle-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--cream-3);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  color: var(--ink);
}
.handle-grip svg:first-child { transform: rotate(180deg); }
.compare-slider {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}
.compare-caption { margin-top: 16px; color: var(--muted); }

.refs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 96px;
}
.ref-card { display: flex; flex-direction: column; overflow: hidden; background: var(--cream); }
.ref-card > .ph { margin: 0; }
.ref-meta { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.ref-meta-top { display: flex; justify-content: space-between; align-items: center; }
.ref-meta-top span:first-child { font-family: 'Instrument Serif', serif; font-size: 22px; }
.ref-meta-top span:last-child { color: var(--muted); }
.ref-meta-bot { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }

.testimonial {
  padding: 56px 48px;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: end;
}
.testimonial blockquote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 30ch;
  text-wrap: pretty;
}
.testimonial blockquote em { color: var(--clay); }
.testi-attr { display: flex; align-items: center; gap: 16px; min-width: 240px; }
.testi-avatar { width: 56px; height: 56px; overflow: hidden; border-radius: 999px; flex-shrink: 0; }
.testi-avatar > .ph { height: 100%; }
.testi-attr b { display: block; font-weight: 500; }
.testi-attr span { font-size: 12px; color: var(--muted); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.faq-head { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.faq-sub { color: var(--muted); font-size: 16px; margin: 0; max-width: 36ch; text-wrap: pretty; }
.faq-phone {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 24px;
  background: var(--cream-3);
  border: 1px solid var(--line);
  align-self: flex-start;
  color: var(--ink);
  transition: border-color 200ms;
}
.faq-phone:hover { border-color: var(--forest); }
.faq-phone > div { display: flex; flex-direction: column; gap: 4px; }
.faq-phone .cap-mono { color: var(--muted); }
.faq-phone b { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; }

.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  text-align: left;
  font-size: 18px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color 180ms;
}
.faq-q:hover { color: var(--clay); }
.faq-q svg { flex-shrink: 0; color: var(--forest); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 300ms cubic-bezier(.2,.7,.2,1);
}
.faq-open .faq-a { max-height: 400px; }
.faq-a p { margin: 0 0 24px; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 64ch; }

/* ---------- CONTACT ---------- */
.contact {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--forest);
  color: var(--cream-3);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.contact-text { display: flex; flex-direction: column; gap: 24px; }
.contact-text .eyebrow { color: var(--sand); }
.contact-text .eyebrow .dot { background: var(--sand); }
.contact-text .section-title { color: var(--cream-3); }
.contact-text .section-title em { color: var(--sand); }
.contact-lead { font-size: 18px; line-height: 1.5; margin: 0; color: rgba(245,241,234,0.85); max-width: 42ch; text-wrap: pretty; }
.contact-points { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: rgba(245,241,234,0.9); }
.contact-points > div { display: flex; align-items: center; gap: 10px; }
.contact-points svg { color: var(--sand); flex-shrink: 0; }

.contact-advisor {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px 20px 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  margin-top: 12px;
  align-self: flex-start;
}
.advisor-photo { width: 56px; height: 56px; border-radius: 999px; overflow: hidden; flex-shrink: 0; }
.advisor-photo > .ph { height: 100%; }
.contact-advisor > div > .cap-mono { color: rgba(245,241,234,0.6); }
.contact-advisor b { display: block; font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 20px; margin: 2px 0; }
.contact-advisor span { font-size: 12px; color: rgba(245,241,234,0.7); }

.contact-form {
  background: var(--cream);
  color: var(--ink);
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display: flex; flex-direction: column; gap: 6px; }
.form-row span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color 180ms;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--forest); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(26,32,25,0.35); }
.form-legal { font-size: 11px; color: var(--muted); line-height: 1.5; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; }
.form-legal a { text-decoration: underline; }

.form-sent { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; padding: 20px 0; }
.form-sent-check { width: 56px; height: 56px; border-radius: 999px; background: var(--forest); color: var(--cream-3); display: flex; align-items: center; justify-content: center; }
.form-sent h3 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 30px; margin: 0; }
.form-sent p { margin: 0; color: var(--muted); max-width: 40ch; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--cream-3);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.3fr 2fr; gap: var(--gut);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(232,226,213,0.12);
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Instrument Serif', serif; font-size: 28px;
  color: var(--cream-3);
  margin-bottom: 16px;
}
.footer-brand p { max-width: 36ch; color: rgba(232,226,213,0.65); font-size: 14px; line-height: 1.55; margin: 0; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-cols h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-cols a, .footer-cols span {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: rgba(232,226,213,0.8);
  transition: color 160ms;
}
.footer-cols a:hover { color: var(--sand); }
.footer-bot {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(232,226,213,0.5);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em;
}
.footer-bot > div { display: flex; gap: 24px; }

/* ---------- TWEAKS PANEL ---------- */
.tweaks {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  background: var(--ink); color: var(--cream-3);
  padding: 20px 22px;
  width: 260px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
  font-size: 13px;
  display: none;
}
.tweaks.open { display: block; }
.tweaks h5 {
  margin: 0 0 14px; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sand);
}
.tweaks-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.tweaks-label { font-size: 11px; color: rgba(232,226,213,0.65); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.tweaks-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks-opt {
  padding: 8px 12px;
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--cream-3);
  border-radius: 999px;
  transition: all 160ms;
}
.tweaks-opt.active { background: var(--clay); border-color: var(--clay); color: var(--cream-3); }
.tweaks-opt:hover:not(.active) { border-color: rgba(255,255,255,0.3); }

/* ---------- SCROLL REVEAL + PARALLAX ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms cubic-bezier(.2,.7,.2,1), transform 900ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal .reveal { transition-delay: 80ms; }
.reveal.in-view .reveal:nth-child(2) { transition-delay: 120ms; }
.reveal.in-view .reveal:nth-child(3) { transition-delay: 180ms; }
.reveal.in-view .reveal:nth-child(4) { transition-delay: 240ms; }

.parallax-img {
  transition: transform 120ms linear;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .parallax-img { transform: none !important; transition: none; }
  .pkg-hero img { transition: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto 1fr; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .refs-grid { grid-template-columns: 1fr; }
  .hero-c-grid, .about-grid, .contact-grid, .faq-grid, .refs-head, .process-head, .hero-b-bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero-c-visual { min-height: 480px; }
  .hero-b-cta { justify-self: start; }
  .footer-top, .footer-cols { grid-template-columns: 1fr 1fr; }
  .pkg-included { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .pkg-included-list { grid-template-columns: repeat(2, 1fr); }
  .testimonial { grid-template-columns: 1fr; gap: 28px; padding: 40px 32px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .faq-head { position: static; }
}
@media (max-width: 900px) {
  .pkg-modal { padding: 0; }
  .pkg-modal-inner {
    grid-template-columns: 1fr;
    max-height: 100vh;
    max-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    align-self: stretch;
  }
  .pkg-modal-media {
    min-height: 240px;
    aspect-ratio: auto;
    height: 42vh;
    max-height: 340px;
  }
  .pkg-modal-body { padding: 28px 22px calc(32px + env(safe-area-inset-bottom, 0px)); gap: 22px; }
  .pkg-modal-grid { grid-template-columns: 1fr; gap: 24px; }
  .pkg-modal-included ul { grid-template-columns: 1fr; }
  .pkg-modal-media-overlay h3 { font-size: 36px; }
  .pkg-modal-media-overlay { padding: 20px 20px 20px; }
  .pkg-modal-subtitle { font-size: 16px; }
  .pkg-modal-cta { padding-top: 4px; }
  .pkg-modal-cta .btn { width: 100%; justify-content: center; }
  .pkg-modal-close {
    top: max(14px, env(safe-area-inset-top, 0px) + 10px);
    right: max(14px, env(safe-area-inset-right, 0px) + 10px);
    width: 44px; height: 44px; font-size: 26px;
  }
}

/* callback reassurance line */
.contact-callback {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(61,90,64,0.06);
  border-left: 2px solid var(--forest);
  font-size: 13px;
  color: var(--forest);
}
.contact-callback svg { color: var(--forest); flex-shrink: 0; }

/* footer 4th column for impressum */
.footer-cols { grid-template-columns: repeat(4, 1fr); }
.footer-cols > div > span { display: block; color: rgba(245,241,234,0.75); font-size: 13px; line-height: 1.55; }

/* ---------- SCENE ILLUSTRATION CONTAINERS ---------- */
/* Make scene SVGs fill their parents like photos did */
.hero-a-media > svg,
.hero-b-media > svg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero-c-main,
.hero-c-small { position: relative; }
.hero-c-main > svg,
.hero-c-small > svg { width: 100%; height: 100%; display: block; }
.hero-c-main { min-height: 480px; }
.hero-c-small { min-height: 200px; }

.process-step-img { aspect-ratio: 4/3; background: var(--cream-3); }
.process-step-img > svg { width: 100%; height: 100%; display: block; }

.about-main-img { position: relative; }
.about-main-img > svg { width: 100%; height: 100%; display: block; }
.about-sub-img > svg { width: 100%; height: 100%; display: block; aspect-ratio: 1/1; }
.about-sub-img { aspect-ratio: 1/1; }

.advisor-photo { width: 56px; height: 56px; border-radius: 999px; overflow: hidden; flex-shrink: 0; }
.advisor-photo > svg { width: 100%; height: 100%; display: block; }

.testi-avatar > svg { width: 100%; height: 100%; display: block; }

/* Parallax targets include svg now */
.parallax-img { will-change: transform; transition: transform 80ms linear; }

@media (max-width: 640px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .value-grid, .process-grid, .footer-cols { grid-template-columns: 1fr; }
  .value-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-card:last-child { border-bottom: 0; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .nav-right .nav-phone { display: none; }
  .hero-a-meta { gap: 28px; }
  .trust-row { gap: 16px; }
  .trust-sep { display: none; }
  .pkg-included-list { grid-template-columns: 1fr; }
  .footer-bot { flex-direction: column; gap: 16px; align-items: flex-start; }
  /* Shorter CTA text in nav on narrow phones so it doesn't overflow */
  .nav-right .btn-sm .btn-label-long { display: none; }
  .nav-right .btn-sm { padding: 8px 14px; font-size: 12px; }
}
@media (max-width: 380px) {
  /* Hide nav CTA entirely on very small phones (320px-range) */
  .nav-right .btn-sm { display: none; }
}

/* ---------- COOKIE-BANNER ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 300;
  padding: 16px clamp(16px, 3vw, 32px);
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  background: rgba(26, 32, 25, 0.96);
  color: #E8E2D5;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(245, 241, 234, 0.08);
  transform: translateY(120%);
  transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}
.cookie-banner.cookie-banner-in { transform: translateY(0); }
.cookie-banner.cookie-banner-out { transform: translateY(120%); }
.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner-text { flex: 1; min-width: 0; }
.cookie-banner-text strong {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  color: #F5F1EA;
  margin-bottom: 4px;
}
.cookie-banner-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.82);
  max-width: 72ch;
}
.cookie-banner-text em { font-style: italic; color: #C9B896; }
.cookie-banner-text a {
  color: #C9B896;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: #F5F1EA; }
.cookie-banner-btn {
  flex-shrink: 0;
  background: #E8E2D5;
  color: #1A2019;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: background 180ms, transform 180ms;
}
.cookie-banner-btn:hover { background: #FFFFFF; transform: translateY(-1px); }
.cookie-banner-btn:focus-visible { outline: 2px solid #C9B896; outline-offset: 3px; }

@media (max-width: 700px) {
  .cookie-banner { padding: 14px 16px; padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px)); }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-banner-text strong { font-size: 18px; }
  .cookie-banner-text p { font-size: 13px; }
  .cookie-banner-btn { width: 100%; padding: 14px 22px; }
}
