/* =================================================================
   LE CAFÉ — mobile Espressobar · lecafe.koeln
   Design-System & Layout
   ================================================================= */

/* Selbstgehostete Schriften (DSGVO – kein Google-Server-Aufruf) */
@font-face {
  font-family: 'Archivo Black';
  font-style: normal; font-weight: 400 900; font-display: swap;
  src: url('../assets/fonts/archivo-black.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('../assets/fonts/inter-var.woff2') format('woff2');
}

:root {
  /* Palette (aus Logo + Ape abgeleitet) */
  --sky:      #D6E8F2;   /* Himmelblau – Brand-BG */
  --sky-deep: #C3DCEC;
  --gold:     #A8842C;   /* Messing-Gold – Emblem */
  --gold-lite:#C9A33A;
  --ink:      #111418;   /* Schwarz */
  --ink-soft: #2b2f36;
  --mint:     #4FC3BE;   /* Ape-Türkis – Akzent */
  --mint-deep:#2E9E99;
  --paper:    #FFFFFF;
  --cream:    #F7F3EA;
  --muted:    #5b626b;
  --line:     rgba(17,20,24,.12);

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(17,20,24,.10);
  --shadow-lg: 0 24px 70px rgba(17,20,24,.16);

  --ff-display: 'Archivo Black', 'Arial Black', sans-serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--sky);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 800; font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
h1,h2,h3 { font-family: var(--ff-display); font-weight: 400; line-height: 1.02; letter-spacing: .01em; }
h2 { font-size: clamp(30px, 4.6vw, 52px); }
h3 { font-size: 22px; }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--ink-soft); max-width: 62ch; }
.center { text-align: center; }
.center .eyebrow, .center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; font-weight: 700; font-size: 16px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(17,20,24,.28); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-lite); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(214,232,242,.86);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--ff-display); font-size: 20px; letter-spacing: .04em; }
.brand img { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: inline-flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(79,195,190,.30), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(168,132,44,.16), transparent 55%),
    var(--sky);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero__flag { width: min(540px, 100%); margin-bottom: 8px; filter: drop-shadow(0 14px 30px rgba(17,20,24,.18)); }
.hero h1.sr-title { font-size: 0; line-height: 0; height: 0; overflow: hidden; }
.hero__tag { font-size: clamp(22px, 3vw, 34px); font-family: var(--ff-display); line-height: 1.06; margin: 6px 0 18px; }
.hero__tag .u { color: var(--gold); }
.hero__sub { font-size: clamp(17px, 1.7vw, 20px); color: var(--ink-soft); max-width: 48ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; }
.hero__badges span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.hero__badges svg { width: 18px; height: 18px; color: var(--gold); }

.hero__media {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--ink) 0%, #1d232b 60%, #0c0f13 100%);
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: grid; place-items: center;
}
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero__media .placeholder { text-align: center; color: rgba(255,255,255,.5); padding: 24px; }
.hero__media .placeholder img { width: 120px; height: 120px; margin: 0 auto 16px; opacity: .85; position: static; }
.hero__media .placeholder small { font-weight: 600; letter-spacing: .04em; }

/* ---------- Marquee / trust strip ---------- */
.strip { background: var(--ink); color: #fff; padding: 18px 0; }
.strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; }
.strip span { font-weight: 700; font-size: 14px; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 10px; }
.strip svg { width: 18px; height: 18px; color: var(--gold-lite); }

/* ---------- Occasions ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.card {
  background: var(--paper); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid rgba(17,20,24,.04);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--sky); display: grid; place-items: center; margin-bottom: 18px; }
.card .ic svg { width: 26px; height: 26px; color: var(--gold); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- Packages ---------- */
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 48px; }
.pkg {
  background: var(--paper); border-radius: var(--radius); padding: 38px 34px;
  box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column;
}
.pkg--feature { background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); }
.pkg__tag {
  position: absolute; top: 26px; right: 30px; font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  background: rgba(168,132,44,.14); padding: 6px 12px; border-radius: 100px;
}
.pkg--feature .pkg__tag { background: rgba(201,163,58,.2); color: var(--gold-lite); }
.pkg h3 { font-size: 26px; margin-bottom: 6px; }
.pkg .pkg__lead { color: var(--muted); margin-bottom: 22px; font-size: 15px; }
.pkg--feature .pkg__lead { color: rgba(255,255,255,.66); }
.pkg ul { display: grid; gap: 12px; margin-bottom: 26px; }
.pkg li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.pkg li svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.pkg--feature li svg { color: var(--mint); }
.pkg .price-from { font-family: var(--ff-display); font-size: 30px; margin-bottom: 4px; }
.pkg .price-from small { font-family: var(--ff-body); font-weight: 600; font-size: 14px; color: var(--muted); }
.pkg--feature .price-from small { color: rgba(255,255,255,.6); }
.pkg .btn { margin-top: auto; }

/* ---------- Pricing table + calculator ---------- */
.price-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; margin-top: 48px; align-items: start; }
.price-card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.price-card h3 { padding: 26px 30px 0; }
.price-card .note { padding: 6px 30px 18px; color: var(--muted); font-size: 14px; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { text-align: left; padding: 15px 30px; border-top: 1px solid var(--line); font-size: 15.5px; }
.price-table td:last-child { text-align: right; font-weight: 700; white-space: nowrap; }
.price-table tr:first-child th { border-top: none; }
.price-table .hl td { background: var(--cream); }

.dry-hire { margin-top: 24px; background: linear-gradient(160deg, var(--mint) 0%, var(--mint-deep) 100%); color: #06302e; border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow); }
.dry-hire h3 { color: #052b29; }
.dry-hire p { font-size: 15px; margin-top: 8px; color: #06302e; }
.dry-hire .big { font-family: var(--ff-display); font-size: 28px; margin-top: 14px; }

/* Calculator */
.calc { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); position: sticky; top: 100px; }
.calc h3 { color: #fff; margin-bottom: 4px; }
.calc p.sub { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 22px; }
.calc .row { margin-bottom: 18px; }
.calc label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,.85); }
.calc label b { color: var(--gold-lite); }
.calc input[type=range] { width: 100%; accent-color: var(--mint); }
.calc .toggles { display: flex; gap: 10px; flex-wrap: wrap; }
.calc .chip { padding: 9px 14px; border-radius: 100px; font-size: 13px; font-weight: 700; background: rgba(255,255,255,.08); color: #fff; transition: .15s; }
.calc .chip.on { background: var(--mint); color: #06302e; }
.calc .result { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.calc .result .sum { font-family: var(--ff-display); font-size: 40px; line-height: 1; }
.calc .result .sum small { font-family: var(--ff-body); font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); }
.calc .result .brk { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 8px; }
.calc .disclaimer { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 14px; }

/* ---------- Coffee / Heilandt ---------- */
.coffee { background: var(--ink); color: #fff; border-radius: var(--radius); overflow: hidden; }
.coffee__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.coffee__body { padding: 64px 56px; }
.coffee__body .eyebrow { color: var(--gold-lite); }
.coffee__body h2 { color: #fff; }
.coffee__body p { color: rgba(255,255,255,.72); margin-top: 18px; max-width: 46ch; }
.coffee__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.coffee__facts div b { font-family: var(--ff-display); font-size: 24px; color: var(--mint); display: block; }
.coffee__facts div span { font-size: 14px; color: rgba(255,255,255,.6); }
.coffee__side { background: linear-gradient(150deg, #1d232b, #0c0f13); display: grid; place-items: center; padding: 48px; }
.coffee__side .emblem { width: 200px; opacity: .92; }
.coffee__partner { margin-top: 30px; display: inline-flex; align-items: center; gap: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 14px 20px; border-radius: 14px; }
.coffee__partner b { font-family: var(--ff-display); font-size: 18px; letter-spacing: .04em; }
.coffee__partner span { font-size: 13px; color: rgba(255,255,255,.6); }

/* ---------- Kaffeekarte ---------- */
.menu-card {
  margin: 48px auto 0; max-width: 760px;
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 44px 48px; box-shadow: var(--shadow-lg);
}
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 48px; }
.menu-list li { display: flex; align-items: baseline; gap: 8px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.menu-list .mi { font-weight: 700; font-size: 16px; white-space: nowrap; }
.menu-list .dots { flex: 1; border-bottom: 2px dotted rgba(255,255,255,.22); transform: translateY(-4px); }
.menu-list .mp { font-family: var(--ff-display); font-size: 17px; color: var(--gold-lite); white-space: nowrap; }
@media (max-width: 720px) {
  .menu-card { padding: 32px 26px; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; margin-top: 48px; }
.gallery figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; background: linear-gradient(150deg, #1d232b, #0c0f13); box-shadow: var(--shadow); }
.gallery figure[data-src] { cursor: pointer; }
.gallery figure.tall { grid-row: span 2; }
.gallery figure.wide { grid-column: span 2; }
.gallery figure > img, .gallery figure > video { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover > img { transform: scale(1.05); }
.gallery .ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.42); text-align: center; padding: 16px; }
.gallery .ph img { width: 64px; height: 64px; opacity: .7; margin-bottom: 10px; }
.gallery .ph small { font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.gallery figure .play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.gallery figure .play svg { width: 56px; height: 56px; color: #fff; filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,11,15,.92); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img, .lightbox video { max-width: min(92vw, 1100px); max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 24px; right: 28px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 26px; display: grid; place-items: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 48px auto 0; display: grid; gap: 14px; }
.faq details { background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; border: 1px solid rgba(17,20,24,.04); }
.faq summary { padding: 22px 26px; font-weight: 700; font-size: 17px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--ff-display); color: var(--gold); font-size: 24px; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 26px 24px; color: var(--muted); font-size: 15.5px; }

/* ---------- Contact ---------- */
.contact { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; }
.contact__aside { background: var(--ink); color: #fff; padding: 56px 46px; }
.contact__aside .eyebrow { color: var(--gold-lite); }
.contact__aside h2 { color: #fff; font-size: clamp(28px,3.4vw,40px); }
.contact__aside p { color: rgba(255,255,255,.72); margin-top: 16px; }
.contact__aside ul { margin-top: 30px; display: grid; gap: 18px; }
.contact__aside li { display: flex; gap: 14px; align-items: center; font-size: 15px; }
.contact__aside li svg { width: 20px; height: 20px; color: var(--gold-lite); flex: none; }
.contact__aside a { border-bottom: 1px solid rgba(255,255,255,.3); }
.contact__form { padding: 48px 46px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15.5px; padding: 13px 15px; border-radius: 11px;
  border: 1.5px solid var(--line); background: #fbfcfd; color: var(--ink); transition: border .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168,132,44,.14); }
.radio-row { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-row label { flex: 1; min-width: 140px; display: flex; gap: 10px; align-items: center; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 11px; cursor: pointer; font-weight: 600; font-size: 14.5px; transition: .15s; }
.radio-row label:has(input:checked) { border-color: var(--gold); background: rgba(168,132,44,.07); }
.radio-row input { accent-color: var(--gold); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.consent input { margin-top: 3px; accent-color: var(--gold); width: 18px; height: 18px; flex: none; }
.consent a { text-decoration: underline; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { font-size: 14.5px; font-weight: 600; padding: 12px 16px; border-radius: 11px; display: none; }
.form-status.ok { display: block; background: rgba(79,195,190,.16); color: var(--mint-deep); }
.form-status.err { display: block; background: rgba(200,60,60,.12); color: #b3331f; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 30px; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--ff-display); color: #fff; font-size: 22px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: 40px; }
.site-footer p { max-width: 38ch; font-size: 14.5px; }
.footer-col h4 { font-family: var(--ff-body); color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--gold-lite); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Legal pages ---------- */
.legal { padding: 140px 0 60px; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(34px,5vw,52px); margin-bottom: 30px; }
.legal h2 { font-size: 24px; margin: 38px 0 12px; }
.legal h3 { font-size: 18px; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; font-size: 16px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal .todo { background: #fff7e6; border: 1px solid #f0d99a; border-radius: 10px; padding: 4px 8px; font-size: 14px; color: #8a6d1e; font-weight: 600; }
.legal a { color: var(--gold); text-decoration: underline; }
.back-home { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; font-weight: 700; color: var(--gold); }

/* ---------- Utilities ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { aspect-ratio: 16/10; max-height: 420px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; }
  .price-layout { grid-template-columns: 1fr; }
  .calc { position: static; }
  .coffee__grid { grid-template-columns: 1fr; }
  .coffee__side { order: -1; min-height: 240px; }
  .coffee__body { padding: 48px 36px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--sky-deep);
    padding: 12px 24px 24px; box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .coffee__facts { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .strip .wrap { gap: 12px 24px; }
  .contact__aside, .contact__form { padding: 36px 26px; }
}
