/* =================================================================
   Yasin's Garten — Premium Website
   Design: NovaLink · Fraunces (Display) + Manrope (Text)
   ================================================================= */

@import url('../fonts/fonts.css'); /* lokal gehostet – keine externen Font-Requests (DSGVO) */

:root {
  /* Palette */
  --forest-900: #0d1a12;
  --forest-800: #14231a;
  --forest-700: #1c3325;
  --forest-600: #274b34;
  --moss:       #4a7c59;
  --moss-dark:  #35664a; /* AA-konform für kleine Labels auf Creme */
  --moss-light: #7fa878;
  --sage:       #b7cbaa;
  --cream:      #faf8f2;
  --cream-2:    #f2ede1;
  --sand:       #e6ddc9;
  --line:       rgba(20, 35, 26, 0.12);
  --line-light: rgba(250, 248, 242, 0.16);

  /* Type */
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Manrope', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --wrap: 1240px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--forest-800);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--moss); color: var(--cream); }

/* Sichtbarer Tastatur-Fokus (Accessibility) – nur bei Keyboard-Navigation */
:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Auf dunklen Flächen heller Fokusring für ausreichenden Kontrast */
.hero :focus-visible, .services :focus-visible, .stack-panel :focus-visible,
.cta-band :focus-visible, .page-hero :focus-visible, .site-footer :focus-visible,
.info-band :focus-visible, .mobile-menu :focus-visible,
.site-header.on-dark:not(.scrolled) :focus-visible {
  outline-color: var(--sage);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.02em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; display: inline-block;
}
.eyebrow.center::before { display: none; }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: rgba(20,35,26,0.72); max-width: 46ch; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { position: relative; }
.section-pad { padding: clamp(4.5rem, 10vw, 9rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.7rem;
  border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 17px; height: 17px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--forest-800); color: var(--cream); }
.btn-primary:hover { background: var(--moss); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--forest-800); background: transparent; }
.btn-ghost:hover { border-color: var(--forest-800); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--forest-800); }
.btn-light:hover { background: var(--sage); transform: translateY(-2px); }
.btn-outline-light { border-color: var(--line-light); color: var(--cream); }
.btn-outline-light:hover { border-color: var(--cream); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(250, 248, 242, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.on-dark:not(.scrolled) { color: var(--cream); }
.site-header.on-dark:not(.scrolled) .brand-name,
.site-header.on-dark:not(.scrolled) .nav-links a,
.site-header.on-dark:not(.scrolled) .header-phone { color: var(--cream); }
.site-header.on-dark:not(.scrolled) .brand-mark { border-color: var(--line-light); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--moss);
  transition: transform .5s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-12deg); }
.brand-mark svg { width: 20px; height: 20px; }
.brand-name { font-family: var(--serif); font-size: 1.28rem; letter-spacing: -0.02em; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-size: 0.94rem; font-weight: 500; position: relative; padding: 0.3rem 0; white-space: nowrap; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: currentColor; transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--moss); }

.header-right { display: flex; align-items: center; gap: 1.4rem; }
.header-phone { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.94rem; white-space: nowrap; }
.header-phone svg { width: 16px; height: 16px; color: var(--moss); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2px; background: currentColor; transition: .35s var(--ease); }

/* Früher aufs Burger-Menü umschalten, damit der Header (Nav + Nummer + CTA) nicht überläuft */
@media (max-width: 1150px) {
  .nav-links, .header-phone { display: none; }
  .burger { display: flex; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--forest-800); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.2rem); padding: 0.4rem 0; opacity: 0.85; }
.mobile-menu a:hover { opacity: 1; color: var(--moss-light); }
.mobile-menu .mm-foot { margin-top: 2.5rem; font-family: var(--sans); font-size: 1rem; display: flex; flex-direction: column; gap: 0.5rem; opacity: 0.7; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(13,26,18,0.94) 0%, rgba(13,26,18,0.78) 42%, rgba(13,26,18,0.42) 78%, rgba(13,26,18,0.28) 100%),
    linear-gradient(to top, rgba(13,26,18,0.72) 0%, rgba(13,26,18,0.15) 34%, rgba(13,26,18,0) 60%);
}
.hero-inner { padding-top: 8rem; padding-bottom: 4rem; max-width: 62rem; }
.hero h1 {
  font-size: clamp(3rem, 8.5vw, 7rem);
  font-weight: 300;
  margin: 1.6rem 0;
  letter-spacing: -0.035em;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero .eyebrow { color: var(--cream); }
.hero .lead { color: rgba(250,248,242,0.9); font-size: clamp(1.05rem, 1.5vw, 1.28rem); max-width: 40ch; }
.hero-inner { text-shadow: 0 1px 30px rgba(13,26,18,0.25); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; opacity: 0.7;
}
.hero-scroll .line { width: 1px; height: 42px; background: var(--cream); animation: scrollLine 2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollLine { 0%,100%{transform:scaleY(0.3);opacity:.4} 50%{transform:scaleY(1);opacity:1} }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border-radius: var(--radius); overflow: hidden; }
.hero .stats { margin-top: 4rem; max-width: 640px; background: rgba(250,248,242,0.14); }
.stat { padding: 1.8rem; background: transparent; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 400; line-height: 1; }
.stat .label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 0.6rem; opacity: 0.7; }

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; transition: transform 1.2s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin: 1.4rem 0 1.6rem; }
.split p + p { margin-top: 1.1rem; }
.split .btn { margin-top: 2rem; }
.media-badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: var(--cream); color: var(--forest-800);
  padding: 0.9rem 1.3rem; border-radius: 12px;
  font-family: var(--serif); font-size: 1.1rem;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.4);
}
.media-badge span { display: block; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss-dark); margin-top: 0.2rem; }

/* ---------- Section head ---------- */
.section-head { max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-top: 1.2rem; }

/* ---------- Services (big cards) ---------- */
.services { background: var(--forest-800); color: var(--cream); }
.services .eyebrow { color: var(--moss-light); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  position: relative; border-radius: var(--radius); overflow: hidden; isolation: isolate;
  min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; color: var(--cream);
  border: 1px solid var(--line-light);
}
.svc-card .svc-bg { position: absolute; inset: 0; z-index: -2; }
.svc-card .svc-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.svc-card--neubauten .svc-bg img { object-position: 35% center; }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(13,26,18,0.94) 0%, rgba(13,26,18,0.35) 55%, rgba(13,26,18,0.1) 100%); transition: opacity .4s; }
.svc-card:hover .svc-bg img { transform: scale(1.08); }
.svc-num { position: absolute; top: 1.5rem; left: 2rem; font-family: var(--serif); font-size: 1rem; opacity: 0.7; }
.svc-card h3 { font-size: 1.7rem; margin-bottom: 0.7rem; }
.svc-card p { font-size: 0.95rem; color: rgba(250,248,242,0.78); margin-bottom: 1.3rem; }
.svc-more { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--sage); }
.svc-more svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.svc-card:hover .svc-more svg { transform: translateX(5px); }

/* ---------- Marquee ---------- */
.marquee { background: var(--moss); color: var(--cream); padding: 1.1rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 1.35rem; font-style: italic; display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track span::after { content: "✳"; font-style: normal; font-size: 0.9rem; opacity: 0.6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Why / features ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature {
  padding: 2rem 1.8rem; border-radius: var(--radius);
  background: var(--cream-2); border: 1px solid var(--line);
  transition: transform .5s var(--ease), background .4s;
}
.feature:hover { transform: translateY(-6px); background: var(--cream); }
.feature-num { font-family: var(--serif); font-size: 2.8rem; line-height: 1; color: var(--moss); display: block; margin-bottom: 1.1rem; letter-spacing: -0.02em; }
.feature-num::after { content: ""; display: block; width: 34px; height: 2px; background: var(--sand); margin-top: 0.9rem; }
.feature-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--forest-800); color: var(--sage); display: grid; place-items: center; margin-bottom: 1.3rem; }
.feature-ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.feature p { font-size: 0.94rem; color: rgba(20,35,26,0.7); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 2.4rem; border-top: 1px solid var(--line); }
.step .step-num { font-family: var(--serif); font-size: 2.6rem; color: var(--moss); line-height: 1; margin-bottom: 0.8rem; }
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: rgba(20,35,26,0.68); }

/* ---------- Checklist ---------- */
.check-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 1.02rem; }
.check-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--moss); color: var(--cream); display: grid; place-items: center; margin-top: 2px; }
.check-list .tick svg { width: 14px; height: 14px; }

/* ---------- Sub-feature grid (icon rows) ---------- */
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.mini {
  padding: 1.9rem; border-radius: var(--radius); background: var(--cream-2);
  border: 1px solid var(--line); transition: transform .5s var(--ease);
}
.mini:hover { transform: translateY(-4px); }
.mini .mini-num { font-family: var(--serif); color: var(--moss-dark); font-size: 1.1rem; margin-bottom: 0.6rem; display: block; }
.mini h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.mini p { font-size: 0.94rem; color: rgba(20,35,26,0.7); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; color: var(--cream); border-radius: clamp(20px, 4vw, 32px); padding: clamp(3rem, 7vw, 6rem); }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(13,26,18,0.94), rgba(28,51,37,0.72)); }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); max-width: 20ch; margin-bottom: 1.2rem; }
.cta-band p { color: rgba(250,248,242,0.82); max-width: 44ch; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.cta-phone { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--serif); font-size: 1.4rem; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { position: relative; color: var(--cream); padding: 12rem 0 6rem; overflow: hidden; isolation: isolate; }
.page-hero .ph-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background:
    linear-gradient(100deg, rgba(13,26,18,0.92) 0%, rgba(13,26,18,0.74) 55%, rgba(13,26,18,0.5) 100%),
    linear-gradient(to top, rgba(13,26,18,0.6) 0%, rgba(13,26,18,0) 55%); }
.page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 300; margin: 1.4rem 0; max-width: 18ch; }
.page-hero h1 em { font-style: italic; color: var(--sage); }
.page-hero .lead { color: rgba(250,248,242,0.82); }
.page-hero .btn { margin-top: 2rem; }
.page-hero .eyebrow { color: var(--moss-light); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); }
.form-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3rem); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.field input, .field textarea {
  width: 100%; padding: 0.95rem 1.1rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--cream);
  font-family: var(--sans); font-size: 1rem; color: var(--forest-800);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--moss); box-shadow: 0 0 0 3px rgba(74,124,89,0.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: rgba(20,35,26,0.6); margin-top: 1rem; }

.contact-methods { display: grid; gap: 1rem; }
.cmethod { display: flex; align-items: center; gap: 1.1rem; padding: 1.3rem 1.5rem; border-radius: 14px; background: var(--cream-2); border: 1px solid var(--line); transition: transform .4s var(--ease), background .3s; }
.cmethod:hover { transform: translateX(5px); background: var(--cream); }
.cmethod .cm-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--forest-800); color: var(--sage); display: grid; place-items: center; flex-shrink: 0; }
.cmethod .cm-ic svg { width: 21px; height: 21px; }
.cmethod .cm-label { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss-dark); margin-bottom: 0.15rem; }
.cmethod .cm-value { display: block; font-family: var(--serif); font-size: 1.2rem; line-height: 1.15; word-break: break-word; }
.contact-address { margin-top: 1.5rem; padding: 1.3rem 1.5rem; border-radius: 14px; border: 1px dashed var(--line); font-size: 0.96rem; }
.contact-address strong { display: block; font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.3rem; }

/* ---------- Back link ---------- */
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 1.6rem; opacity: 0.85; transition: opacity .3s, transform .3s var(--ease);
}
.back-link svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.back-link:hover { opacity: 1; }
.back-link:hover svg { transform: translateX(-4px); }

/* ---------- Products / price cards ---------- */
.products-intro { max-width: 44rem; }
.products-intro .lead { color: rgba(20,35,26,0.7); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.product-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(13,26,18,0.35); }
.product-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-media img.rotate-right,
.spec-media img.rotate-right { transform: rotate(90deg) scale(1.15); object-position: center; }
.product-card:hover .product-media img.rotate-right { transform: rotate(90deg) scale(1.21); }
.product-price {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--forest-800); color: var(--cream);
  padding: 0.5rem 0.9rem; border-radius: 100px;
  font-family: var(--serif); font-size: 1.15rem; line-height: 1;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.5);
}
.product-price--request {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.5rem 0.85rem;
}
.product-body { padding: 1.5rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.product-price small { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.8; margin-right: 0.15rem; vertical-align: 0.15em; }
.product-unit { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss-dark); font-weight: 600; }
.product-body h3 { font-size: 1.4rem; margin: 0.5rem 0 0.7rem; }
.product-body p { font-size: 0.94rem; color: rgba(20,35,26,0.7); margin: 0; }

/* ---------- Inline info band ---------- */
.info-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.8rem, 3.5vw, 2.6rem) clamp(1.8rem, 4vw, 3rem);
  background: var(--forest-800); color: var(--cream); border-radius: var(--radius);
}
.info-band .ib-text h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 0.4rem; }
.info-band .ib-text p { color: rgba(250,248,242,0.75); margin: 0; }
.price-note { font-size: 0.9rem; color: rgba(20,35,26,0.6); margin-top: 1rem; }

/* ---------- Produkt-Details & Preise (Spec-Blöcke) ---------- */
.specs { display: grid; gap: 0; }
.spec {
  display: grid; grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start;
  padding: clamp(2.2rem, 4.5vw, 3.4rem) 0; border-top: 1px solid var(--line);
}
.spec:first-child { border-top: 0; padding-top: 0; }
.spec.anchor { scroll-margin-top: 6rem; }
.spec-body .eyebrow { margin-bottom: 0.4rem; }
.spec-body h3 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 0.5rem 0 0.4rem; }
.spec-sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--moss-dark); margin-bottom: 1.1rem; }
.spec-body p { color: rgba(20,35,26,0.76); margin-bottom: 0.9rem; }
.spec-body p:last-of-type { margin-bottom: 0; }
.spec-list-title { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--moss-dark); margin: 1.5rem 0 0.85rem; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.spec-tags li { background: var(--cream-2); border: 1px solid var(--line); border-radius: 100px; padding: 0.42rem 0.95rem; font-size: 0.86rem; }
.spec-meta { margin-top: 1.4rem; font-size: 0.92rem; color: rgba(20,35,26,0.62); }
.spec-meta strong { color: var(--forest-800); font-weight: 600; }

.spec-aside { display: grid; gap: 1.2rem; position: sticky; top: 6rem; }
.spec-media { border-radius: var(--radius); overflow: hidden; }
.spec-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1s var(--ease); }
.spec-media:hover img { transform: scale(1.05); }
.spec-media:hover img.rotate-right { transform: rotate(90deg) scale(1.2); }
.price-panel { background: var(--forest-800); color: var(--cream); border-radius: var(--radius); padding: 1.4rem 1.6rem 1.6rem; }
.price-panel h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--moss-light); margin-bottom: 0.9rem; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line-light); }
.price-row:last-of-type { border-bottom: 0; }
.price-row .lbl { font-size: 0.95rem; color: rgba(250,248,242,0.82); }
.price-row .val { font-family: var(--serif); font-size: 1.25rem; white-space: nowrap; }
.price-note-sm { font-size: 0.82rem; color: rgba(250,248,242,0.6); margin-top: 0.9rem; line-height: 1.5; }

@media (max-width: 860px) {
  .spec { grid-template-columns: 1fr; }
  .spec-aside { position: static; }
}

/* ---------- Klickbare Produktkarte (Karte -> Beschreibung) ---------- */
a.product-card { cursor: pointer; }
a.product-card .product-more {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto;
  padding-top: 1rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--moss-dark);
}
a.product-card .product-more svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
a.product-card:hover .product-more svg { transform: translateX(4px); }
a.product-card:hover .product-more { color: var(--forest-800); }

/* ---------- Varianten-Liste (Baumaterial-Details) ---------- */
.variant { padding: 1.1rem 0; border-top: 1px dashed var(--line); }
.variant:first-of-type { border-top: 0; padding-top: 0; }
.variant-head { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; margin-bottom: 0.5rem; }
.variant h4 { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; }
.koernung { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--moss-dark); background: var(--cream-2); border: 1px solid var(--line); border-radius: 100px; padding: 0.24rem 0.7rem; white-space: nowrap; }
.variant .einsatz { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss-dark); display: block; margin-bottom: 0.15rem; }
.variant p { font-size: 0.95rem; color: rgba(20,35,26,0.74); margin: 0; }

/* ---------- Projekt-Galerie (Meine Projekte) ---------- */
.projects { display: grid; gap: clamp(3rem, 6vw, 5.5rem); }
.project-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem 2rem; margin-bottom: 1.5rem; }
.project-head h3 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
.project-head .p-index { font-family: var(--serif); font-size: 1rem; color: var(--moss); }
.project-head p { color: rgba(20,35,26,0.7); max-width: 46ch; margin-top: 0.5rem; }
.gallery {
  display: flex; gap: clamp(0.8rem, 2vw, 1.4rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1.1rem; scroll-padding-left: var(--pad);
  -webkit-overflow-scrolling: touch;
}
.gallery figure {
  flex: 0 0 min(82%, 36rem); scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden; position: relative;
}
.gallery img {
  width: 100%; height: clamp(15rem, 40vw, 27rem); object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.2rem 1rem; color: var(--cream); font-size: 0.86rem;
  background: linear-gradient(to top, rgba(13,26,18,0.8), rgba(13,26,18,0));
}
.gallery::-webkit-scrollbar { height: 7px; }
.gallery::-webkit-scrollbar-track { background: var(--cream-2); border-radius: 100px; }
.gallery::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 100px; }
.gallery::-webkit-scrollbar-thumb:hover { background: var(--moss); }
.gallery { scrollbar-color: var(--sage) var(--cream-2); scrollbar-width: thin; }
.gallery-hint { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss-dark); margin-top: 0.8rem; }
.gallery-hint svg { width: 26px; height: 14px; }

/* ---------- Lenis smooth scroll ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ---------- Sticky-stack panels (Leistungen) ---------- */
.stack { position: relative; }
.stack-panel {
  position: sticky; top: 0;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--cream);
  border-top-left-radius: clamp(20px, 3vw, 32px);
  border-top-right-radius: clamp(20px, 3vw, 32px);
  isolation: isolate;
}
.stack-panel .sp-bg { position: absolute; inset: 0; z-index: -2; }
.stack-panel .sp-bg img { width: 100%; height: 100%; object-fit: cover; }
.stack-panel::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(13,26,18,0.94) 0%, rgba(13,26,18,0.7) 45%, rgba(13,26,18,0.28) 100%);
}
.stack-panel .sp-index {
  position: absolute; top: clamp(5.5rem, 12vh, 8rem); right: var(--pad);
  font-family: var(--serif); font-size: clamp(4rem, 12vw, 9rem);
  line-height: 1; color: rgba(250,248,242,0.14); letter-spacing: -0.03em;
}
.sp-inner { max-width: 46rem; }
.stack-panel .eyebrow { color: var(--moss-light); }
.stack-panel h2 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 300; margin: 1.4rem 0; letter-spacing: -0.03em; }
.stack-panel h2 em { font-style: italic; color: var(--sage); }
.stack-panel p { color: rgba(250,248,242,0.82); font-size: clamp(1.02rem, 1.4vw, 1.2rem); max-width: 44ch; }
.stack-panel .btn { margin-top: 2.2rem; }

/* ---------- Sticky scroll gallery ---------- */
.sticky-gallery { background: var(--cream); }
.sg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2.5rem); }
.sg-text { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.sg-text h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); margin: 1.2rem 0 1.4rem; }
.sg-text p { color: rgba(20,35,26,0.7); max-width: 40ch; }
.sg-media { display: grid; gap: clamp(1.2rem, 3vw, 2rem); padding: 12vh 0; }
.sg-media figure { display: grid; place-content: center; }
.sg-media figure:nth-child(odd)  { transform: skewX(-9deg); }
.sg-media figure:nth-child(even) { transform: skewX(9deg); }
.sg-media img {
  width: min(30rem, 90%); aspect-ratio: 4/5; object-fit: cover;
  border-radius: 14px; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 30px 60px -30px rgba(13,26,18,0.4);
}
.sg-media figure:hover img { transform: scale(1.04) skewX(0deg); }

/* second gallery variant: images stack (sticky), text sticky */
.sg-media.stackimg figure { position: sticky; top: 0; height: 100vh; place-content: center; transform: none; padding: 0; }
.sg-media.stackimg img { aspect-ratio: 1/1; width: min(28rem, 90%); }

@media (max-width: 860px) {
  .sg-grid { grid-template-columns: 1fr; gap: 0; }
  .sg-text { position: static; height: auto; padding: 4rem 0 1rem; }
  .sg-media { padding: 0 0 3rem; }
  .sg-media figure:nth-child(odd), .sg-media figure:nth-child(even) { transform: none; }
  .sg-media.stackimg figure { position: static; height: auto; }
  .stack-panel .sp-index { font-size: clamp(3rem, 16vw, 5rem); top: 5rem; }
}

/* ---------- Legal / prose pages ---------- */
.legal-hero { padding: 10rem 0 3rem; background: var(--forest-800); color: var(--cream); }
.legal-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; margin-top: 1rem; }
.legal-hero .eyebrow { color: var(--moss-light); }
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 2.4rem 0 0.8rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.2rem; margin: 1.6rem 0 0.5rem; }
.legal-body p, .legal-body li { color: rgba(20,35,26,0.82); margin-bottom: 0.8rem; }
.legal-body ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-body a { color: var(--moss-dark); text-decoration: underline; text-underline-offset: 3px; }
.placeholder {
  background: #fff4d6; color: #6b4e00; border: 1px dashed #d9a400;
  padding: 0.05em 0.45em; border-radius: 5px; font-size: 0.92em; font-weight: 600;
}

/* ---------- Consent checkbox ---------- */
.consent { display: flex; align-items: flex-start; gap: 0.7rem; margin: 0.4rem 0 1.4rem; font-size: 0.9rem; color: rgba(20,35,26,0.75); }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--moss); }
.consent a { color: var(--moss-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-900); color: var(--cream); padding: clamp(3.5rem, 7vw, 6rem) 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { color: rgba(250,248,242,0.66); max-width: 34ch; margin-top: 1.2rem; font-size: 0.96rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss-light); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { color: rgba(250,248,242,0.7); font-size: 0.96rem; display: block; margin-bottom: 0.7rem; transition: color .3s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 2rem; font-size: 0.85rem; color: rgba(250,248,242,0.5); }
.footer-bottom .fb-links { display: flex; gap: 1.5rem; }

/* ---------- Reveal animation ---------- */
/* Nur verstecken, wenn JS aktiv ist (Klasse .js am <html>). Ohne JS bleibt alles sichtbar. */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid, .why-grid, .process-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .header-phone { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .svc-grid, .why-grid, .process-grid, .mini-grid, .product-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .stat { padding: 1.3rem; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
}

/* ===== TEST: Hero-Inhalt auf Desktop ganz nach links ===== */
@media (min-width: 1024px) {
  .hero .wrap { max-width: none; margin-left: 0; margin-right: 0; padding-left: clamp(2.5rem, 5vw, 5.5rem); }
  .hero-inner { max-width: 52rem; margin-left: 0; }
  .hero .stats { margin-left: 0; }
}

/* ===== TEST: Header-CTA grün & schlanker ===== */
.site-header .btn-primary {
  background: var(--moss);
  color: var(--cream);
  padding: 0.62rem 1.35rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
.site-header .btn-primary:hover { background: var(--forest-600); transform: translateY(-2px); }

/* ======================================================
   Mobile-Feinschliff (Handysicht)
   ====================================================== */
@media (max-width: 640px){
  /* Header entlasten: CTA in den Burger, Wortmarke einzeilig */
  .site-header .btn-primary{ display:none; }
  .brand-name{ font-size:1.1rem; letter-spacing:-.01em; }
  .header-inner{ gap:1rem; }

  /* Lange deutsche Wörter sauber umbrechen statt abschneiden */
  h1,h2,h3{ overflow-wrap:break-word; -webkit-hyphens:auto; hyphens:auto; }

  /* Headline-Größen fürs Handy zähmen */
  .hero h1{ font-size:clamp(2.5rem,10.5vw,3.4rem); }
  .page-hero h1{ font-size:clamp(2.1rem,9vw,3rem); }
  .stack-panel h2{ font-size:clamp(1.9rem,7.6vw,2.7rem); }
  .stack-panel .sp-index{ font-size:clamp(3rem,15vw,4.5rem); top:5.5rem; right:1.25rem; }
  .cta-band h2, .split h2, .section-head h2{ font-size:clamp(1.9rem,7.4vw,2.6rem); }
}
@media (max-width: 400px){
  .brand-name{ font-size:1rem; }
}

/* ======================================================
   Inhaber-Foto (rund) im Über-uns-Bereich
   ====================================================== */
.owner { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.owner-photo { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sand); flex-shrink: 0; }
.owner-photo.is-placeholder { display: grid; place-items: center; background: var(--forest-800); color: var(--sage); font-family: var(--serif); font-size: 1.7rem; }
.owner-meta strong { display: block; font-family: var(--serif); font-size: 1.1rem; line-height: 1.1; }
.owner-meta span { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss-dark); }
/* Großes Inhaber-Foto (Hochformat) im Über-uns-Bereich */
.split-media--portrait img { aspect-ratio: 4 / 5; object-position: 50% 18%; }

/* ======================================================
   FAQ – Akkordeon (ohne JS, via <details>)
   ====================================================== */
.faq { max-width: 900px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.35rem 0.2rem; font-family: var(--serif); font-size: clamp(1.12rem, 2vw, 1.4rem); color: var(--forest-800); transition: color .3s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--moss-dark); }
.faq .faq-ic { position: relative; flex-shrink: 0; width: 26px; height: 26px; }
.faq .faq-ic::before, .faq .faq-ic::after { content: ""; position: absolute; background: var(--moss); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.faq .faq-ic::before { top: 12px; left: 3px; width: 20px; height: 2px; }
.faq .faq-ic::after { top: 3px; left: 12px; width: 2px; height: 20px; }
.faq details[open] .faq-ic::after { transform: scaleY(0); opacity: 0; }
.faq details[open] summary { color: var(--moss-dark); }
.faq-answer { padding: 0 0.2rem 1.5rem; color: rgba(20,35,26,0.74); max-width: 62ch; font-size: 1.02rem; }

/* ======================================================
   Bewertungen (Sterne, Karten, Schreibfeld)
   ====================================================== */
.stars { display: inline-flex; gap: 0.15rem; color: #e0a83e; line-height: 0; }
.stars svg { width: 20px; height: 20px; }
.reviews-summary { display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem; flex-wrap: wrap; }
.reviews-summary .stars svg { width: 24px; height: 24px; }
.reviews-summary span { font-size: 0.95rem; color: rgba(20,35,26,0.7); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(18rem,100%),1fr)); gap: 1.5rem; margin-top: clamp(2rem,4vw,3rem); }
.review-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column; }
.review-card .stars { margin-bottom: 1rem; }
.review-card blockquote { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: var(--forest-800); margin-bottom: 1.2rem; }
.review-author { margin-top: auto; font-size: 0.9rem; font-weight: 600; color: var(--moss-dark); }

.review-form { margin-top: clamp(2.5rem,5vw,3.5rem); background: var(--forest-800); color: var(--cream); border-radius: var(--radius); padding: clamp(1.8rem,4vw,3rem); max-width: 720px; }
.review-form h3 { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 0.4rem; }
.review-form > p { color: rgba(250,248,242,0.75); margin-bottom: 1.6rem; max-width: 48ch; }
.review-form .field label, .review-form .star-label { color: var(--cream); }
.review-form .form-note { color: rgba(250,248,242,0.55); }
.star-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.25rem; margin: 0.2rem 0 0.4rem; }
.star-input input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.review-form .star-input label { cursor: pointer; color: rgba(250,248,242,0.28); transition: color .15s, transform .15s; line-height: 0; }
.star-input label svg { width: 34px; height: 34px; }
.review-form .star-input input:checked ~ label,
.review-form .star-input label:hover, .review-form .star-input label:hover ~ label { color: #e0a83e; }
.star-input label:hover { transform: scale(1.12); }
.star-input input:focus-visible ~ label { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 4px; }

/* ======================================================
   Öffnungszeiten (Kontakt)
   ====================================================== */
.hours { margin-top: 1.5rem; padding: 1.4rem 1.6rem; border-radius: 14px; background: var(--cream-2); border: 1px solid var(--line); }
.hours h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss-dark); margin-bottom: 1rem; }
.hours .h-row { display: flex; justify-content: space-between; gap: 1.2rem; padding: 0.45rem 0; border-bottom: 1px solid var(--line); }
.hours .h-row:last-of-type { border-bottom: 0; }
.hours .h-row .d { color: rgba(20,35,26,0.72); white-space: nowrap; }
.hours .h-row .t { text-align: right; font-weight: 600; color: var(--forest-800); }
.hours .hours-note { margin-top: 1rem; font-size: 0.92rem; color: rgba(20,35,26,0.7); line-height: 1.5; }

/* ======================================================
   Cookie-/Datenschutz-Hinweis
   ====================================================== */
.cookie-notice {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  max-width: 660px; margin: 0 auto;
  background: var(--forest-800); color: var(--cream);
  border: 1px solid var(--line-light); border-radius: 16px;
  padding: 1.1rem 1.3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.2rem;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,0.55);
  transform: translateY(160%); transition: transform .5s var(--ease);
}
.cookie-notice.show { transform: none; }
.cookie-notice p { flex: 1; min-width: 200px; margin: 0; font-size: 0.86rem; line-height: 1.5; color: rgba(250,248,242,0.85); }
.cookie-notice a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.cookie-notice .cookie-ok { flex-shrink: 0; padding: 0.7rem 1.5rem; font-size: 0.9rem; }
@media (max-width: 480px) { .cookie-notice .cookie-ok { width: 100%; justify-content: center; } }
@media (prefers-reduced-motion: reduce) { .cookie-notice { transition: none; } }
