/* ============================================================
   MANNA — Catering ·  Coffee
   Bold, high-contrast — black & white with coffee brown accents
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #0b0b0b;
  --ink-2: #1a1a1a;
  --muted: #5c5c5c;
  --paper: #f4f1ea;          /* warm off-white block */
  --paper-2: #efe9dd;
  --line: #0b0b0b;
  --grey: #a3a3a3;

  /* coffee brown replaces red; warm caramel replaces green */
  --red: oklch(0.47 0.10 40);       /* espresso / dark coffee brown */
  --red-ink: oklch(0.36 0.08 40);   /* very dark coffee — small error text */
  --green: oklch(0.62 0.09 58);     /* warm caramel / amber */
  --green-ink: oklch(0.50 0.07 58); /* deeper caramel */

  --r-btn: 4px;
  --r-card: 6px;

  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);

  --font: "Archivo", system-ui, sans-serif;

  /* Font size scale */
  --fs-xs: 13px;   /* tiny: labels, tags, eyebrows */
  --fs-s:  15px;   /* small: nav, captions, secondary text */
  --fs-m: 16px;   /* standard: buttons, inputs, body lists */
  --fs-l:  18px;   /* lead: body base, marquee, descriptions */
  --fs-xl: 28px;   /* sub-headings: stats, signatures */

  /* Heading size scale */
  --fs-h1:   clamp(30px, 5.5vw, 116px); /* hero title */
  --fs-h2:   clamp(38px, 5.6vw, 76px);  /* section headings */
  --fs-h3:   clamp(22px, 2.4vw, 32px);  /* card headings */
  --fs-h4:   clamp(20px, 1.8vw, 26px);  /* small headings */
  --fs-lead: clamp(20px, 2.4vw, 28px);  /* lead paragraphs */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: var(--fs-l);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--red);
}

.dotg { color: var(--green); }
.dotr { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  --bbg: var(--ink);
  --bfg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 800;
  font-size: var(--fs-sm);
  letter-spacing: -0.01em;
  padding: 16px 26px;
  border: 2.5px solid var(--ink);
  border-radius: var(--r-btn);
  background: var(--bbg);
  color: var(--bfg);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.btn--red   { --bbg: var(--red);   --bfg: #fff; }
.btn--green { --bbg: var(--green); --bfg: #fff; }
.btn--ghost { --bbg: #fff; --bfg: var(--ink); }
.btn--lg { font-size: var(--fs-l); padding: 19px 32px; }

.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn:disabled,
.btn:disabled:hover,
.btn:disabled:active {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-sm);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 2.5px solid var(--ink);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { display: block; height: 28px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  font-size: var(--fs-m);
}
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2.5px; background: var(--red);
  transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* Mobile full-page nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.nav-overlay__link {
  color: #fff;
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  transition: color .15s ease;
}
.nav-overlay__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width .2s ease;
}
.nav-overlay__link:hover { color: var(--paper); }
.nav-overlay__link:hover::after { width: 100%; }
.nav-overlay__cta { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 6vw, 80px) 0 ; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.hero h1 {
  font-size: var(--fs-h1);
  margin: 20px 0 0;
}
.hero h1 .mk { color: var(--red); }
.hero h1 .mk2 { color: var(--green); }
.hero__sub {
  margin-top: 26px;
  font-size: var(--fs-l);
  color: var(--muted);
  max-width: 46ch;
  font-weight: 500;
}
.hero__actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  margin-top: 44px;
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}
.stat__n { font-size: var(--fs-xl); font-weight: 900; letter-spacing: -0.04em; }
.stat__l { font-size: var(--fs-xs); font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.hero__media { position: relative; }
.hero__img {
  width: 100%;
  height: clamp(380px, 55vw, 620px);
  background: #fff;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
}
.hero__coffee {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.hero__badge {
  position: absolute;
  left: -18px; bottom: 28px;
  background: var(--red);
  color: #fff;
  border: 2.5px solid var(--ink);
  border-radius: var(--r-btn);
  padding: 13px 18px;
  font-weight: 900;
  font-size: var(--fs-s);
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-sm);
  transform: rotate(-3deg);
  display: flex; align-items: center; gap: 9px;
}
.hero__chip {
  position: absolute;
  right: -14px; top: 26px;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: var(--fs-s);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 8px;
}
.hero__chip .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__img { height: auto; }
  .hero__coffee { height: auto; object-fit: initial; }
}

/* Marquee strip */
.strip {
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  padding: 15px 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: var(--fs-l);
  animation: marq 26s linear infinite;
  width: max-content;
}
.strip__track span { display: inline-flex; align-items: center; gap: 40px; }
.strip .sep { color: var(--green); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Section heading ---------- */
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--paper { background: var(--paper); border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); }
.section__head {
  display: flex;
  flex-direction: column ;
  /* align-items: flex-end; */
  justify-content: space-between;
  margin-bottom: clamp(36px, 5vw, 64px);
  flex-wrap: wrap;
}
.section__title {
  font-size: var(--fs-h2);
}
.section__title .num {
  font-size: 0.34em;
  vertical-align: top;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0;
  margin-right: 12px;
}
.section__lead { max-width: 40ch; color: var(--muted); font-weight: 500; font-size: var(--fs-l); }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.svc {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.svc:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.svc__img { height: 250px; border-bottom: 3px solid var(--ink); }
.svc__body { padding: 28px clamp(22px, 2.5vw, 34px) 30px; display: flex; flex-direction: column; flex: 1; }
.svc__tag {
  align-self: flex-start;
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; border: 2px solid var(--ink);
  margin-bottom: 16px;
}
.svc--lunch .svc__tag { background: var(--green); color: #fff; }
.svc--event .svc__tag { background: var(--red); color: #fff; }
.svc h3 { font-size: var(--fs-h3); }
.svc--lunch h3 { color: var(--green); }
.svc--event h3 { color: var(--red); }
.svc__txt { margin-top: 14px; color: var(--muted); font-weight: 500; }
.svc__list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; }
.svc__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: var(--fs-sm); }
.svc__list li::before {
  content: ""; width: 11px; height: 11px; flex: none;
  background: var(--ink); transform: rotate(45deg);
}
.svc--lunch .svc__list li::before { background: var(--green); }
.svc--event .svc__list li::before { background: var(--red); }
.svc__foot { margin-top: auto; padding-top: 26px; }
.svc__link { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: var(--fs-sm); border-bottom: 3px solid var(--red); padding-bottom: 3px; }
.svc--lunch .svc__link { border-color: var(--green); }
.svc__link .arrow { transition: transform .15s ease; }
.svc__link:hover .arrow { transform: translateX(4px); }

@media (max-width: 820px) { .services { grid-template-columns: 1fr; } }

/* ---------- Story / timeline ---------- */
.story__lead { max-width: 52ch; font-size: var(--fs-lead); font-weight: 700; letter-spacing: -0.02em; margin-bottom: clamp(46px, 6vw, 80px); }
.story__lead .mk { color: var(--red); }

.timeline { position: relative; }
.timeline__line {
  position: absolute;
  left: 0; right: 0; top: 13px;
  height: 3px;
  background: var(--ink);
}
.timeline__line::after {
  content: "";
  position: absolute; right: 0; top: -5px;
  border-left: 13px solid var(--red);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.timeline__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tl {
  position: relative;
  padding-top: 40px;
}
.tl__dot {
  position: absolute; top: 4px; left: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ink);
}
.tl__dot::after {
  content: ""; position: absolute; inset: 4px;
  border-radius: 50%; background: var(--ink);
}
.tl--future .tl__dot { border-style: dashed; }
.tl--future .tl__dot::after { background: var(--red); }
.tl__year { font-size: var(--fs-s); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); }
.tl--future .tl__year { color: var(--red); }
.tl h4 { font-size: var(--fs-h4); margin-top: 8px; }
.tl p { margin-top: 10px; color: var(--muted); font-weight: 500; font-size: var(--fs-s); max-width: 30ch; }
.tl--future {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-card);
  padding: 28px 22px 26px;
  margin-top: -16px;
}
.tl--future .tl__dot { top: 32px; left: 22px; }
.tl--future p { color: #c9c5bd; }

.story__cta { margin-top: clamp(46px, 6vw, 72px); display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.story__cta p { font-weight: 600; color: var(--muted); }

@media (max-width: 820px) {
  .timeline__line { display: none; }
  .timeline__row { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .tl { padding-left: 34px; padding-top: 0; }
  .tl__dot { top: 2px; }
  .tl--future { margin-top: 0; padding-left: 22px; }
  .tl--future .tl__dot { top: 26px; left: 22px; }
}
@media (max-width: 520px) {
  .timeline__row { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: #fff; border-top: 2.5px solid var(--ink); }
.contact__head { margin-bottom: clamp(28px, 4vw, 48px); }
.contact h2 { font-size: var(--fs-h2); }
.contact h2 .mk { color: var(--green); }
.contact__intro { margin-top: 22px; color: #c9c5bd; font-weight: 500; max-width: 52ch; }

.form {
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: 8px 8px 0 var(--red);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: var(--font);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 14px 15px;
  border: 2.5px solid var(--ink);
  border-radius: var(--r-btn);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: box-shadow .12s ease, border-color .12s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #a8a39a; font-weight: 500; }
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: var(--shadow-sm);
  border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; }
.field--err input, .field--err select, .field--err textarea { border-color: var(--red); }
.field__err { color: var(--red-ink); font-size: var(--fs-xs); font-weight: 700; min-height: 0; display: none; }
.field--err .field__err { display: block; }
.form__submit { margin-top: 6px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form__note { font-size: var(--fs-xs); color: var(--muted); font-weight: 600; }
.form__hint { margin-top: 14px; font-size: var(--fs-s); color: var(--muted); font-weight: 500; }

/* Checkbox group */
.check-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.check-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-s);
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  line-height: 1.3;
}
.check-opt input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.check-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2.5px solid var(--ink);
  border-radius: 3px;
  display: grid;
  place-items: center;
  transition: background .12s ease, border-color .12s ease;
}
.check-opt input:checked ~ .check-box {
  background: var(--red);
  border-color: var(--red);
}
.check-opt input:checked ~ .check-box::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}
.check-opt:hover .check-box { border-color: var(--red); }

.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 30px 10px;
}
.form__success .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green); border: 3px solid var(--ink);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.form__success h3 { font-size: var(--fs-xl); }
.form__success p { color: var(--muted); font-weight: 500; }
.form.sent .form__success { display: flex; }
.form.sent .form__fields { display: none; }

@media (max-width: 860px) {
  .form__row { grid-template-columns: 1fr; }
  .check-group { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { background: var(--bg); padding: clamp(56px, 7vw, 90px) 0 40px; border-top: 2.5px solid var(--ink); }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 2.5px solid var(--ink);
}
.footer__brand .logo img { height: 30px; }
.footer__tag { margin-top: 18px; color: var(--muted); font-weight: 500; max-width: 30ch; }
.footer__col h5 { font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col a { font-weight: 700; font-size: var(--fs-sm); }
.footer__col a:hover { color: var(--ink); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding-top: 26px;
  font-weight: 600; font-size: var(--fs-s); color: var(--muted);
}
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { font-size: var(--fs-s); font-weight: 600; color: var(--muted); }
.footer__legal a:hover { color: var(--ink); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 42px; height: 42px; border: 2.5px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: var(--fs-xs);
  transition: background .15s ease, color .15s ease;
}
.footer__social a:hover { background: var(--ink); color: #fff; }

@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- service images ---------- */
.svc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   MANNA v2 — additional styles
   ============================================================ */

/* ── Services v2 ── */
.services-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.svc-min {
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease;
}
.svc-min:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.svc-min__img {
  height: 250px;
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.svc-min__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-min__body { padding: 22px 26px 26px; }
.svc-min__title {
  font-size: var(--fs-h3);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.svc-min__text { color: var(--muted); font-weight: 500; font-size: var(--fs-s); line-height: 1.55; }

.services-note {
  padding: 34px 40px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 48px;
  align-items: center;
}
.services-note__text { color: var(--muted); font-weight: 500; font-size: var(--fs-l); max-width: 58ch; }

@media (max-width: 820px) {
  .services-v2 { grid-template-columns: 1fr; }
  .services-note { grid-template-columns: 1fr; }
}

/* ── Benefits / USP ── */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bcard {
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 28px 24px 32px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.bcard:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

.bcard__icon {
  width: 50px;
  height: 50px;
  background: var(--ink);
  border-radius: var(--r-btn);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.bcard__icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bcard__title { font-size: var(--fs-h4); font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; }
.bcard__desc { color: var(--muted); font-size: var(--fs-s); font-weight: 500; line-height: 1.5; }

@media (max-width: 900px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .benefits__grid { grid-template-columns: 1fr; }
}

/* ── About ── */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__img-wrap { position: relative; }
.about__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  display: block;
}
.about__title { font-size: var(--fs-h2); margin-bottom: 22px; }
.about__text { color: var(--muted); font-weight: 500; font-size: var(--fs-sm); line-height: 1.65; }
.about__text + .about__text { margin-top: 14px; }
.about__sig { font-size: var(--fs-xl); font-weight: 900; letter-spacing: -0.02em; margin-top: 30px; }
.about__role { font-size: var(--fs-xs); font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-page {
  padding: clamp(56px, 8vw, 110px) 0 clamp(64px, 9vw, 120px);
  min-height: 60vh;
}
.legal-page__inner {
  max-width: 780px;
}
.legal-page h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  padding-bottom: 28px;
  margin-bottom: 48px;
}
.legal-page h2 {
  font-size: var(--fs-h4);
  line-height: 1.1;
  margin-top: 48px;
  margin-bottom: 14px;
}
.legal-page h3 {
  font-size: var(--fs-m);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 28px;
  margin-bottom: 8px;
}
.legal-page p,
.legal-page ul,
.legal-page ol {
  color: var(--muted);
  font-size: var(--fs-s);
  font-weight: 500;
  line-height: 1.75;
  margin-top: 10px;
}
.legal-page ul,
.legal-page ol {
  padding-left: 22px;
}
.legal-page li { margin-bottom: 5px; }
.legal-page a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--red); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-s);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--muted);
  transition: color .15s ease;
}
.legal-back:hover { color: var(--ink); }
