/* ============================================================
   HELLA & HERMANN — ethical fashion · Oldenburg   (v3 „2026")
   CI direkt aus dem Logo: Schwarz + Weiß + Logo-Grün #99D1A7.
   Akzent-Motiv: Schachbrett (der Ladenboden).
   Type: Raleway (Display 800 / UI) · Open Sans (Body)
   ============================================================ */

:root {
  /* CI — aus dem Logo gesampelt */
  --ink: #1a1a1a;              /* Near-Black — Dark-Sections, Topbar */
  --ink-soft: #2a2a2a;
  --paper: #f5f2ed;            /* Warmes Off-White (Shopify) */
  --green: #8fb89a;            /* Salbeigrün (Shopify) — Brand-Flächen */
  --green-deep: #4f7d5f;       /* tiefes Salbeigrün — Akzent-Text */
  --green-soft: #efe8dc;       /* warmer Sand-Tint (Section-Flächen) */
  --green-line: #e2dac9;
  --accent: #c87060;           /* Terracotta (Shopify) — primäre CTAs */
  --accent-hover: #b25849;

  /* Text */
  --text: #1a1a1a;
  --text-muted: #6c675e;
  --text-subtle: #8e958f;
  --on-dark: #f5f2ed;
  --on-dark-muted: #a9b3ab;

  /* Lines */
  --border: #e3dccf;
  --border-strong: #d3cabb;

  /* Type */
  --display: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --sans: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --body: "Open Sans", "Helvetica Neue", Arial, sans-serif;

  /* Shape */
  --r-lg: 24px;
  --r-md: 16px;
  --r-pill: 999px;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --section-y: clamp(64px, 8vw, 128px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 104px; overflow-x: clip; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--green-soft); }
.section--ink { background: var(--ink); color: var(--on-dark); }
.section--green { background: var(--green); color: var(--ink); }

/* ---------- Schachbrett-Divider (der Ladenboden!) ---------- */
.checker {
  height: 10px;
  background: repeating-conic-gradient(var(--ink) 0% 25%, var(--paper) 0% 50%);
  background-size: 20px 20px;
}

/* ---------- Kicker / Chips ---------- */
.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.kicker::before { content: ""; width: 22px; height: 22px; border-radius: 50%; background: var(--green); flex: none; }
.kicker--light { color: var(--green); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: var(--green-soft);
  color: var(--ink);
  border: 1px solid var(--green-line);
  white-space: nowrap;
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-deep); }
.chip--solid { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Headings ---------- */
.h-section {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  text-wrap: balance;
}
.h-section em { font-style: normal; color: var(--green-deep); }
.section--ink .h-section { color: #fff; }
.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 56ch;
}
.section-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .lede { margin-top: 18px; }
.section-head--center { margin-inline: auto; text-align: center; max-width: 820px; }
.section-head--center .kicker { justify-content: center; }
.section-head--center .lede { margin-inline: auto; }
.section-head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.section-head--row > div { max-width: 780px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 17px 32px;
  border-radius: var(--r-pill);
  transition: background .22s, color .22s, transform .22s, box-shadow .22s;
  min-height: 52px;
  white-space: nowrap;
  cursor: pointer;
}
.btn .arrow { transition: transform .22s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ink { background: var(--accent); color: #fff; }
.btn--ink:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(200,112,96,0.28); }
.btn--green { background: var(--green); color: var(--ink); }
.btn--green:hover { background: #88c898; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn--outline:hover { border-color: var(--ink); }
.btn--on-dark { background: #fff; color: var(--ink); }
.btn--on-dark:hover { background: var(--green); }

/* ============================================================
   TOPBAR + NAV
   ============================================================ */
.topbar { background: var(--ink); color: var(--on-dark); font-family: var(--sans); font-size: 12px; letter-spacing: 0.05em; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 8px 28px; flex-wrap: wrap; padding-block: 9px; text-align: center; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; color: var(--on-dark-muted); }
.topbar__item svg { width: 13px; height: 13px; color: var(--green); }
.topbar a:hover { color: var(--green); }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.is-scrolled { box-shadow: 0 8px 30px rgba(19,19,19,0.07); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand__mark { width: 52px; height: 34px; flex: none; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__name { font-family: var(--display); font-weight: 600; letter-spacing: 0.06em; font-size: 17px; color: var(--ink); white-space: nowrap; }
.brand__name .amp { color: inherit; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link { font-family: var(--sans); font-weight: 600; font-size: 13.5px; letter-spacing: 0.02em; color: var(--text); padding: 9px 14px; border-radius: var(--r-pill); white-space: nowrap; transition: background .2s, color .2s; }
.nav__link:hover { background: var(--green-soft); color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__ig { display: inline-flex; color: var(--ink); transition: color .2s, transform .2s; }
.nav__ig:hover { color: var(--green-deep); transform: translateY(-1px); }
.nav__ig svg { width: 21px; height: 21px; }
.nav__cta-text { padding: 12px 24px; min-height: 44px; }

.nav__toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--ink); transition: transform .28s, top .28s; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO — klar, geordnet, Poster-Statement
   ============================================================ */
.hero { background: var(--paper); padding-top: clamp(44px, 6vw, 84px); }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(26px, 3vw, 38px); }
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  font-size: clamp(3.1rem, 10.5vw, 9rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
}
.hero h1 em { font-style: normal; color: var(--green-deep); }
.hero__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px 48px; flex-wrap: wrap; margin-top: clamp(26px, 3vw, 40px); }
.hero__sub { color: var(--text-muted); font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.6; max-width: 46ch; }
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__figure { margin-top: clamp(36px, 4.5vw, 60px); position: relative; }
.hero__figure-inner { position: relative; overflow: hidden; border-radius: var(--r-lg); height: clamp(320px, 56vh, 600px); }
.hero__figure-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero__tags { position: absolute; left: 18px; bottom: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero__tags .chip { background: rgba(255,255,255,0.94); border-color: transparent; backdrop-filter: blur(6px); }
.hero__foot { padding-block: clamp(28px, 3.5vw, 44px); }

/* ============================================================
   BRAND MARQUEE — groß, präsent
   ============================================================ */
.marquee { background: var(--paper); border-block: 1px solid var(--border); overflow: hidden; padding-block: clamp(30px, 4vw, 48px); }
.marquee__label { text-align: center; font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 30px; }
.marquee__track { display: flex; width: max-content; gap: clamp(56px, 7vw, 110px); align-items: center; animation: scroll-x 52s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { height: 54px; width: auto; max-width: 220px; object-fit: contain; filter: grayscale(1); opacity: 0.65; mix-blend-mode: multiply; transition: opacity .3s, filter .3s; }
.marquee__track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   VERSPRECHEN — Karten auf Soft-Grün
   ============================================================ */
.promise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promise__card { background: #ffffff; border-radius: var(--r-lg); padding: 34px 32px 36px; position: relative; }
.promise__num { font-family: var(--display); font-weight: 800; font-size: 1rem; color: var(--green-deep); display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--green-soft); margin-bottom: 22px; }
.promise__card h3 { font-family: var(--display); font-weight: 800; font-size: 1.12rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.promise__card p { color: var(--text-muted); font-size: 1rem; max-width: 36ch; }
.promise__card .tag { display: inline-block; margin-top: 18px; font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-deep); }

/* ============================================================
   SORTIMENT (bento, 5 Kategorien)
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 16px; }
.tile--wide { grid-column: span 2; }
.tile { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--green-soft); display: block; isolation: isolate; }
.tile__img { position: absolute; inset: 0; }
.tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.tile:hover .tile__img img { transform: scale(1.05); }
.tile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(19,19,19,0.0) 30%, rgba(19,19,19,0.72) 100%); }
.tile__body { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; padding: 24px; color: #fff; }
.tile__name { font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.15; }
.tile__meta { font-family: var(--sans); font-weight: 500; font-size: 12.5px; letter-spacing: 0.02em; color: rgba(255,255,255,.85); }
.tile__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 12px; color: var(--ink); background: var(--green); align-self: flex-start; padding: 8px 16px; border-radius: var(--r-pill); opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.tile:hover .tile__link { opacity: 1; transform: translateY(0); }
.tile--lg { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   MARKEN WALL
   ============================================================ */
.marken__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.marken__cell { background: #ffffff; border-radius: var(--r-md); aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center; padding: clamp(16px, 2.4vw, 34px); transition: transform .3s, box-shadow .3s; }
.marken__cell img { max-width: 100%; max-height: 64px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: filter .35s, opacity .35s; mix-blend-mode: multiply; }
.marken__cell:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(19,19,19,0.08); }
.marken__cell:hover img { filter: grayscale(0); opacity: 1; }
.marken__cell--text { font-family: var(--display); font-weight: 600; font-size: clamp(14px, 1.5vw, 19px); letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); opacity: 0.6; line-height: 1.15; text-align: center; }
.marken__cell--text:hover { opacity: 1; }
.marken__names { text-align: center; margin-top: 38px; color: var(--text-muted); font-size: 1.02rem; line-height: 2; max-width: 66ch; margin-inline: auto; }
.marken__names b { color: var(--ink); font-weight: 600; }

/* ============================================================
   GESCHICHTE — schwarzes Herzstück, typografisch
   ============================================================ */
.story { overflow: hidden; }
.story__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.story h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; color: #fff; font-size: clamp(1.9rem, 3.6vw, 3.2rem); line-height: 1.06; letter-spacing: -0.005em; margin-bottom: 30px; text-wrap: balance; }
.story h2 em { font-style: normal; color: var(--green); }
.story__body > p { color: var(--on-dark-muted); font-size: 1.06rem; line-height: 1.8; margin-bottom: 20px; max-width: 58ch; }
.story__body strong { color: var(--on-dark); font-weight: 600; }
.story__quote { margin-top: 38px; padding: 28px 30px; border-radius: var(--r-lg); background: rgba(153,209,167,0.08); border: 1px solid rgba(153,209,167,0.25); }
.story__quote p { font-family: var(--display); font-weight: 700; font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.4; color: var(--green); letter-spacing: 0.005em; text-wrap: balance; }
.story__quote cite { display: block; margin-top: 14px; font-family: var(--sans); font-style: normal; font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); }

.story__side { display: flex; flex-direction: column; gap: 16px; }
.story__photo { border-radius: var(--r-lg); overflow: hidden; }
.story__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.timeline { display: flex; flex-direction: column; }
.timeline__row { display: grid; grid-template-columns: 86px 1fr; gap: 18px; align-items: baseline; padding-block: 16px; border-top: 1px solid rgba(244,247,244,0.14); }
.timeline__row:first-child { border-top: none; }
.timeline__year { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--green); }
.timeline__text { color: var(--on-dark-muted); font-size: 0.98rem; line-height: 1.6; }
.timeline__text strong { color: var(--on-dark); font-weight: 600; }

/* ============================================================
   DER LADEN (gallery)
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gfig { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--green-soft); }
.gfig img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.gfig:hover img { transform: scale(1.04); }
.gfig figcaption { position: absolute; left: 14px; bottom: 14px; padding: 8px 16px; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.03em; color: var(--ink); background: rgba(255,255,255,0.92); border-radius: var(--r-pill); opacity: 0; transition: opacity .3s; max-width: calc(100% - 28px); }
.gfig:hover figcaption { opacity: 1; }
.gfig--big { grid-column: span 2; grid-row: span 2; }
.gfig--wide { grid-column: span 2; }

/* placeholder slot */
.slot { background: repeating-conic-gradient(#f0f4f0 0% 25%, #fafcfa 0% 50%); background-size: 26px 26px; border: 1.5px dashed var(--border-strong); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--text-subtle); border-radius: var(--r-lg); }
.slot__inner { padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.slot__inner svg { width: 26px; height: 26px; opacity: .55; color: var(--green-deep); }
.slot__label { font-family: "Courier New", ui-monospace, monospace; font-size: 11.5px; letter-spacing: 0.02em; line-height: 1.5; color: var(--text-muted); max-width: 24ch; }
.slot__tag { font-family: var(--sans); font-weight: 700; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-deep); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { background: #ffffff; border-radius: var(--r-lg); padding: 34px 32px; display: flex; flex-direction: column; gap: 18px; }
.review__stars { color: var(--green-deep); font-size: 16px; letter-spacing: 3px; }
.review__text { font-family: var(--body); font-size: 1.05rem; line-height: 1.7; color: var(--text); }
.review__meta { margin-top: auto; font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-subtle); text-transform: uppercase; }
.reviews__foot { margin-top: 36px; text-align: center; font-family: var(--sans); font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted); font-size: 14px; }
.reviews__foot .stars { color: var(--green-deep); letter-spacing: 2px; }

/* ============================================================
   BESUCHEN
   ============================================================ */
.visit__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.visit__map { overflow: hidden; border-radius: var(--r-lg); min-height: 440px; background: var(--green-soft); }
.visit__map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; filter: grayscale(0.3) saturate(0.9); }
.visit__info { display: flex; flex-direction: column; }
.visit__addr { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.3rem, 2.1vw, 1.7rem); color: var(--ink); line-height: 1.25; letter-spacing: 0.01em; }
.visit__rows { margin-top: 26px; display: flex; flex-direction: column; }
.visit__row { display: flex; gap: 16px; align-items: flex-start; padding-block: 17px; border-top: 1px solid var(--border); }
.visit__row svg { width: 19px; height: 19px; color: var(--green-deep); flex: none; margin-top: 3px; }
.visit__row .k { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 4px; }
.visit__row .v { color: var(--text); font-size: 1.01rem; }
.visit__row .v a:hover { color: var(--green-deep); }
.visit__row .v .muted { color: var(--text-muted); font-size: 0.94rem; }
.visit__note { margin-top: 24px; padding: 16px 22px; background: var(--green-soft); border-radius: var(--r-md); font-size: 0.96rem; color: var(--text); }
.visit__cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   CONNECT — Brand-Grün, mutig
   ============================================================ */
.connect { background: var(--green); color: var(--ink); }
.connect .kicker { color: var(--ink); }
.connect .kicker::before { background: var(--ink); }
.connect__top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; margin-bottom: clamp(44px, 5.5vw, 68px); }
.connect h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.9rem, 3.4vw, 3rem); color: var(--ink); line-height: 1.05; letter-spacing: -0.005em; }
.connect h2 em { font-style: normal; color: #fff; }
.connect__lede { color: rgba(19,19,19,0.72); margin-top: 18px; font-size: 1.05rem; max-width: 44ch; }
.newsletter { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter input { flex: 1 1 220px; background: rgba(255,255,255,0.85); border: 1.5px solid transparent; border-radius: var(--r-pill); padding: 15px 24px; color: var(--ink); font-family: var(--body); font-size: 15px; min-height: 52px; }
.newsletter input::placeholder { color: var(--text-muted); }
.newsletter input:focus { outline: none; border-color: var(--ink); background: #fff; }
.connect__teaser { margin-top: 16px; font-size: 12.5px; letter-spacing: 0.02em; color: rgba(19,19,19,0.66); }

.ig__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.ig__handle { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; color: var(--ink); font-size: 1.1rem; letter-spacing: 0.02em; }
.ig__handle svg { width: 23px; height: 23px; }
.ig__count { color: rgba(19,19,19,0.66); font-size: 13px; font-weight: 600; }
.ig__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ig__cell { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--r-md); }
.ig__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ig__cell::after { content: ""; position: absolute; inset: 0; background: rgba(19,19,19,0.16); opacity: 0; transition: opacity .3s; }
.ig__cell:hover img { transform: scale(1.06); }
.ig__cell:hover::after { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--on-dark-muted); padding-block: clamp(56px, 7vw, 88px) 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(32px, 5vw, 72px); }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__name .amp { color: inherit; }
.footer__mark { width: 60px; height: 38px; margin-bottom: 16px; }
.footer__mark img { width: 100%; height: 100%; object-fit: contain; filter: invert(1) hue-rotate(180deg); opacity: 0.95; }
.footer__tagline { margin-top: 20px; font-family: var(--sans); font-weight: 500; font-size: 1rem; letter-spacing: 0.01em; color: var(--on-dark); line-height: 1.7; max-width: 36ch; }
.footer__col h4 { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 22px; }
.footer__col ul { display: flex; flex-direction: column; gap: 13px; }
.footer__col a:hover { color: #fff; }
.footer__col .row { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.footer__col .row svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--green); opacity: .9; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(244,247,244,0.2); border-radius: 50%; transition: all .25s; }
.footer__social a:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { margin-top: clamp(44px, 6vw, 72px); border-top: 1px solid rgba(244,247,244,0.12); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.02em; color: var(--text-subtle); }
.footer__seals { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__seals span { color: var(--on-dark-muted); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; background: var(--ink); color: #fff; display: none; align-items: center; justify-content: center; gap: 10px; padding: 16px; border-radius: var(--r-pill); font-family: var(--sans); font-weight: 700; font-size: 13.5px; letter-spacing: 0.04em; box-shadow: 0 10px 30px rgba(19,19,19,0.3); transform: translateY(130%); transition: transform .35s; }
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta svg { width: 17px; height: 17px; }

/* ---------- Reveal: immer sichtbar (Compositor-sicher) ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .story__grid { grid-template-columns: 1fr; }
  .connect__top { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .nav__menu, .nav__cta-text { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu { position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 24px; border-bottom: 1px solid var(--border); box-shadow: 0 20px 40px rgba(19,19,19,0.1); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
  .nav.is-open .nav__menu { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { width: 100%; padding: 15px 4px; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 14.5px; }

  .promise__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 320px; }
  .visit__map iframe { min-height: 320px; }

  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .tile--lg { grid-column: span 2; grid-row: span 2; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gfig--big { grid-column: span 2; grid-row: span 2; }
  .gfig--wide { grid-column: span 2; }

  .marken__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 42px; }
  .ig__grid { grid-template-columns: repeat(3, 1fr); }

  .mobile-cta { display: flex; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .topbar__inner { font-size: 10.5px; gap: 5px 14px; }
  .marquee__track img { height: 42px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .tile--lg { grid-column: span 1; grid-row: span 1; }
  .marken__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gfig--big, .gfig--wide { grid-column: span 1; }
  .gfig--big { grid-row: span 1; }
  .newsletter input { flex-basis: 100%; }
  .ig__grid { grid-template-columns: repeat(3, 1fr); }
}
