/* ============================================================
   BERTHÉ — CONCEPT B "EDITORIAL"
   Warm and magazine-like: large serif display type, full-bleed
   photography, generous rules and numerals, asymmetric columns.
   Closest in feeling to the Berthé logo lockup.
   ============================================================ */

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: clip; }
/* `clip` (not `hidden`) keeps the sticky nav working while the off-canvas
   mobile menu sits outside the viewport */
body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  transition: background .4s, color .4s;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.wrap { width: min(1200px, 92vw); margin: 0 auto; }
.wrap--narrow { width: min(880px, 92vw); margin: 0 auto; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--accent); color: var(--on-accent); padding: 12px 20px; }
.skip:focus { left: 0; }

#scrollProgress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; background: var(--accent); transform: scaleX(0); transform-origin: 0 50%; }

.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; }

/* ---------- navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 120;
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(12px);
  transition: box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 22px rgba(12,24,38,.07); }
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.nav__brand img { height: 46px; width: auto; border-radius: 6px; }
[data-theme="nacht"] .nav__brand img { background: #fff; padding: 4px 6px; }
.nav__links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav__links a {
  color: var(--text); text-decoration: none; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 0; position: relative; white-space: nowrap;
}
.nav__links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--accent); transition: right .28s; }
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }
.nav__links a.is-active { color: var(--accent); }
.nav__cta {
  border: 1px solid var(--text); color: var(--text); padding: 11px 22px; border-radius: 999px;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; text-decoration: none;
  transition: background .25s, color .25s, border-color .25s; white-space: nowrap;
}
.nav__cta:hover { background: var(--text); color: var(--bg); text-decoration: none; }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; padding: 0; place-items: center; color: var(--text); }
.burger span { display: block; width: 18px; height: 1.5px; background: currentColor; position: relative; }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: currentColor; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
@media (max-width: 1080px) { .nav__links { gap: 18px; } .nav__links a { font-size: .72rem; letter-spacing: .08em; } }
@media (max-width: 960px) {
  .burger { display: grid; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(330px, 84vw); background: var(--surface);
    flex-direction: column; align-items: flex-start; gap: 4px; padding: 100px 30px 30px;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
    box-shadow: -20px 0 60px rgba(12,24,38,.18); overflow-y: auto; border-left: 1px solid var(--line);
  }
  .nav.menu-open .nav__links { transform: none; }
  .nav__links a { font-size: .95rem; letter-spacing: .04em; text-transform: none; padding: 11px 0; width: 100%; }
  .nav__cta { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 999px;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s, background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost { border-color: currentColor; color: var(--text); background: transparent; }
.btn--ghost:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn--onimg { border-color: rgba(255,255,255,.8); color: #fff; }
.btn--onimg:hover { background: #fff; color: var(--text); }

/* ---------- editorial section scaffolding ---------- */
.section { padding: clamp(66px, 8vw, 118px) 0; }
.section--alt { background: var(--bg-2); }
.section__head { margin: 0 0 clamp(36px, 4vw, 62px); }
.rule { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.rule::after { content: ''; height: 1px; flex: 1; background: var(--line); }
.kicker { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); font-weight: 700; white-space: nowrap; }
.section__title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.08; margin: 0 0 18px; letter-spacing: .005em;
}
.section__lead { color: var(--text-muted); font-size: 1.06rem; max-width: 62ch; margin: 0; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(30px, 5vw, 70px); align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- hero: full-bleed photograph ---------- */
.hero { position: relative; min-height: min(86vh, 760px); display: grid; align-items: end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,14,20,.86) 0%, rgba(8,14,20,.55) 42%, rgba(8,14,20,.18) 100%);
}
.hero__in { position: relative; z-index: 1; padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 74px); color: #fff; }
.hero__eyebrow { display: inline-block; font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; margin-bottom: 20px; color: rgba(255,255,255,.9); border-left: 2px solid var(--accent); padding-left: 12px; }
.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; color: #fff;
  font-size: clamp(2.5rem, 6.6vw, 5rem); line-height: 1.02; margin: 0 0 22px; letter-spacing: .004em;
}
.hero__lead { font-size: clamp(1rem, 1.6vw, 1.18rem); color: rgba(255,255,255,.88); max-width: 56ch; margin: 0 0 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges { list-style: none; margin: 40px 0 0; padding: 26px 0 0; border-top: 1px solid rgba(255,255,255,.22); display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hero__badges li { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: rgba(255,255,255,.88); }
.hero__badges svg { width: 19px; height: 19px; flex: none; color: #fff; margin-top: 3px; }
@media (max-width: 820px) { .hero__badges { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- marquee trust strip ---------- */
.trust { background: var(--text); color: var(--bg); padding: 18px 0; overflow: hidden; }
[data-theme="nacht"] .trust { background: var(--surface); color: var(--text); }
.trust__list { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 30px; align-items: center; }
.trust__list li { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; opacity: .85; }
.trust__title { display: none; }

/* ---------- about ---------- */
.lead-para { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.45; color: var(--text); margin: 0 0 24px; }
.about__body p { color: var(--text-muted); margin: 0 0 18px; }
.about__figure { position: relative; }
.about__figure img { width: 100%; height: clamp(340px, 44vw, 560px); object-fit: cover; }
.about__figure figcaption { font-size: .8rem; color: var(--text-muted); margin-top: 12px; font-style: italic; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(44px, 5vw, 72px); border-top: 1px solid var(--line); }
.value { padding: 34px 30px 34px 0; border-right: 1px solid var(--line); }
.value:last-child { border-right: 0; padding-right: 0; }
.value:not(:first-child) { padding-left: 30px; }
.value h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 1.55rem; margin: 0 0 12px; }
.value p { margin: 0; color: var(--text-muted); font-size: .94rem; }
.pills { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.pills li { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; color: var(--text-muted); }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } .value { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 0 !important; } .value:last-child { border-bottom: 0; } }

/* ---------- services as an editorial index ---------- */
.svc-grid { display: grid; gap: 0; border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: 88px minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(18px, 3vw, 46px);
  padding: clamp(30px, 4vw, 46px) 0; border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.svc:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); }
.svc__n { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 3rem; line-height: 1; color: var(--accent); opacity: .55; }
.svc h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0 0 12px; line-height: 1.15; }
.svc > div > p { color: var(--text-muted); margin: 0; font-size: .96rem; }
.svc ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; align-content: start; }
.svc li { font-size: .9rem; padding-bottom: 9px; border-bottom: 1px solid var(--line); color: var(--text); }
.svc--future { grid-template-columns: 88px 1fr; }
.svc--future .svc__tag { display: inline-block; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; font-weight: 700; }
@media (max-width: 860px) {
  .svc { grid-template-columns: 54px 1fr; }
  .svc__n { font-size: 2rem; }
  .svc ul { grid-column: 2; grid-template-columns: 1fr; margin-top: 18px; }
  .svc--future { grid-template-columns: 54px 1fr; }
}

/* ---------- process: vertical editorial timeline ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: st; }
.step {
  display: grid; grid-template-columns: 118px 1fr; gap: clamp(18px, 3vw, 42px);
  padding: clamp(24px, 3vw, 38px) 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.step:first-child { border-top: 1px solid var(--line); }
.step__n {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: .9;
  color: var(--accent); position: relative;
}
.step__n::after { content: ''; display: block; width: 34px; height: 1px; background: var(--accent); margin-top: 14px; opacity: .5; }
.step h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: clamp(1.3rem, 2vw, 1.7rem); margin: 0 0 8px; }
.step p { margin: 0; color: var(--text-muted); font-size: .96rem; max-width: 68ch; }
@media (max-width: 700px) { .step { grid-template-columns: 68px 1fr; } .step__n::after { width: 22px; } }

/* ---------- why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.why { background: var(--bg); padding: 34px 30px; transition: background .3s; }
.section--alt .why { background: var(--bg-2); }
.why:hover { background: color-mix(in srgb, var(--accent) 7%, var(--bg)); }
.why__ico { color: var(--accent); margin-bottom: 18px; }
.why__ico svg { width: 26px; height: 26px; }
.why h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 1.35rem; margin: 0 0 10px; }
.why p { font-size: .92rem; color: var(--text-muted); margin: 0; }
/* the closing CTA cell spans the last two columns so no gap is left */
.why-grid > .why:last-child { grid-column: span 2; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } .why-grid > .why:last-child { grid-column: auto; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- quote ---------- */
.quote { padding: clamp(56px, 7vw, 96px) 0; text-align: center; }
.quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.3; margin: 0 auto; max-width: 22ch;
}
.quote blockquote::before { content: '“'; display: block; font-size: 3.4rem; color: var(--accent); line-height: .6; margin-bottom: 18px; }
.quote cite { display: block; margin-top: 26px; font-style: normal; font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--text-muted); }

/* ---------- funding ---------- */
.fund { background: var(--accent); color: var(--on-accent); }
.fund .kicker { color: var(--on-accent); opacity: .8; }
.fund .rule::after { background: color-mix(in srgb, var(--on-accent) 30%, transparent); }
.fund .section__title { color: var(--on-accent); }
.fund .section__lead { color: color-mix(in srgb, var(--on-accent) 82%, transparent); }
.fund__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: color-mix(in srgb, var(--on-accent) 22%, transparent); margin-bottom: 52px; }
.fund__box { background: var(--accent); padding: 32px 30px; }
.fund__box h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 1.5rem; margin: 0 0 10px; }
.fund__box p { margin: 0; font-size: .94rem; color: color-mix(in srgb, var(--on-accent) 84%, transparent); }
.fund-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.fstep { border-top: 2px solid color-mix(in srgb, var(--on-accent) 55%, transparent); padding-top: 20px; }
.fstep b { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; display: block; line-height: 1; margin-bottom: 12px; }
.fstep h3 { font-size: 1rem; margin: 0 0 7px; }
.fstep p { font-size: .87rem; margin: 0; color: color-mix(in srgb, var(--on-accent) 80%, transparent); }
.fund__note { margin-top: 56px; display: flex; gap: 26px; align-items: center; justify-content: space-between; flex-wrap: wrap; border-top: 1px solid color-mix(in srgb, var(--on-accent) 30%, transparent); padding-top: 34px; }
.fund__note p { margin: 0; font-size: 1.06rem; max-width: 58ch; font-family: 'Cormorant Garamond', Georgia, serif; }
.fund .btn--ghost { border-color: var(--on-accent); color: var(--on-accent); }
.fund .btn--ghost:hover { background: var(--on-accent); color: var(--accent); }
@media (max-width: 900px) { .fund__grid { grid-template-columns: 1fr; } .fund-steps { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (max-width: 540px) { .fund-steps { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font: inherit;
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--text); padding: 24px 52px 24px 0; position: relative; transition: color .2s;
}
.faq__q:hover { color: var(--accent); }
.faq__q::after { content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--accent); font-family: 'Inter', sans-serif; font-weight: 300; transition: transform .3s; }
.faq.open .faq__q { color: var(--accent); }
.faq.open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.2,.8,.2,1); }
.faq__a p { margin: 0; padding: 0 60px 26px 0; color: var(--text-muted); font-size: .97rem; max-width: 76ch; }

/* ---------- news ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 40px); }
.post { display: flex; flex-direction: column; }
.post__img { overflow: hidden; margin-bottom: 20px; aspect-ratio: 4/3; background: var(--accent-3); }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.post:hover .post__img img { transform: scale(1.06); }
.post__meta { display: flex; gap: 14px; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.post__meta b { color: var(--accent); font-weight: 700; }
.post h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 1.42rem; line-height: 1.25; margin: 0 0 12px; }
.post p { font-size: .92rem; color: var(--text-muted); margin: 0 0 16px; flex: 1; }
.post__link { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--accent); display: inline-flex; gap: 9px; transition: gap .25s; }
.post:hover .post__link { gap: 15px; }
.news__foot { margin-top: 52px; text-align: center; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 66px); align-items: start; }
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .97rem; color: var(--text); background: transparent;
  border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 10px 0;
  transition: border-color .25s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .85rem; color: var(--text-muted); }
.check input { margin-top: 3px; accent-color: var(--accent); width: 17px; height: 17px; flex: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__msg { margin: 0; font-size: .92rem; padding: 14px 18px; display: none; border-left: 3px solid var(--accent); background: color-mix(in srgb, var(--accent) 8%, transparent); }
.form__msg.is-ok { display: block; }
.form__msg.is-err { display: block; border-left-color: #b3402c; background: rgba(200,60,40,.08); color: #b3402c; }
.form__hint { font-size: .78rem; color: var(--text-muted); margin: 0; }

.info { display: grid; gap: 0; border-top: 1px solid var(--line); }
.info__item { padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: baseline; }
.info__item h3 { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin: 0; font-weight: 700; }
.info__item p { margin: 0; font-size: 1rem; }
.info__ico { display: none; }
.map { margin-top: 30px; overflow: hidden; }
.map iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(.35) saturate(.9); }
.map__foot { padding: 14px 0 0; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } .field--row { grid-template-columns: 1fr; } .info__item { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- footer ---------- */
.foot { background: var(--text); color: var(--bg); padding: clamp(56px, 7vw, 90px) 0 0; }
[data-theme="nacht"] .foot { background: var(--surface); color: var(--text); }
.foot__cols { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; }
.foot__brand img { height: 54px; width: auto; background: #fff; padding: 6px 8px; border-radius: 6px; margin-bottom: 20px; }
.foot__brand p { font-size: .88rem; opacity: .72; margin: 0; max-width: 42ch; }
.foot h4 { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; opacity: .6; margin: 6px 0 18px; font-weight: 700; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot ul a, .foot address a { color: inherit; text-decoration: none; font-size: .9rem; opacity: .85; }
.foot ul a:hover, .foot address a:hover { opacity: 1; color: var(--accent); }
.foot address { font-style: normal; font-size: .9rem; opacity: .78; display: grid; gap: 8px; }
.social { display: flex; gap: 12px; margin-top: 20px; }
.social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid color-mix(in srgb, currentColor 30%, transparent); display: grid; place-items: center; color: inherit; transition: background .25s, color .25s; }
.social a:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.social svg { width: 17px; height: 17px; }
.foot__bar { margin-top: clamp(44px, 5vw, 66px); border-top: 1px solid color-mix(in srgb, currentColor 20%, transparent); padding: 22px 0 28px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .78rem; opacity: .65; }
@media (max-width: 940px) { .foot__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot__cols { grid-template-columns: 1fr; } }

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; transform: translateY(110%); z-index: 500;
  background: var(--surface); border-top: 2px solid var(--accent);
  box-shadow: 0 -20px 50px rgba(12,24,38,.16); padding: 24px 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.cookie.show { transform: none; }
.cookie__in { width: min(1200px, 92vw); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cookie h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 1.25rem; margin: 0 0 6px; }
.cookie p { margin: 0; font-size: .86rem; color: var(--text-muted); max-width: 84ch; }
.cookie__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie .btn { padding: 12px 24px; font-size: .74rem; }
@media (max-width: 780px) { .cookie__in { grid-template-columns: 1fr; } }

/* ---------- map: Zwei-Klick consent card (loaded only on request) ---------- */
.map__consent {
  min-height: 300px; padding: 30px 26px; background: var(--bg-2);
  display: grid; place-content: center; justify-items: center;
  text-align: center; gap: 10px; border: 1px solid var(--line);
}
.map__pin { width: 34px; height: 34px; color: var(--accent); }
.map__consent h3 { margin: 0; font-size: 1rem; font-weight: 700; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 1.3rem; }
.map__consent p { margin: 0; font-size: .85rem; color: var(--text-muted); max-width: 46ch; }
.map__consent .btn { margin-top: 8px; }
.map__remember { display: inline-flex; align-items: center; gap: 9px; font-size: .8rem; color: var(--text-muted); cursor: pointer; }
.map__remember input { accent-color: var(--accent); width: 16px; height: 16px; flex: none; }
.map__policy { font-size: .78rem; color: var(--text-muted); text-decoration: underline; }
.map__policy:hover { color: var(--accent); }
