/* ============================================================
   HÜBSCH und gut — Design System
   Warmes Rot + Creme · Clean & technisch
   Lokale Schriften (DSGVO-konform, keine externen Requests)
   ============================================================ */

/* ---------- Fonts (lokal) ---------- */
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/SpaceGrotesk-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/SpaceGrotesk-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/SpaceGrotesk-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --red: #C8102E;
  --red-deep: #9A0E20;
  --red-soft: #f7e4e3;
  --ink: #241c18;
  --ink-2: #4a3e36;
  --muted: #786a5f;
  --cream: #faf6f0;
  --cream-2: #f3ebdf;
  --surface: #ffffff;
  --line: #e8ddce;
  --line-soft: #efe7da;
  --dark: #211a16;
  --dark-2: #2c231d;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(36,28,24,.06), 0 2px 8px rgba(36,28,24,.04);
  --shadow: 0 6px 18px rgba(36,28,24,.07), 0 2px 6px rgba(36,28,24,.05);
  --shadow-lg: 0 24px 60px -18px rgba(36,28,24,.22), 0 8px 24px rgba(36,28,24,.08);
  --shadow-red: 0 14px 30px -10px rgba(200,16,46,.45);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --container: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
/* overflow-x: clip verhindert horizontales Scrollen durch das ausgeblendete
   Off-Canvas-Menü, ohne position: sticky des Headers zu brechen. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section-alt { background: var(--cream-2); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 1.6rem + 4.4vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.4rem); }
p { color: var(--ink-2); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: .9rem;
}
.accent { color: var(--red); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-lead { font-size: 1.12rem; color: var(--muted); margin-top: 1rem; }
.section-head-light h2, .section-head-light .eyebrow { color: #fff; }
.section-head-light .eyebrow { color: #ff9aa6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 100px; border: 1.5px solid transparent;
  min-height: 48px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap; line-height: 1;
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; min-height: 56px; }
.btn-sm { padding: .6rem 1.1rem; min-height: 42px; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(200,16,46,.55); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ---------- Header ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: 1000;
  background: var(--red); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.skip-link:focus { top: 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }

/* Logo */
.brand-logo { height: 32px; width: auto; display: block; }
@media (max-width: 420px) { .brand-logo { height: 27px; } }

.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: var(--red); color: #fff; font-weight: 700; font-size: 1.25rem; flex: none;
  box-shadow: var(--shadow-red);
}
.brand-text { font-size: 1.18rem; color: var(--ink); letter-spacing: -.01em; }
.brand-text strong { font-weight: 700; }
.brand-text { font-weight: 500; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 1.6vw, 1.8rem); }
.nav > a:not(.btn) {
  font-weight: 500; font-size: .98rem; color: var(--ink-2); position: relative; padding: .35rem 0;
  transition: color .2s;
}
.nav > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--red); transition: width .28s var(--ease); border-radius: 2px;
}
.nav > a:not(.btn):hover { color: var(--ink); }
.nav > a:not(.btn):hover::after { width: 100%; }
.nav-cta { margin-left: .4rem; }

/* Burger */
.burger {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); position: relative; flex: none;
}
.burger span {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transform: translate(-50%,-50%); transition: transform .3s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { transform: translate(-50%,-7px); }
.burger span:nth-child(3) { transform: translate(-50%,5px); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 90; background: rgba(36,28,24,.45);
  opacity: 0; transition: opacity .3s; backdrop-filter: blur(2px);
}
.nav-backdrop.show { opacity: 1; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 6vw, 6rem) clamp(3rem, 6vw, 5.5rem); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 50vw; height: 50vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(200,16,46,.10), transparent 65%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-block: .4rem .9rem; }
.hero-sub { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); color: var(--ink-2); max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem,4vw,3rem); margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero-stats dt { font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; color: var(--ink); line-height: 1; }
.hero-stats dd { color: var(--muted); font-size: .92rem; margin-top: .35rem; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}
.hero-badge {
  position: absolute; bottom: 1.2rem; left: -1rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: 100px; padding: .6rem 1.1rem;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink);
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .5rem;
}
.hero-badge-dot { width: 9px; height: 9px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 4px rgba(22,163,74,.18); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); color: #fff; }
.trustbar-inner {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
}
.trust-item { display: flex; flex-direction: column; gap: .2rem; padding-inline: .5rem; position: relative; }
.trust-item + .trust-item::before {
  content: ''; position: absolute; left: 0; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,.14);
}
.trust-num { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #fff; }
.trust-label { color: rgba(255,255,255,.66); font-size: .9rem; }

/* ---------- Cards (Leistungen) ---------- */
.cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red-soft); }
.card-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-icon {
  position: absolute; bottom: -22px; left: 1.4rem;
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--red); color: #fff; box-shadow: var(--shadow-red);
}
.card-icon svg { width: 24px; height: 24px; }
.card-body { padding: 2rem 1.5rem 1.7rem; }
.card-body h3 { margin-bottom: .6rem; }
.card-body p { color: var(--muted); font-size: .96rem; }

/* ---------- Shops ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.shop-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .55rem;
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 2rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.shop-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red-soft); }
.shop-card:hover::before { transform: scaleX(1); }
.shop-tag {
  font-family: var(--font-display); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); background: var(--red-soft); padding: .35rem .7rem; border-radius: 100px;
}
.shop-card h3 { margin-top: .3rem; }
.shop-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.shop-link { font-family: var(--font-display); font-weight: 600; color: var(--ink); margin-top: .4rem; display: inline-flex; align-items: center; gap: .45rem; }
.shop-link .arrow { transition: transform .3s var(--ease); color: var(--red); }
.shop-card:hover .shop-link .arrow { transform: translateX(5px); }

/* ---------- Über uns ---------- */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media img { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.lead-quote { font-size: 1.18rem; color: var(--ink-2); margin: 1rem 0 1.8rem; }

/* Accordion */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; padding: 1.15rem 0; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.acc-icon { position: relative; width: 20px; height: 20px; flex: none; }
.acc-icon::before, .acc-icon::after {
  content: ''; position: absolute; background: var(--red); border-radius: 2px; transition: transform .3s var(--ease);
}
.acc-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.acc-icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: translateX(-50%) scaleY(0); }
.acc-panel { overflow: hidden; height: 0; transition: height .35s var(--ease); }
.acc-panel p { padding-bottom: 1.2rem; color: var(--muted); }

/* ---------- Warum (dark) ---------- */
.section-dark { background: linear-gradient(160deg, var(--dark), var(--dark-2)); color: #fff; position: relative; overflow: hidden; }
.section-dark::before {
  content: ''; position: absolute; top: -30%; left: -10%; width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(200,16,46,.22), transparent 65%); pointer-events: none;
}
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; position: relative; }
.feature {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-lg);
  padding: 1.8rem 1.5rem; transition: transform .35s var(--ease), background .35s, border-color .35s;
}
.feature:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); }
.feature-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--red); color: #fff; margin-bottom: 1.2rem; box-shadow: var(--shadow-red); }
.feature-ic svg { width: 24px; height: 24px; }
.feature h3 { color: #fff; margin-bottom: .5rem; }
.feature p { color: rgba(255,255,255,.66); font-size: .95rem; }

/* ---------- Ablauf / Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm); position: relative;
}
.step-num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #fff; background: var(--red);
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1.1rem;
}
.step h3 { margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- Standorte ---------- */
.loc-pill {
  align-self: flex-start; font-family: var(--font-display); font-weight: 600; font-size: .74rem;
  letter-spacing: .06em; color: var(--red); background: var(--red-soft); padding: .35rem .8rem; border-radius: 100px; margin-bottom: .9rem;
}
address { font-style: normal; display: grid; gap: .55rem; margin-bottom: 1.3rem; }
.loc-line { display: flex; gap: .6rem; align-items: baseline; color: var(--ink-2); font-size: .96rem; }
.loc-line a { word-break: break-word; }
.loc-line a:hover { color: var(--red); }
.loc-ic { flex: none; }
.loc-hours { background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--r); padding: .9rem 1.1rem; margin-bottom: 1.4rem; }
.loc-hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: .2rem 0; font-size: .92rem; color: var(--ink-2); }
.loc-hours-row.muted { color: var(--muted); }
.loc-hours-row span:first-child { font-weight: 600; color: var(--ink); }

.location-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; align-items: stretch; }
.location-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red-soft); }
.loc-card-media { aspect-ratio: 16 / 8; overflow: hidden; }
.loc-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.location-card:hover .loc-card-media img { transform: scale(1.05); }
.location-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.7rem 1.6rem 1.8rem; }
.location-card-body h3 { margin-bottom: 1rem; }
.location-card-body .loc-hours { margin-top: auto; }
.location-card-body .btn { margin-top: 1.2rem; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-list { display: grid; gap: .9rem; margin-top: 1.8rem; }
.contact-list li { display: flex; gap: .7rem; align-items: center; font-size: 1.05rem; color: var(--ink-2); }
.contact-list a:hover { color: var(--red); }

.contact-form {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow); display: grid; gap: 1.2rem;
}
.field { display: grid; gap: .45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label, .consent { font-size: .92rem; font-weight: 500; color: var(--ink); }
.req { color: var(--red); }
.field input, .field textarea {
  font: inherit; width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: var(--cream); color: var(--ink); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(200,16,46,.10); }
.field input.invalid, .field textarea.invalid { border-color: var(--red); background: #fff6f5; }
.consent { display: flex; gap: .7rem; align-items: flex-start; line-height: 1.5; color: var(--ink-2); cursor: pointer; }
.consent input { width: 22px; height: 22px; flex: none; margin-top: 1px; accent-color: var(--red); cursor: pointer; }
.consent a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.form-note { font-size: .95rem; min-height: 1.2em; }
.form-note.ok { color: #15803d; font-weight: 500; }
.form-note.err { color: var(--red); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: clamp(3rem,6vw,5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .95rem; margin: 1rem 0 1.3rem; max-width: 34ch; }
.brand-footer-logo { display: inline-block; background: #fff; padding: .7rem .9rem; border-radius: var(--r-sm); box-shadow: var(--shadow); }
.brand-footer-logo img { height: 30px; width: auto; display: block; }
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col { display: grid; gap: .7rem; align-content: start; }
.footer-col a { color: rgba(255,255,255,.62); font-size: .96rem; transition: color .2s; width: fit-content; }
.footer-col a:hover { color: #fff; }
.social-link { display: inline-flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.72); font-weight: 500; transition: color .2s; }
.social-link svg { width: 30px; height: 30px; padding: 7px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transition: background .2s, border-color .2s; }
.social-link:hover { color: #fff; }
.social-link:hover svg { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
}
.footer-copy { color: rgba(255,255,255,.5); font-size: .88rem; }
.footer-powered { font-size: .88rem; color: rgba(255,255,255,.5); }
.wowobot { color: #22b8e0; font-weight: 600; transition: opacity .2s; }
.wowobot:hover { opacity: .8; }
.footer-disclaimer { color: rgba(255,255,255,.38); font-size: .78rem; padding-bottom: 2rem; }

/* ---------- Legal pages ---------- */
.legal { padding-block: clamp(2.5rem, 6vw, 5rem); }
.legal h1 { font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.2rem); margin-bottom: 1.5rem; }
.legal .container { max-width: 820px; }
.legal-block { margin-top: 2rem; }
.legal-block h2 { font-size: 1.25rem; margin-bottom: .6rem; }
.legal-block p { color: var(--ink-2); }
.legal-note {
  background: var(--red-soft); border: 1px solid #f0cfce; border-radius: var(--r);
  padding: 1rem 1.2rem; color: var(--ink-2); font-size: .95rem; margin-bottom: 1.5rem;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards, .feature-grid, .steps { grid-template-columns: repeat(2,1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
  .trust-item:nth-child(odd)::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 860px) {
  /* Mobile nav */
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 95;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .25rem;
    background: var(--cream); padding: 5.5rem 1.5rem 2rem; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .35s var(--ease), visibility .35s; overflow-y: auto;
    visibility: hidden;
  }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav > a:not(.btn) { padding: .95rem .5rem; font-size: 1.1rem; border-bottom: 1px solid var(--line-soft); }
  .nav > a:not(.btn)::after { display: none; }
  .nav-cta { margin: 1rem 0 0; width: 100%; }

  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media { order: -1; }
  .hero-sub { max-width: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .location-grid-3 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cards, .feature-grid, .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .6rem; }
  .hero-stats { gap: 1.4rem 2rem; }
  .field-row { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.2rem, 1.4rem + 4vw, 3rem); }
  .trustbar-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .trustbar-inner { grid-template-columns: 1fr; }
  .trust-item::before { display: none !important; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
