/* =====================================================================
   Marcs Auto Clinic — Vintage Garage Theme
   Reines CSS, keine Frameworks. Design-Tokens als :root-Variablen.
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Farben (aus dem Logo abgeleitet) */
  --paper:      #f3ecdb;   /* Creme-Papier, Grundfläche */
  --paper-soft: #f8f2e4;   /* hellere Karten/Flächen */
  --paper-deep: #e7ddc6;   /* abgesetzte Bänder */
  --ink:        #1b2a38;   /* Marineblau/Anthrazit, Text & dunkle Flächen */
  --ink-soft:   #2d3f4f;
  --ink-deep:   #131f2a;   /* Footer, tiefste Fläche */
  --rust:       #a83b29;   /* Rostrot, Primärakzent */
  --rust-bright:#c24a33;
  --brass:      #c39a4a;   /* gedämpftes Messing, Sekundärakzent */
  --line:       rgba(27, 42, 56, .22);
  --line-light: rgba(243, 236, 219, .22);

  /* Schrift */
  --f-display: "Bebas Neue", "Oswald", sans-serif; /* große Signage-Headlines */
  --f-head:    "Oswald", sans-serif;               /* Labels, Nav, Buttons */
  --f-body:    "Lora", Georgia, serif;             /* Fließtext */
  --f-script:  "Sacramento", cursive;              /* sparsamer Script-Akzent */

  /* Maße */
  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 3px;
  --shadow: 0 18px 40px -22px rgba(19, 31, 42, .55);
  --shadow-lg: 0 32px 60px -28px rgba(19, 31, 42, .7);
}

/* ---------- 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-color: var(--paper);
  line-height: 1.7;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* Papier-Grain als feiner Overlay über der ganzen Seite */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Inhalt über dem Grain */
.site-header, main, .site-footer { position: relative; z-index: 2; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: .98; letter-spacing: .01em; overflow-wrap: break-word; }
.eyebrow {
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .76rem;
  color: var(--rust);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--brass); }
.script { font-family: var(--f-script); color: var(--rust); }

p { max-width: 64ch; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
/* Overflow-Schutz: Grid/Flex-Kinder dürfen unter ihre Inhaltsbreite schrumpfen */
.hero-grid > *, .split > *, .contact-grid > *, .footer-grid > *, .grid > *, .hero-meta > *, .hero-actions > * { min-width: 0; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--paper-deep { background: var(--paper-deep); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink p { color: rgba(243, 236, 219, .82); }

.section-head { max-width: 60ch; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin: .35rem 0 .6rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* Doppellinien-Trenner mit Schraubenschlüssel-Marke */
.rule {
  display: flex; align-items: center; gap: 1rem;
  color: var(--rust);
}
.rule::before, .rule::after {
  content: ""; height: 0; flex: 1;
  border-top: 1px solid currentColor;
  box-shadow: 0 3px 0 -2px currentColor; /* zweite, dünne Linie */
}
.rule svg { width: 30px; height: 30px; flex: none; }
.rule.center { margin-inline: auto; max-width: 360px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--rust); --fg: var(--paper);
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  font-size: .86rem;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .92em 1.7em;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 22px -16px rgba(19,31,42,.9);
}
.btn:hover { transform: translateY(-2px); background: var(--rust-bright); box-shadow: var(--shadow); }
.btn:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--on-dark { --bg: var(--brass); --fg: var(--ink-deep); }
.btn--on-dark:hover { background: #d8ad57; }
.btn--ghost.on-dark { --fg: var(--paper); border-color: var(--line-light); }
.btn--ghost.on-dark:hover { background: var(--paper); color: var(--ink); }

/* Pfeil im Button */
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Badge „EST. 2015" ---------- */
.stamp {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem; font-weight: 600;
  display: inline-flex; flex-direction: column; align-items: center; line-height: 1.15;
  padding: .55rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}
.stamp b { font-family: var(--f-display); font-size: 1.5rem; letter-spacing: .04em; color: var(--rust); }
.stamp.on-dark { color: rgba(243,236,219,.8); border-color: var(--line-light); }

/* ===================================================================
   Header / Navigation
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 236, 219, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img { height: 52px; width: auto; mix-blend-mode: multiply; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-text b { font-family: var(--f-display); font-size: 1.5rem; letter-spacing: .03em; color: var(--ink); }
.brand .brand-text span { font-family: var(--f-head); text-transform: uppercase; letter-spacing: .26em; font-size: .56rem; color: var(--rust); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  font-family: var(--f-head);
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .82rem; font-weight: 500;
  color: var(--ink-soft);
  position: relative; padding: .4rem 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--rust); transition: right .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-cta { margin-left: .4rem; }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); width: 46px; height: 42px; cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 2px;
  background: var(--ink); transform: translate(-50%, -50%); transition: .3s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: translate(-50%,-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: translate(-50%,-50%) rotate(-45deg); }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  position: relative; color: var(--paper);
  background: radial-gradient(120% 120% at 80% 0%, #24384a 0%, var(--ink) 45%, var(--ink-deep) 100%);
  overflow: hidden;
}
/* diagonale Rost-Pinstripes als Atmosphäre */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    repeating-linear-gradient(125deg, transparent 0 38px, rgba(168,59,41,.05) 38px 39px),
    radial-gradient(60% 80% at 15% 90%, rgba(195,154,74,.12), transparent 60%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero-eyebrow { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.4rem; }
.hero-eyebrow .bar { width: 46px; height: 1px; background: var(--brass); }
.hero h1 {
  font-size: clamp(2.5rem, 10vw, 6.6rem);
  color: var(--paper);
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--rust-bright); display: block; }
.hero .hero-sub { font-size: 1.2rem; color: rgba(243,236,219,.82); margin: 1.3rem 0 2rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-meta { display: flex; gap: 2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-meta .item b { font-family: var(--f-display); font-size: 2.4rem; color: var(--brass); display: block; line-height: 1; }
.hero-meta .item span { font-family: var(--f-head); text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; color: rgba(243,236,219,.7); }

/* Logo-Plakette im Hero */
.hero-plate {
  position: relative;
  background: var(--paper);
  border-radius: 8px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  border: 1px solid rgba(19,31,42,.15);
}
.hero-plate::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid var(--line); border-radius: 4px; pointer-events: none;
}
.hero-plate img { mix-blend-mode: multiply; width: 100%; }
.hero-plate .corner { position: absolute; width: 14px; height: 14px; border: 2px solid var(--brass); }
.hero-plate .corner.tl { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.hero-plate .corner.tr { top: 6px; right: 6px; border-left: 0; border-bottom: 0; }
.hero-plate .corner.bl { bottom: 6px; left: 6px; border-right: 0; border-top: 0; }
.hero-plate .corner.br { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }

/* ===================================================================
   Seitenkopf (Subpages)
   =================================================================== */
.page-hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: var(--paper); text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background: repeating-linear-gradient(125deg, transparent 0 38px, rgba(168,59,41,.06) 38px 39px);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(3rem, 8vw, 5rem); text-transform: uppercase; color: var(--paper); }
.page-hero p { margin: 1rem auto 0; color: rgba(243,236,219,.8); }
.breadcrumb { font-family: var(--f-head); text-transform: uppercase; letter-spacing: .2em; font-size: .68rem; color: var(--brass); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--paper); }

/* ===================================================================
   Intro / Text-Blöcke
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.prose p + p { margin-top: 1.1rem; }
.prose h3 { font-family: var(--f-head); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 1.1rem; margin: 1.6rem 0 .5rem; color: var(--rust); }

/* ===================================================================
   Karten (Leistungen / Features)
   =================================================================== */
.grid { display: grid; gap: 1.4rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--rust); transform: scaleY(0); transform-origin: top; transition: transform .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(168,59,41,.35); }
.card:hover::before { transform: scaleY(1); }
.card .num { font-family: var(--f-display); font-size: 1.1rem; color: var(--brass); letter-spacing: .1em; }
.card .icon { width: 40px; height: 40px; color: var(--rust); margin-bottom: 1rem; }
.card h3 { font-family: var(--f-head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 1.32rem; margin-bottom: .55rem; }
.card p { font-size: .98rem; color: var(--ink-soft); }

/* Feature-Liste mit Häkchen/Marke */
.feature-list { display: grid; gap: 1.2rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; }
.feature-list .mark { flex: none; width: 30px; height: 30px; color: var(--rust); margin-top: 2px; }
.feature-list b { font-family: var(--f-head); text-transform: uppercase; letter-spacing: .04em; font-size: 1rem; display: block; }

/* ===================================================================
   Galerie
   =================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery .tile {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(243,236,219,.7);
}
.gallery .tile.tall { aspect-ratio: 3 / 4; }
.gallery .tile .ph {
  font-family: var(--f-head); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem;
  padding: 1rem; display: flex; flex-direction: column; gap: .5rem; align-items: center;
}
.gallery .tile .ph svg { width: 34px; height: 34px; color: var(--brass); opacity: .7; }
.gallery .tile::after {
  content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(243,236,219,.25); border-radius: 2px;
}

/* ===================================================================
   CTA-Band
   =================================================================== */
.cta-band { background: var(--rust); color: var(--paper); text-align: center; }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 3.8rem); text-transform: uppercase; color: var(--paper); }
.cta-band p { margin: .8rem auto 1.8rem; color: rgba(243,236,219,.9); }
.cta-band .btn--on-dark { --bg: var(--paper); --fg: var(--rust); }
.cta-band .btn--on-dark:hover { background: #fff; }

/* ===================================================================
   Kontakt
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); }
.info-list { display: grid; gap: 1.5rem; }
.info-list .row { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .row svg { flex: none; width: 26px; height: 26px; color: var(--rust); margin-top: 3px; }
.info-list .row .label { font-family: var(--f-head); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--ink-soft); }
.info-list .row .val { font-size: 1.05rem; }

.hours { width: 100%; border-collapse: collapse; margin-top: .4rem; }
.hours td { padding: .5rem 0; border-bottom: 1px dotted var(--line); font-size: .98rem; }
.hours td:last-child { text-align: right; font-family: var(--f-head); letter-spacing: .03em; }
.hours tr:last-child td { border-bottom: 0; }

form .field { margin-bottom: 1.1rem; }
form label { font-family: var(--f-head); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--ink-soft); display: block; margin-bottom: .4rem; }
form input, form textarea, form select {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: var(--paper-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .8rem .9rem; transition: border-color .2s ease, box-shadow .2s ease;
}
form input:focus, form textarea:focus, form select:focus {
  outline: none; border-color: var(--rust); box-shadow: 0 0 0 3px rgba(168,59,41,.14);
}
form textarea { resize: vertical; min-height: 130px; }
.map-ph {
  margin-top: 1.4rem; aspect-ratio: 16/9; border-radius: var(--radius); border: 1px dashed var(--line);
  background: var(--paper-deep); display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-family: var(--f-head); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem;
}
.map-wrap { position: relative; margin-top: 1.4rem; }
.map {
  width: 100%; aspect-ratio: 16/9; display: block;
  border: 1px solid var(--line); border-radius: var(--radius);
  filter: sepia(.12) saturate(.92); /* dezent an die Vintage-Palette angepasst */
}
/* Eigener Marken-Marker über der Karte */
.map-pin {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; z-index: 2;
  pointer-events: none; /* Karte bleibt bedienbar */
}
.map-pin .label {
  font-family: var(--f-head); text-transform: uppercase; letter-spacing: .12em;
  font-size: .74rem; white-space: nowrap; color: var(--paper);
  background: var(--ink); border: 1px solid var(--brass);
  padding: .45rem .8rem; border-radius: 4px;
  box-shadow: 0 12px 26px -12px rgba(19, 31, 42, .9);
}
.map-pin .stem { width: 2px; height: 14px; background: var(--rust); }
.map-pin .dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--rust);
  border: 3px solid var(--paper); box-shadow: 0 5px 12px -3px rgba(0, 0, 0, .55); margin-top: -1px;
}
.map-note { font-size: .9rem; color: var(--ink-soft); margin-top: .7rem; }

/* Honeypot — für Menschen unsichtbar (Bots füllen es aus) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Formular-Fehlerbanner */
.form-error {
  background: rgba(168, 59, 41, .1); border: 1px solid var(--rust); color: var(--rust);
  font-family: var(--f-head); text-transform: uppercase; letter-spacing: .05em; font-size: .82rem;
  padding: .8rem 1rem; border-radius: var(--radius); margin-bottom: 1.2rem;
}
.form-error[hidden] { display: none; }

/* Platzhalter-Hinweis */
.ph-note {
  font-family: var(--f-head); text-transform: uppercase; letter-spacing: .12em;
  font-size: .62rem; color: var(--rust); border: 1px solid rgba(168,59,41,.4);
  border-radius: 999px; padding: .15rem .6rem; display: inline-block; vertical-align: middle;
}

/* ===================================================================
   Footer
   =================================================================== */
.site-footer { background: var(--ink-deep); color: rgba(243,236,219,.75); padding-block: 3.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer .brand .brand-text b { color: var(--paper); }
.site-footer img { height: 48px; mix-blend-mode: screen; opacity: .92; }
.site-footer h4 { font-family: var(--f-head); font-weight: 600; text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: var(--brass); margin-bottom: 1rem; }
.site-footer a:hover { color: var(--paper); }
.footer-links { display: grid; gap: .6rem; }
.footer-links a { font-size: .95rem; }
.footer-org { font-family: var(--f-head); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: .95rem; color: var(--paper); }
.footer-bottom { border-top: 1px solid var(--line-light); margin-top: 2.5rem; padding-top: 1.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .8rem; font-family: var(--f-head); letter-spacing: .06em; text-transform: uppercase; }

/* ===================================================================
   Animationen (Page-Load Reveal, staggered)
   =================================================================== */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .18s; }
.reveal.d3 { animation-delay: .28s; }
.reveal.d4 { animation-delay: .38s; }
.reveal.d5 { animation-delay: .48s; }

/* Scroll-Reveal (per JS aktiviert) */
.io { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.io.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; } /* sonst blieben Reveal-Elemente ohne Animation unsichtbar */
  .io { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-plate { max-width: 380px; margin-inline: auto; order: -1; transform: rotate(-1.5deg); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.4rem;
    transform: translateY(-120%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav-links[data-open="true"] { transform: translateY(0); }
  .nav-links a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav-links .nav-cta { margin: 1rem 0 0; }
  .nav-links .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-links a::after { display: none; }
}

@media (max-width: 560px) {
  .grid.cols-3, .grid.cols-2, .gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.4rem; }
  .brand .brand-text span { display: none; }
  .hero h1 { font-size: clamp(2.2rem, 8.5vw, 3rem); }
  .page-hero h1 { font-size: clamp(2.3rem, 9vw, 3.2rem); }
  .section-head h2 { font-size: clamp(2rem, 8vw, 3rem); }
}
