/* ============================================================
   Oesinghausen – Hauptstylesheet
   Pfad auf Webspace: /Oesinghausen/style.css
   ============================================================ */

/* ── FONTS (lokal geladen) ────────────────────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/cormorant-garamond-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/cormorant-garamond-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-400italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}

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

:root {
  --g:   #5aad47;
  --gd:  #3d8a2e;
  --gl:  #e6f4e1;
  --gl2: #c8e8be;
  --t:   #8fcfbc;
  --tl:  #dff2ec;
  --a:   #e8935a;
  --ad:  #c4703a;
  --bg:  #f5f5f0;
  --dark:  #1a1f18;
  --dark2: #252c22;
  --txt:   #222222;
  --muted: #5a5f57;
  --light: #8a9087;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.07);
  --fs: 'Inter', system-ui, sans-serif;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --r:  16px;
  --rs: 8px;
  --s1: 0 2px 16px rgba(0,0,0,.06);
  --s2: 0 8px 40px rgba(0,0,0,.12);
  --s3: 0 24px 80px rgba(0,0,0,.18);
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: auto; /* smooth per JS, nicht per CSS */
}

body {
  font-family: var(--fs);
  background: var(--bg);
  color: var(--txt);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip; /* clip statt hidden – blockiert kein scrollTo */
  overflow-y: auto;
  cursor: auto;
}

/* ── LOADER ──────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  transition: opacity .7s ease, visibility .7s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.ld-name {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 300;
  color: white;
  letter-spacing: .1em;
  overflow: hidden;
}
.ld-name span {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp .9s .2s cubic-bezier(.16,1,.3,1) forwards;
}
.ld-sub {
  font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35); overflow: hidden;
}
.ld-sub span {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp .8s .55s cubic-bezier(.16,1,.3,1) forwards;
}
.ld-bar {
  width: 180px; height: 1px;
  background: rgba(255,255,255,.08);
  position: relative; overflow: hidden; border-radius: 1px;
}
.ld-bar::after {
  content: '';
  position: absolute; left: -100%; top: 0;
  height: 100%; width: 100%;
  background: linear-gradient(90deg, transparent, var(--g), var(--t));
  animation: fillBar 1.5s .3s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fillBar  { to { left: 0; } }

/* ── HEADER ──────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; padding: 0 2.5rem;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
/* Immer lesbar wenn gescrollt ODER auf Unterseiten */
header.solid {
  background: rgba(245,245,240,.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
.hdr-inner {
  max-width: 1200px; margin: 0 auto;
  height: 74px; display: flex;
  align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; cursor: pointer;
}
.logo-svg { width: 40px; height: 40px; }
.logo-name {
  font-family: var(--fd);
  font-weight: 300;
  letter-spacing: -.02em;
  font-size: 19px;
  color: #9de080;
  transition: color .3s;
  line-height: 1.1;
}
.logo-name.dk { color: #9de080; }
.logo-place {
  font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.45); transition: color .3s;
}
.logo-place.dk { color: var(--light); }


nav { display: flex; gap: 2px; }

/* ── SPRACHUMSCHALTER – modernes Dropdown ────────────────────── */
.lang-picker {
  position: relative;
}
.lang-current {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 12px 7px 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  cursor: pointer; font-family: var(--fs);
  color: white; font-size: 13px; font-weight: 600;
  transition: background .25s, border-color .25s;
  white-space: nowrap;
}
.lang-current:hover { background: rgba(255,255,255,.2); }
header.solid .lang-current {
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.12);
  color: var(--txt);
}
header.solid .lang-current:hover { background: rgba(0,0,0,.1); }

#lang-current-flag { font-size: 1.1rem; line-height: 1; }
#lang-current-code { font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.lang-chevron {
  width: 10px; height: 7px; flex-shrink: 0;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
  opacity: .7;
}
#lang-menu.open ~ * .lang-chevron,
.lang-current[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

/* Dropdown-Panel */
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15), 0 2px 8px rgba(0,0,0,.08);
  min-width: 180px;
  padding: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px) scale(.97);
  transition: opacity .2s, visibility .2s, transform .25s cubic-bezier(.34,1.56,.64,1);
  z-index: 500;
}
.lang-menu.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 12px;
  border: none; background: none;
  cursor: pointer; border-radius: 10px;
  font-family: var(--fs); font-size: 14px;
  color: var(--muted); transition: background .15s, color .15s;
  text-align: left;
}
.lang-option:hover { background: var(--gl); color: var(--gd); }
.lang-option.on    { background: var(--gl); color: var(--gd); font-weight: 600; }
.lang-flag { font-size: 1.3rem; line-height: 1; flex-shrink: 0; }
.lang-name { flex: 1; }
.lang-code { font-size: 11px; font-weight: 700; color: var(--light); letter-spacing: .08em; }
.lang-option.on .lang-code { color: var(--g); }

/* Mobiles Menü Sprache */
.mnav-lang {
  display: flex; gap: 10px; margin-top: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.mnav-lang .lang-btn {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px; color: rgba(255,255,255,.5);
  background: none; cursor: pointer; font-family: var(--fs);
  transition: all .25s;
}
.mnav-lang .lang-btn .lang-flag { font-size: 1.1rem; }
.mnav-lang .lang-btn:hover { border-color: var(--g); color: white; }
.mnav-lang .lang-btn.on {
  background: var(--g); color: white;
  border-color: var(--g); font-weight: 600;
}

nav { display: flex; gap: 2px; }

/* ── NAV LINKS – transparenter Hero-Header ───────────────────── */
.nl {
  font-size: 13px; font-weight: 500;
  letter-spacing: .04em; padding: 9px 16px;
  border-radius: 50px; border: none; background: none;
  cursor: pointer; font-family: var(--fs);
  color: rgba(255,255,255,.75);
  transition: color .25s; position: relative; overflow: hidden;
}
.nl::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50px; transform: scale(0); opacity: 0;
  background: rgba(255,255,255,.15);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .3s;
}
.nl:hover::before, .nl.on::before { transform: scale(1); opacity: 1; }
.nl:hover, .nl.on { color: #fff; }

/* Aktiver Link bekommt zusätzlich einen grünen Unterstrich */
.nl.on::after {
  content: ''; position: absolute;
  bottom: 5px; left: 16px; right: 16px;
  height: 2px; background: #9de080; border-radius: 1px;
}

/* ── NAV LINKS – heller Header (header.solid) ──────────────────  */
header.solid .nl {
  color: var(--txt) !important;  /* schwarz auf weißem Header — höchste Priorität */
}
header.solid .nl::before {
  background: var(--gd);
}
header.solid .nl:hover,
header.solid .nl.on {
  color: #fff !important;  /* weiß auf dunkelgrüner Pille */
}
header.solid .nl:hover::before,
header.solid .nl.on::before {
  transform: scale(1); opacity: 1;
}
header.solid .nl.on::after {
  background: white;
}

/* Hamburger */
.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.ham span {
  display: block; width: 22px; height: 1.5px;
  background: white; border-radius: 2px; transition: all .3s;
}
.ham.dk span { background: var(--txt); }

/* ── MOBILE NAV ──────────────────────────────────────────── */
.mnav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(20,26,18,.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
}
.mnav.open { display: flex; animation: mopen .4s cubic-bezier(.16,1,.3,1); }
@keyframes mopen { from { opacity: 0; } to { opacity: 1; } }

.mnav-x {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: rgba(255,255,255,.4); font-size: 2.2rem;
  cursor: pointer; line-height: 1; transition: color .2s;
}
.mnav-x:hover { color: white; }
.mnav-btn {
  font-family: var(--fd);
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 300;
  color: rgba(255,255,255,.6);
  background: none; border: none; cursor: pointer;
  letter-spacing: .06em; transition: color .25s, transform .25s;
}
.mnav-btn:hover { color: var(--g); transform: translateX(10px); }

/* ── PAGES ───────────────────────────────────────────────── */
.page { display: none; }
.page.active {
  display: block;
  animation: pin .6s cubic-bezier(.16,1,.3,1);
}
@keyframes pin {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark);
}
.hp {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 2s cubic-bezier(.4,0,.2,1);
}
.hp.on {
  opacity: 1;
  animation: kb 22s ease-in-out infinite alternate;
}
@keyframes kb {
  from { transform: scale(1.03) translate(0,0); }
  to   { transform: scale(1.12) translate(-1%,-.5%); }
}
.h-ov {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(8,16,6,.6) 0%,
    rgba(4,10,3,.2) 45%,
    rgba(12,22,10,.72) 100%);
  z-index: 1;
}
.h-grain {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.particles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.pt {
  position: absolute; border-radius: 50%;
  animation: ptf linear infinite;
}
@keyframes ptf {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  8%   { opacity: .7; }
  92%  { opacity: .15; }
  100% { transform: translateY(-8vh) scale(1.3); opacity: 0; }
}
.sbadge {
  position: absolute; top: 2rem; right: 2.5rem; z-index: 10;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.18);
  color: white; font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 50px;
}
.sdot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  animation: sdpulse 2.4s ease-in-out infinite;
}
@keyframes sdpulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(.7); }
}
.h-content {
  position: relative; z-index: 5;
  text-align: center; padding: 2rem; max-width: 860px;
}
.h-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 50px;
  padding: 8px 22px; margin-bottom: 2rem;
  opacity: 0; animation: hup .8s .4s cubic-bezier(.16,1,.3,1) forwards;
}
.h-eline {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g));
}
.h-eline.r { background: linear-gradient(90deg, var(--g), transparent); }
.h-eyebrow span {
  font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.hero h1 {
  font-family: var(--fd);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300; color: white;
  line-height: 1.0; letter-spacing: -.02em;
  margin-bottom: 1.5rem;
  opacity: 0; animation: hup .9s .6s cubic-bezier(.16,1,.3,1) forwards;
}
.hero h1 em { font-style: italic; color: #9de080; }
.h-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 440px; margin: 0 auto 2.5rem;
  font-weight: 300; line-height: 1.85;
  opacity: 0; animation: hup .8s .8s cubic-bezier(.16,1,.3,1) forwards;
}
.h-btns {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: hup .8s 1s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes hup {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.h-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  opacity: 0; animation: hup .8s 1.4s cubic-bezier(.16,1,.3,1) forwards;
}
.scl {
  width: 1px; height: 52px; overflow: hidden; position: relative;
}
.scl::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.65));
  animation: sclanim 2.2s ease-in-out infinite;
}
@keyframes sclanim {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.h-scroll span {
  font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  cursor: pointer; border: none; font-family: var(--fs);
  text-decoration: none;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.btn svg { width: 15px; height: 15px; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }
.btn-p { background: var(--g); color: white; box-shadow: 0 4px 28px rgba(90,173,71,.45); }
.btn-p:hover { background: var(--gd); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(90,173,71,.55); }
.btn-g { background: rgba(255,255,255,.1); color: white; border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(14px); }
.btn-g:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }

/* ── SECTIONS ────────────────────────────────────────────── */
.sec    { max-width: 1200px; margin: 0 auto; padding: 7rem 2.5rem; }
.sec-sm { max-width: 1200px; margin: 0 auto; padding: 4rem 2.5rem; }

.lbl {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--g); display: flex; align-items: center;
  gap: 10px; margin-bottom: .9rem;
}
.lbl::before {
  content: ''; width: 22px; height: 1.5px;
  background: var(--g); flex-shrink: 0; border-radius: 1px;
}
.hh1 {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--txt); letter-spacing: -.015em;
}
.hh2 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.2; color: var(--txt);
}
.body { color: var(--muted); line-height: 1.9; font-size: 15.5px; font-weight: 300; }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.rv  { opacity: 0; transform: translateY(44px);  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.rvl { opacity: 0; transform: translateX(-54px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.rvr { opacity: 0; transform: translateX(54px);  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.rv.on, .rvl.on, .rvr.on { opacity: 1; transform: none; }
.rv2 { transition-delay: .15s; }
.rv3 { transition-delay: .3s; }
.rv4 { transition-delay: .45s; }

/* ── INTRO SPLIT ─────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.img-frame { position: relative; }
.img-box {
  border-radius: 28px; aspect-ratio: 3/4;
  background: linear-gradient(150deg,#b8dda8 0%,#7abd6a 50%,#4a9a39 100%);
  overflow: hidden; position: relative;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 2.5rem;
}
.img-box::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(20,40,15,.6) 0%,transparent 55%);
}
.img-box svg { opacity: .35; fill: rgba(255,255,255,.9); z-index: 1; width: 65%; }
.float-pill {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: white; border-radius: var(--r);
  padding: 1.25rem 1.6rem; box-shadow: var(--s3);
  display: flex; align-items: center; gap: 12px; min-width: 190px;
}
.fp-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--gl); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fp-ico svg { width: 20px; height: 20px; fill: var(--gd); }
.fp-n { font-family: var(--fd); font-size: 1.7rem; font-weight: 600; color: var(--gd); line-height: 1; }
.fp-l { font-size: 10.5px; color: var(--light); margin-top: 2px; }
.i-content { display: flex; flex-direction: column; gap: 1.75rem; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .9rem; margin-top: .5rem; }
.stat {
  padding: 1.25rem .75rem; background: white;
  border-radius: var(--r); border: 1px solid var(--border);
  box-shadow: var(--s1); text-align: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s; cursor: pointer;
}
.stat:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--s2); }
.sn { font-family: var(--fd); font-size: 2rem; font-weight: 600; color: var(--gd); display: block; line-height: 1; }
.sl { font-size: 10.5px; color: var(--light); margin-top: 4px; }

/* ── FEATURES STRIPE ─────────────────────────────────────── */
.stripe {
  background: var(--dark); padding: 5rem 2.5rem;
  position: relative; overflow: hidden;
}
.stripe::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 25% 50%, rgba(90,173,71,.1), transparent),
    radial-gradient(ellipse 50% 50% at 75% 50%, rgba(143,207,188,.07), transparent);
}
.stripe-in {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; position: relative; z-index: 1;
}
.fc {
  padding: 2.5rem 2rem; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  transition: all .35s cubic-bezier(.34,1.56,.64,1); cursor: pointer;
}
.fc:hover { background: rgba(255,255,255,.06); border-color: rgba(90,173,71,.28); transform: translateY(-6px) scale(1.01); }
.fi { width: 52px; height: 52px; border-radius: 14px; background: rgba(90,173,71,.14); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.fi svg { width: 24px; height: 24px; }
.fc h3 { font-family: var(--fd); font-size: 1.3rem; font-weight: 400; color: white; margin-bottom: .6rem; }
.fc p  { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; }

/* ── PARALLAX STRIP ──────────────────────────────────────── */
.pstrip { position: relative; height: 400px; overflow: hidden; }
.pimg   { position: absolute; inset: -18%; background-size: cover; background-position: center; will-change: transform; }
.pov    { position: absolute; inset: 0; background: rgba(8,16,6,.58); z-index: 1; }
.ptxt   { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.pq     { font-family: var(--fd); font-size: clamp(1.4rem,3.5vw,2.5rem); font-weight: 300; font-style: italic; color: white; max-width: 740px; line-height: 1.5; }
.pc     { display: block; margin-top: 1rem; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.38); font-style: normal; font-family: var(--fs); }

/* ── PAGE HERO (Unterseiten) ─────────────────────────────── */
.phero {
  height: 38vh; min-height: 280px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden; background: var(--dark);
}
.phbg {
  position: absolute; inset: -8%; background-size: cover;
  background-position: center; filter: blur(2px) brightness(.45);
}
.phc { position: relative; z-index: 2; padding: 2.5rem 2.5rem 3.5rem; max-width: 1200px; width: 100%; }
.phc .lbl         { color: rgba(255,255,255,.45); }
.phc .lbl::before { background: rgba(255,255,255,.3); }
.phc .hh1         { color: white; }

/* ── TIMELINE ────────────────────────────────────────────── */
.tl-wrap  { position: relative; }
.tl-line  {
  position: absolute; left: 16px; top: 8px; bottom: 8px;
  width: 1px; border-radius: 1px;
  background: linear-gradient(to bottom, var(--gl), var(--t), rgba(232,147,90,.4));
}
.tl-item {
  display: grid; grid-template-columns: auto 1fr;
  gap: 2rem; padding-left: 2.5rem;
  margin-bottom: 2.75rem; position: relative;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: 9px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: white; border: 2.5px solid var(--g);
  box-shadow: 0 0 0 4px var(--gl);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.tl-item:hover .tl-dot { transform: scale(1.4); box-shadow: 0 0 0 6px var(--gl2); }
.tl-card {
  background: white; border-radius: var(--r);
  padding: 1.5rem 1.75rem; border: 1px solid var(--border);
  box-shadow: var(--s1); transition: box-shadow .35s, transform .35s;
}
.tl-item:hover .tl-card { box-shadow: var(--s2); transform: translateX(5px); }
.tl-yr  { font-size: 10.5px; font-weight: 600; color: var(--g); letter-spacing: .16em; text-transform: uppercase; margin-bottom: .4rem; }
.tl-tx  { font-size: 14.5px; color: var(--muted); line-height: 1.78; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gtabs { display: flex; gap: 6px; margin: 1.5rem 0 2.5rem; }
.gtab  {
  padding: 9px 24px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  cursor: pointer; border: 1.5px solid var(--border);
  background: white; color: var(--muted); font-family: var(--fs); transition: all .25s;
}
.gtab.on, .gtab:hover { background: var(--g); color: white; border-color: var(--g); }

.masonry {
  columns: 3;
  column-gap: 1.25rem;
}
.gi {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: inline-block; /* wichtig: verhindert Spaltenbruch-Lücken */
  width: 100%;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.gi:hover { transform: scale(.98); }
.gi img {
  width: 100%; display: block;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.gi:hover img { transform: scale(1.04); }

.vgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.vc    {
  border-radius: var(--r); overflow: hidden; aspect-ratio: 16/9;
  background: var(--dark2); cursor: pointer;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.vc::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(90,173,71,.18),rgba(143,207,188,.12)); z-index: 1;
}
.vplay {
  width: 62px; height: 62px; background: rgba(255,255,255,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 2; position: relative;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.vc:hover .vplay { transform: scale(1.15); box-shadow: 0 10px 36px rgba(0,0,0,.35); }
.vplay svg { width: 23px; height: 23px; fill: var(--dark); margin-left: 3px; }
.vlbl { position: absolute; bottom: .9rem; left: 1rem; right: 1rem; z-index: 2; color: rgba(255,255,255,.5); font-size: 11.5px; }

/* ── COOKIE BANNER ───────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: rgba(26,31,24,.97); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 2.5rem;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
#cookie-banner.show { transform: translateY(0); }
.cb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cb-text { flex: 1; min-width: 280px; }
.cb-text strong { color: white; font-size: 14px; font-weight: 600; display: block; margin-bottom: .35rem; }
.cb-text p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }
.cb-text a { color: var(--g); text-decoration: none; }
.cb-text a:hover { text-decoration: underline; }
.cb-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cb-btn {
  padding: 10px 22px; border-radius: 50px; font-size: 13px;
  font-weight: 600; cursor: pointer; border: none; font-family: var(--fs);
  letter-spacing: .04em; transition: all .25s;
}
.cb-accept { background: var(--g); color: white; box-shadow: 0 4px 20px rgba(90,173,71,.4); }
.cb-accept:hover { background: var(--gd); transform: translateY(-2px); }
.cb-decline { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.12); }
.cb-decline:hover { background: rgba(255,255,255,.14); color: white; }
.cb-settings { background: none; color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.1); }
.cb-settings:hover { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.3); }

/* Cookie-Detail-Modal */
#cookie-modal {
  display: none; position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
#cookie-modal.open { display: flex; animation: fadeModal .3s ease; }
@keyframes fadeModal { from { opacity: 0; } to { opacity: 1; } }
.cm-box {
  background: white; border-radius: 20px;
  max-width: 560px; width: 100%; max-height: 80vh; overflow-y: auto;
  padding: 2.5rem; box-shadow: var(--s3);
}
.cm-box h2 { font-family: var(--fd); font-size: 1.6rem; font-weight: 400; margin-bottom: 1.25rem; }
.cm-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.cm-row:last-of-type { border-bottom: none; }
.cm-row-info h4 { font-size: 14px; font-weight: 600; margin-bottom: .3rem; }
.cm-row-info p  { font-size: 13px; color: var(--muted); line-height: 1.6; }
/* Toggle switch */
.toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: #ccc; border-radius: 24px; transition: background .3s;
}
.toggle-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; left: 3px; bottom: 3px;
  background: white; border-radius: 50%; transition: transform .3s;
}
.toggle input:checked + .toggle-slider { background: var(--g); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { opacity: .6; cursor: not-allowed; }
.cm-footer { display: flex; gap: 10px; justify-content: flex-end; margin-top: 1.5rem; flex-wrap: wrap; }

/* ── LEGAL SEITEN ────────────────────────────────────────── */
.legal   { max-width: 780px; margin: 0 auto; }
.lsec    { background: white; border-radius: var(--r); padding: 2.5rem; margin-bottom: 1.5rem; border: 1px solid var(--border); box-shadow: var(--s1); }
.lsec h2 { font-family: var(--fd); font-size: 1.45rem; font-weight: 400; color: var(--txt); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.lsec p, .lsec li { font-size: 15px; color: var(--muted); line-height: 1.85; font-weight: 300; }
.lsec ul { padding-left: 1.25rem; margin-top: .5rem; }
.lsec li { margin-bottom: .3rem; }
.lsec a  { color: var(--gd); text-decoration: none; }
.lsec a:hover { text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--dark); padding: 5.5rem 2.5rem 3rem;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 15% 80%, rgba(90,173,71,.09), transparent);
}
.ft { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.ft-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.ft-logo  { display: flex; align-items: center; gap: 10px; }
.ft-logo svg  { width: 36px; height: 36px; }
.ft-logo img  { width: 36px; height: 36px; object-fit: contain; }
.ft-logo-n    { font-family: var(--fd); font-size: 17px; font-weight: 300; letter-spacing: -.02em; color: #9de080; }
.ft-tag       { font-family: var(--fd); font-size: 1.35rem; font-style: italic; font-weight: 300; color: rgba(255,255,255,.35); line-height: 1.45; max-width: 260px; }

/* Besucherzähler – dezent, keine Box */
.ft-counter {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: .6rem;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}
.ft-counter #visitor-count {
  color: rgba(255,255,255,.6);
  font-variant-numeric: tabular-nums;
}
.ft-col h4    { font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1.25rem; }
.ft-col a, .ft-col button {
  display: block; color: rgba(255,255,255,.45); text-decoration: none;
  font-size: 14px; margin-bottom: .65rem; transition: color .2s;
  cursor: pointer; background: none; border: none; font-family: var(--fs);
  text-align: left; padding: 0;
}
.ft-col a:hover, .ft-col button:hover { color: var(--g); }
.ft-bot  { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.ft-copy { font-size: 12.5px; color: rgba(255,255,255,.2); }
.ft-links { display: flex; gap: 1.5rem; }
.ft-links button {
  font-size: 12.5px; color: rgba(255,255,255,.25);
  background: none; border: none; cursor: pointer;
  font-family: var(--fs); transition: color .2s; padding: 0;
}
.ft-links button:hover { color: rgba(255,255,255,.65); }

/* ── GESCHICHTE TABS ─────────────────────────────────────────── */
.hist-tab {
  font-size: 13px; font-weight: 500;
  padding: 1.1rem 1.5rem;
  border: none; background: none;
  cursor: pointer; font-family: var(--fs);
  color: var(--light);
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s;
  margin-bottom: -1px;
}
.hist-tab:hover { color: var(--gd); }
.hist-tab.on    { color: var(--gd); border-bottom-color: var(--g); }

/* Bildunterschriften */
figure figcaption {
  font-size: 12.5px; color: var(--light);
  font-style: italic; line-height: 1.5;
  text-align: center; margin-top: .85rem;
}

/* Bild-Platzhalter mit Fallback */
.hist-img-placeholder {
  position: relative; border-radius: var(--r);
  overflow: hidden; background: var(--gl);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.hist-img-placeholder img { border-radius: var(--r); }
.img-missing-label {
  display: none; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gl), var(--gl2));
  align-items: center; justify-content: center;
  text-align: center; font-size: 13px; font-weight: 500;
  color: var(--gd); line-height: 1.6; padding: 1rem;
}
.hist-img-placeholder.img-missing img        { display: none; }
.hist-img-placeholder.img-missing .img-missing-label { display: flex; }

/* Text-Bild-Abschnitte Geschichte */
.hist-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}
.hist-section-rev { direction: rtl; }
.hist-section-rev > * { direction: ltr; }
.hist-section-img figure { margin: 0; }

@media (max-width: 900px) {
  .hist-section { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .hist-section-rev { direction: ltr; }
}

/* ── WETTER-KARTE ─────────────────────────────────────────── */
.weather-sec { padding-top: 5rem; padding-bottom: 5rem; }

.weather-card {
  max-width: 780px; margin: 0 auto;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--s2);
  overflow: hidden;
}

/* Aktuell-Bereich */
.wc-now {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(135deg, var(--dark) 0%, #2a3a28 100%);
}
.wc-now-left {
  display: flex; align-items: center; gap: 1.25rem;
}
.wc-big-icon  { font-size: 4rem; line-height: 1; }
.wc-big-temp  {
  font-family: var(--fd); font-size: 3.8rem;
  font-weight: 300; color: white; line-height: 1;
}
.wc-deg       { font-size: 1.8rem; color: rgba(255,255,255,.5); }
.wc-condition { font-size: 14px; color: rgba(255,255,255,.6); margin-top: .3rem; font-weight: 300; }

/* Rechte Detailspalte */
.wc-now-right {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.wc-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .6rem .9rem;
  min-width: 110px;
}
.wc-pill-lbl {
  display: block; font-size: 9.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 2px;
}
.wc-pill-val {
  display: block; font-size: 14px;
  font-weight: 500; color: white;
}

/* 3-Tage-Forecast */
.wc-forecast-strip  { padding: 1.5rem 2.5rem; }
.wc-forecast-label  {
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--light); margin-bottom: 1rem;
}
.wc-forecast-cards  {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: .75rem;
}
.wf-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column;
  align-items: center; gap: .4rem;
  transition: box-shadow .25s, transform .25s;
}
.wf-card:hover { box-shadow: var(--s2); transform: translateY(-3px); }
.wf-day-name {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--light);
}
.wf-day-icon  { font-size: 2.2rem; line-height: 1; margin: .2rem 0; }
.wf-day-desc  { font-size: 11px; color: var(--muted); text-align: center; line-height: 1.4; }
.wf-day-temps {
  display: flex; align-items: baseline; gap: 4px;
  margin-top: .3rem;
}
.wf-hi    { font-size: 17px; font-weight: 600; color: var(--txt); }
.wf-sep   { font-size: 13px; color: var(--light); }
.wf-lo    { font-size: 14px; color: var(--light); }
.wf-day-meta {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  font-size: 11px; color: var(--muted); margin-top: .2rem;
}

/* Footer */
.wc-footer {
  padding: .85rem 2.5rem;
  font-size: 11px; color: var(--light);
  border-top: 1px solid var(--border);
  text-align: right;
}
.wc-footer a { color: var(--g); text-decoration: none; }
.wc-footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 640px) {
  .wc-now { flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 1.25rem; }
  .wc-now-right { grid-template-columns: 1fr 1fr; width: 100%; }
  .wc-big-temp { font-size: 3rem; }
  .wc-big-icon { font-size: 3rem; }
  .wc-forecast-strip { padding: 1.25rem 1.25rem; }
  .wc-forecast-cards { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .wf-card { padding: .9rem .5rem; }
  .wf-day-icon { font-size: 1.8rem; }
  .wc-footer { padding: .75rem 1.25rem; }
}

/* ── SPRACHAUSWAHL ───────────────────────────────────────────── */
.lang-picker {
  position: relative;
}
.lang-current {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 6px 12px 6px 10px;
  cursor: pointer; font-family: var(--fs);
  color: white; font-size: 12px; font-weight: 600;
  letter-spacing: .06em;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.lang-current:hover {
  background: rgba(255,255,255,.22);
}
header.solid .lang-current {
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.12);
  color: var(--txt);
}
header.solid .lang-current:hover {
  background: rgba(0,0,0,.1);
}
#lang-current-flag { font-size: 16px; line-height: 1; }
.lang-chevron { transition: transform .25s; }
.lang-current[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

/* Dropdown-Menü */
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--s3);
  overflow: hidden;
  min-width: 160px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(.97);
  transition: opacity .25s cubic-bezier(.16,1,.3,1),
              transform .25s cubic-bezier(.16,1,.3,1),
              visibility .25s;
  z-index: 400;
}
.lang-menu.open {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 16px;
  border: none; background: none;
  cursor: pointer; font-family: var(--fs);
  font-size: 13px; color: var(--muted);
  transition: background .15s, color .15s;
  text-align: left;
}
.lang-option:hover { background: var(--gl); color: var(--gd); }
.lang-option.on    { color: var(--gd); font-weight: 600; background: var(--gl); }
.lang-flag { font-size: 18px; line-height: 1; flex-shrink: 0; }
.lang-name { flex: 1; }
.lang-code { font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--light); }
.lang-option.on .lang-code { color: var(--gd); }

/* Mobiles Menü Sprache */
.mnav-lang {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  width: 100%; align-items: center;
}
.mnav-lang .lang-option {
  justify-content: center; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  max-width: 200px; width: 100%;
  padding: 10px 20px;
}
.mnav-lang .lang-option:hover { background: rgba(255,255,255,.08); color: white; }
.mnav-lang .lang-option.on    { background: var(--g); border-color: var(--g); color: white; }
.mnav-lang .lang-option.on .lang-code { color: rgba(255,255,255,.7); }

/* ── NACH OBEN BUTTON ────────────────────────────────────────── */
#totop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 8500;   /* über Cookie-Banner (8000) aber unter Loader (9000) */
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--gd);
  color: white;
  cursor: pointer;
  display: flex !important;  /* nie durch andere Regeln überschrieben */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(61,138,46,.5);
  opacity: 0;
  transform: translateY(20px) scale(.8);
  transition: opacity .4s cubic-bezier(.16,1,.3,1),
              transform .4s cubic-bezier(.16,1,.3,1),
              background .2s, box-shadow .2s;
  pointer-events: none;
  visibility: hidden;  /* zusätzlich für Screenreader */
}
#totop svg {
  width: 20px; height: 20px;
}
#totop.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}
#totop:hover {
  background: var(--g);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 28px rgba(90,173,71,.55);
}
#totop:active {
  transform: translateY(0) scale(.96);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .split, .history-ig { grid-template-columns: 1fr; gap: 3rem; }
  .stripe-in { grid-template-columns: 1fr; }
  .masonry   { columns: 2; }
  .ft-top    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  nav  { display: none; }
  .ham { display: flex; }
  .masonry { columns: 1; }
  .vgrid   { grid-template-columns: 1fr; }
  .sec, .sec-sm { padding: 4.5rem 1.5rem; }
  footer   { padding: 4rem 1.5rem 2.5rem; }
  .ft-top  { grid-template-columns: 1fr; gap: 2rem; }
  .phc     { padding: 1.5rem 1.5rem 2.5rem; }
  #cookie-banner { padding: 1.25rem 1.25rem; }
  .cb-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}
