/* Selbst gehostete Schriften (kein Google-Fonts-CDN, keine Datenübertragung an Google) */
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/inter-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/inter-latin-500-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/inter-latin-600-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/inter-latin-700-normal.woff2') format('woff2');}
@font-face{font-family:'Bricolage Grotesque';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/bricolage-grotesque-latin-600-normal.woff2') format('woff2');}
@font-face{font-family:'Bricolage Grotesque';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/bricolage-grotesque-latin-700-normal.woff2') format('woff2');}
@font-face{font-family:'Bricolage Grotesque';font-style:normal;font-weight:800;font-display:swap;src:url('fonts/bricolage-grotesque-latin-800-normal.woff2') format('woff2');}

/* =====================================================================
   Coworking Detmold – Am Gelskamp 14
   Design-Kontrakt
   THESIS: Nicht der x-te generische Coworking-Space, sondern "das Haus
     mit dem Hermann vor der Tuer" – ein lokales Wahrzeichen als Marke. Rot (Fassade) fuehrt.
   OWN-WORLD: Warmes Papierweiss, tiefes Fassadenrot als committete Farbe,
     Bricolage-Grotesque-Display, echte Objektfotos, gezeichnete Icons.
   STORY: Der Besucher erkennt sofort ein echtes Haus an einem echten Ort,
     versteht das Angebot und die Flexibilitaet und findet die freien Bueros.
   FIRST VIEWPORT: Rot geflutetes Hero, grosse Schlagzeile links, der rote
     Hermann gerahmt rechts, Adresse + zwei Aktionen.
   FINISH: lokal gebaut zum Testen; Veroeffentlichung nur nach Freigabe.
   ===================================================================== */

:root {
  --paper:      #F4F4F2;   /* heller, neutraler Ton der Skyline-Datei (nicht das Silhouetten-Grau) */
  --paper-2:    #E9E8E5;   /* etwas tieferes Neutralgrau fuer Baender und Footer */
  --white:      #FFFFFF;
  --sky:        #646567;   /* Originalgrau der Detmold-Skyline */
  --ink:        #1C1A19;
  --ink-soft:   #4A423F;
  --muted:      #6B615D;
  --line:       rgba(28,26,25,.12);
  --line-soft:  rgba(28,26,25,.08);

  --red:        #C7161D;
  --red-600:    #A9121A;
  --red-700:    #8A0F16;
  --red-900:    #5E0A10;
  --red-tint:   #FBEDEC;

  --gold:       #C8922B;

  --radius:     14px;
  --radius-sm:  9px;
  --shadow-sm:  0 1px 2px rgba(28,26,25,.06), 0 2px 8px rgba(28,26,25,.05);
  --shadow-md:  0 6px 16px rgba(28,26,25,.08), 0 14px 40px rgba(28,26,25,.10);
  --shadow-red: 0 10px 30px rgba(122,14,18,.28);

  --maxw: 1160px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --f-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.02em; }
p { text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 8vw, 108px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 60ch; }
.eyebrowless { } /* no kickers per craft floor */
.center { text-align: center; margin-inline: auto; }
.measure { max-width: 66ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--f-display); font-weight: 700; font-size: 1rem;
  letter-spacing: -0.01em;
  padding: .82em 1.35em; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s;
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--onred { background: #fff; color: var(--red-700); }
.btn--onred:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.22); }
.btn--onred-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--onred-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,244,.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 800; letter-spacing: -0.03em; font-size: 1.16rem; }
.brand__mark { width: 40px; height: 40px; border-radius: 10px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; flex: none; box-shadow: var(--shadow-sm); }
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand small { display: block; font-family: var(--f-body); font-weight: 500; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-weight: 500; font-size: .97rem; color: var(--ink-soft);
  padding: .5em .7em; border-radius: 8px; transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--ink); background: var(--paper-2); }
.nav__links a.is-active { color: var(--red); font-weight: 600; }
.nav__cta { margin-left: 8px; }
/* Nav-CTA-Button: immer weisse Schrift auf Rot (ueberschreibt die generischen Nav-Link-Regeln) */
.nav__links a.nav__cta, .nav__links a.nav__cta:hover { color: #fff; }
.nav__links a.nav__cta { background: var(--red); }
.nav__links a.nav__cta:hover { background: var(--red-600); }
.nav__toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 9px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle svg { width: 22px; height: 22px; }

/* ---------- Hero (red-drenched) ---------- */
.hero { position: relative; color: #fff; background: radial-gradient(120% 130% at 85% 0%, var(--red-600) 0%, var(--red-700) 45%, var(--red-900) 100%); overflow: hidden; }
.hero::after { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.4px); background-size: 22px 22px; opacity:.5; pointer-events:none; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px); align-items: center; padding: clamp(52px, 7vw, 92px) 0 clamp(56px, 7vw, 96px); }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); letter-spacing: -0.045em; }
.hero h1 em { font-style: normal; color: #FFE7DE; }
.hero__sub { margin-top: 22px; font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: #FCE6E1; max-width: 40ch; line-height: 1.5; }
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__addr { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; font-size: .95rem; color: #FBD9D2; }
.hero__addr svg { width: 18px; height: 18px; flex: none; }
.hero__figure { position: relative; }
.hero__figure img { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: 30% center; border-radius: 18px; border: 6px solid #fff; box-shadow: 0 22px 60px rgba(0,0,0,.35); }
.hero__tag { position: absolute; left: -14px; bottom: 22px; background: #fff; color: var(--red-700); font-family: var(--f-display); font-weight: 800; font-size: .95rem; padding: .6em 1em; border-radius: 100px; box-shadow: var(--shadow-md); transform: rotate(-3deg); }

/* ---------- Trust strip ---------- */
.strip { background: var(--ink); color: #EFE8E2; }
.strip__row { display: flex; flex-wrap: wrap; gap: 8px 34px; justify-content: center; align-items: center; padding: 16px 0; font-size: .93rem; }
.strip__row span { display: inline-flex; align-items: center; gap: 9px; color: #E7DED8; }
.strip__row svg { width: 17px; height: 17px; color: #F19E9A; flex: none; }

/* ---------- Section headings ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 46px); }
.sec-head h2 + p { margin-top: 16px; }

/* ---------- Feature list (offer / inklusive) ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: clamp(16px,2.5vw,26px); }
.feature { padding: 26px 24px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__ic { width: 44px; height: 44px; border-radius: 11px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; margin-bottom: 16px; }
.feature__ic svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.16rem; }
.feature p { margin-top: 8px; color: var(--muted); font-size: .97rem; }

/* ---------- Vacancy band (the conversion centre) ---------- */
.vac { background: var(--paper-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.vac__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-family: var(--f-display); font-weight: 700; font-size: .82rem; letter-spacing: .02em; padding: .42em .9em; border-radius: 100px; }
.badge--soft { background: var(--red-tint); color: var(--red-700); }
.badge--free { background: #12694A; }
.unit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 18px; }
.unit-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.unit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.unit-card__media { aspect-ratio: 3/2; background: var(--paper-2); position: relative; overflow: hidden; }
.unit-card__media img { width:100%; height:100%; object-fit: cover; transition: transform .5s var(--ease); }
.unit-card:hover .unit-card__media img { transform: scale(1.045); }
.unit-card__ph { position:absolute; inset:0; display:grid; place-items:center; gap:8px; background: linear-gradient(160deg, var(--red-tint), var(--paper-2)); color: var(--red-700); text-align:center; }
.unit-card__ph img { width: 64px; height: 64px; opacity: .8; border-radius: 12px; }
.unit-card__ph span { font-size: .8rem; font-weight: 600; letter-spacing: .02em; }
.unit-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.unit-card__body h3 { font-size: 1.2rem; }
.unit-card__meta { margin-top: 6px; color: var(--muted); font-size: .92rem; }
.unit-card__price { margin-top: 14px; display: flex; align-items: baseline; gap: 8px; }
.unit-card__price b { font-family: var(--f-display); font-size: 1.5rem; color: var(--ink); }
.unit-card__price s { color: var(--muted); font-size: .85rem; text-decoration: none; }
.unit-card__foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; }
.unit-card__go { display:inline-flex; align-items:center; gap:6px; color: var(--red); font-weight:600; font-size:.95rem; }
.unit-card:hover .unit-card__go svg { transform: translateX(3px); }
.unit-card__go svg { width:16px; height:16px; transition: transform .3s var(--ease); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media img { width:100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.split__body h2 { margin-bottom: 16px; }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.checklist svg { width: 21px; height: 21px; color: var(--red); flex: none; margin-top: 3px; }
.checklist b { color: var(--ink); font-weight: 600; }

/* ---------- Local proof (Umgebung) ---------- */
.places { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.place { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.place h4 { font-family: var(--f-display); font-weight: 700; font-size: 1.02rem; }
.place span { color: var(--red); font-weight: 600; font-size: .86rem; }
.place p { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* ---------- Offer overview cards ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; }
.offer { display:flex; flex-direction:column; gap:10px; padding: 26px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.offer__ic { width:46px;height:46px;border-radius:12px;background:var(--red-tint);color:var(--red);display:grid;place-items:center; }
.offer__ic svg{width:24px;height:24px;}
.offer h3 { font-size: 1.18rem; }
.offer p { color: var(--muted); font-size: .96rem; flex:1; }
.offer__go { color: var(--red); font-weight:600; font-size:.95rem; display:inline-flex; gap:6px; align-items:center; }
.offer__go svg{width:16px;height:16px;transition:transform .3s var(--ease);}
.offer:hover .offer__go svg{transform:translateX(3px);}

/* ---------- CTA band (light, red as accent – never covers the skyline) ---------- */
.cta { background: var(--paper-2); border-top: 1px solid var(--line-soft); text-align:center; }
.cta__rule { display:inline-block; width:56px; height:4px; border-radius:2px; background:var(--red); margin-bottom:22px; }
.cta h2 { font-size: clamp(2rem,4vw,3.1rem); color: var(--ink); }
.cta p { margin: 16px auto 0; max-width: 52ch; color: var(--muted); }
.cta__actions { margin-top: 28px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ---------- Detail page ---------- */
.crumbs { font-size: .88rem; color: var(--muted); padding-top: 26px; display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.crumbs a:hover { color: var(--red); }
.crumbs svg { width: 14px; height: 14px; opacity:.6; }
.detail-head { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,56px); align-items:center; padding: 26px 0 8px; }
.detail-head h1 { font-size: clamp(2.1rem,4.4vw,3.4rem); letter-spacing:-0.04em; }
.detail-head .lead { margin-top: 18px; }
.detail-badges { display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 20px; }
.detail-media img { width:100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.detail-media--stack { display:grid; gap:12px; }
.ph-large { aspect-ratio: 4/3; border-radius: var(--radius); background: linear-gradient(160deg, var(--red-tint), var(--paper-2)); display:grid; place-items:center; gap:12px; text-align:center; color:var(--red-700); border:1px solid var(--line-soft); padding: 24px; }
.ph-large img { width:88px;height:88px;opacity:.85; }
.ph-large p { max-width: 34ch; font-size:.92rem; color: var(--red-700); }

.facts { width:100%; border-collapse: collapse; background:var(--white); border:1px solid var(--line-soft); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); }
.facts tr { border-bottom: 1px solid var(--line-soft); }
.facts tr:last-child { border-bottom: none; }
.facts th { text-align:left; font-weight:500; color:var(--muted); padding: 13px 20px; font-size:.95rem; width: 45%; }
.facts td { text-align:right; padding: 13px 20px; font-weight:600; }
.facts tr.is-warm { background: var(--red-tint); }
.facts tr.is-warm td, .facts tr.is-warm th { color: var(--red-700); font-weight:800; font-family: var(--f-display); }

.panel { background: var(--white); border:1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(24px,3vw,34px); box-shadow: var(--shadow-sm); }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq details[open] summary { color: var(--red); }
.faq summary { list-style:none; cursor:pointer; padding: 18px 0; font-family: var(--f-display); font-weight:700; font-size:1.06rem; display:flex; justify-content:space-between; gap:16px; align-items:center; transition: color .2s; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary .chev { width:20px;height:20px;flex:none;transition:transform .3s var(--ease); color: var(--muted); }
.faq details[open] summary .chev { transform: rotate(45deg); color: var(--red); }
.faq details > div { padding: 0 0 20px; color: var(--ink-soft); max-width: 68ch; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--paper-2); color: var(--ink-soft); padding: 0 0 34px; overflow: hidden; }
/* Skyline als echtes Bild in voller Höhe – wird nie beschnitten */
.foot-sky { display: block; width: 100%; height: auto; margin: 0; }
.foot-sky + .wrap { margin-top: clamp(24px, 3.5vw, 40px); }
.site-footer > .wrap:first-child { padding-top: clamp(40px,5vw,60px); }
.foot-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color:var(--ink); }
.site-footer .brand small { color: var(--red); }
.foot-col h4 { font-family: var(--f-display); font-weight:700; color:var(--ink); font-size:.98rem; margin-bottom:14px; letter-spacing:0; }
.foot-col a, .foot-col p { display:block; color:var(--ink-soft); font-size:.95rem; padding: 4px 0; }
.foot-col a:hover { color:var(--red); }
.foot-addr { color:var(--ink-soft); font-size:.95rem; line-height:1.7; }
.foot-addr strong { color:var(--ink); }
.foot-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.85rem; color:var(--muted); }
.foot-bottom a { color:var(--muted); } .foot-bottom a:hover{ color:var(--red); }

/* ---------- Draft note ---------- */
.draftnote { background: #2B2724; color:#F0D9A0; text-align:center; font-size:.82rem; padding:8px 16px; letter-spacing:.01em; }
.draftnote b { color:#fff; }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(2rem,4vw,3rem); letter-spacing:-0.03em; margin-bottom: 6px; }
.legal h2 { margin-top: 40px; margin-bottom: 12px; font-size: clamp(1.25rem,2.2vw,1.6rem); }
.legal p { color: var(--ink-soft); margin-bottom: 12px; }
.legal p.addr { line-height: 1.8; }
.legal a { color: var(--red); }
.legal a:hover { text-decoration: underline; }

/* ---------- Contact form ---------- */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field input, .field textarea { font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); color: var(--ink); width: 100%; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--ink); }

/* ---------- Reveal on scroll (only when JS is active, so content is
   always visible without JS or if the observer never fires) ---------- */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid, .detail-head, .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .hero__figure { max-width: 460px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav__links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 16px 18px; transform: translateY(-130%); transition: transform .35s var(--ease); box-shadow: var(--shadow-md); }
  .nav__links.open { transform: none; }
  .nav__links a { padding: 13px 8px; border-radius: 8px; font-size: 1.05rem; }
  .nav__cta { margin: 8px 0 0; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .detail-head, .hero__grid { gap: 24px; }
  .hero__tag { left: 0; }
  .brand small { display:none; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity:1 !important; transform:none !important; transition:none; }
  .btn:hover, .feature:hover, .unit-card:hover, .offer:hover { transform:none; }
}
