/* ═══════════════════════════════════════════════════════════════════════════
   LYNSTED LANDSCAPES — site stylesheet

   Order:  1 tokens · 2 reset · 3 typography · 4 layout · 5 header/nav
           6 hero · 7 content blocks · 8 buttons · 9 forms · 10 footer
           11 floating UI · 12 utilities · 13 print

   Fonts are loaded by a <link> in head.php, not @import, so they do not block
   the first render.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ──────────────────────────────────────────────────────────── */

:root {
  /* Sampled from the live site's computed styles, not guessed. */
  --green:        #457a09;   /* primary buttons, links */
  --green-hover:  #54920b;
  --green-dark:   #175226;   /* header hover, footer headings */
  --green-deep:   #0f3a1a;   /* footer background */
  --gold:         #e8b910;   /* secondary buttons, eyebrow, stars */
  --gold-deep:    #b9a800;   /* current nav item on white */

  --ink:          #333333;
  --ink-soft:     #5b6470;
  --line:         #e1e5e8;
  --bg:           #ffffff;
  --bg-alt:       #f2f3f5;
  --red:          #c0392b;

  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Average Sans", "Poppins", system-ui, sans-serif;

  --wrap: 1400px;          /* matches the hero container on the live site */
  --wrap-text: 74ch;       /* comfortable reading measure */
  --gutter: 27px;          /* the theme's column gutter */

  --radius: 9px;
  --radius-sm: 4px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lift: 0 5px 18px rgba(12,42,20,.4);
  --tap: 48px;

  --sec-y: clamp(46px, 6vw, 86px);
}

/* ── 2. RESET ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.7 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;      /* the hero bleeds to the viewport edge */
}

img, svg, iframe, video { max-width: 100%; }
img { height: auto; display: block; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--green); outline-offset: 2px; border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; transition-duration: .01ms !important;
  }
}

/* ── 3. TYPOGRAPHY ──────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.012em;
  text-wrap: balance;
}
h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.15rem); }
h3 { font-size: clamp(1.16rem, 2.2vw, 1.45rem); }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1.15em; }
:is(p, ul, ol, h2, h3, h4):last-child { margin-bottom: 0; }

a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-hover); }

ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: .5em; }
li::marker { color: var(--green); }

strong, b { font-weight: 600; }
blockquote {
  margin: 1.4em 0; padding: 4px 0 4px 20px;
  border-left: 3px solid var(--gold); color: var(--ink-soft); font-style: italic;
}
hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }

table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: .95rem; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
th { font-weight: 600; background: var(--bg-alt); }

/* ── 4. LAYOUT ──────────────────────────────────────────────────────────── */

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.sec { padding: var(--sec-y) 0; }
.sec--tint  { background: var(--bg-alt); }
.sec--image { background: var(--bg-alt); }
.sec + .sec--tint,
.sec--tint + .sec { border-top: 1px solid var(--line); }

.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;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green); color: #fff; padding: 12px 18px;
}
.skip:focus { left: 8px; top: 8px; }

/* ── 5. HEADER / NAV ────────────────────────────────────────────────────── */

.site-head {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 10px rgba(0,0,0,.05);
}
.site-head-in { display: flex; align-items: center; gap: 18px; min-height: 82px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.logo img { width: 72px; height: 72px; object-fit: contain; }

.nav { flex: 1 1 auto; min-width: 0; }
.nav-l1 {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.nav-l1 > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 10px; border: 0; background: none;
  font: inherit; font-size: .78rem; font-weight: 600;
  letter-spacing: .045em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; cursor: pointer;
  border-radius: 6px; white-space: nowrap;
}
.nav-link:hover { color: var(--green-dark); background: var(--bg-alt); }
.nav-link.is-current, .is-current > .nav-link { color: var(--gold-deep); }

.caret {
  width: 0; height: 0; border-left: 4px solid transparent;
  border-right: 4px solid transparent; border-top: 5px solid currentColor; opacity: .6;
}

.nav-l2 {
  position: absolute; top: 100%; left: 0; z-index: 20;
  min-width: 268px; max-height: 72vh; overflow-y: auto;
  list-style: none; margin: 0; padding: 8px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); display: none;
}
.has-sub:hover > .nav-l2,
.has-sub:focus-within > .nav-l2,
.nav-sub-toggle[aria-expanded="true"] + .nav-l2 { display: block; }
.nav-l2 a {
  display: block; padding: 9px 12px; border-radius: 5px;
  color: var(--ink); text-decoration: none; font-size: .9rem;
}
.nav-l2 a:hover, .nav-l2 a.is-current { background: var(--bg-alt); color: var(--green-dark); }

.head-cta { display: flex; align-items: center; gap: 14px; flex: none; margin-left: auto; }
.head-tel { text-decoration: none; color: var(--ink); line-height: 1.15; text-align: right; }
.head-tel-l {
  display: block; font-size: .68rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .09em;
}
.head-tel strong { font-size: 1.08rem; color: var(--green); font-variant-numeric: tabular-nums; }

.nav-toggle { display: none; }

/* ── 6. HERO ────────────────────────────────────────────────────────────── */
/* Ported from the hand-built hero on the live site. Full-bleed photograph,
   gradient scrim, left-aligned content, phone-first CTA pair. */

.ll-hero {
  position: relative;
  display: flex; align-items: flex-end;   /* mobile: content in the thumb zone */
  min-height: 560px;
  overflow: hidden; isolation: isolate;
  color: #fff;
}
.ll-hero__img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 70% center;
  margin: 0; border: 0; max-width: none;
}
.ll-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(6,22,10,.62) 0%, rgba(6,22,10,.18) 26%,
    rgba(8,30,14,.68) 60%, rgba(9,33,15,.95) 100%);
}
.ll-hero__inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--wrap); margin: 0 auto;
  padding: 28px var(--gutter) 26px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 13px;
}

.ll-hero__eyebrow {
  display: flex; align-items: center; gap: 8px; margin: 0;
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); line-height: 1.4;
}
.ll-hero__eyebrow i {
  display: block; width: 16px; height: 2px;
  background: var(--gold); border-radius: 2px; flex: none;
}

.ll-hero__title {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(28px, 7.2vw, 52px); line-height: 1.06;
  letter-spacing: -.018em; color: #fff; margin: 0;
  text-shadow: 0 1px 22px rgba(6,22,10,.45);
}
.ll-hero__sub {
  margin: 0; max-width: 46ch;
  font-size: clamp(14px, 3.7vw, 17.5px); line-height: 1.5;
  color: rgba(255,255,255,.93); text-shadow: 0 1px 12px rgba(6,22,10,.5);
}

.ll-hero__reviews {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0;
  font-size: 12.5px; line-height: 1.4; color: rgba(255,255,255,.88);
  text-shadow: 0 1px 10px rgba(6,22,10,.5);
}
.ll-hero__stars { display: inline-flex; gap: 2px; flex: none; }
.ll-hero__stars svg { display: block; }
.ll-hero__reviews b { font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }

.ll-hero__actions {
  display: flex; flex-direction: column; gap: 9px;
  width: 100%; max-width: 420px; margin-top: 3px;
}
.ll-hero__cta {
  display: flex; align-items: center; gap: 12px; width: 100%;
  min-height: 64px; padding: 11px 16px;
  background: var(--green); color: #fff; text-decoration: none;
  border-radius: var(--radius); box-shadow: var(--shadow-lift);
  transition: background .18s ease, transform .18s ease;
}
.ll-hero__cta:hover, .ll-hero__cta:focus { background: var(--green-hover); color: #fff; }
.ll-hero__cta:active { transform: translateY(1px); }
.ll-hero__cta-ico {
  width: 38px; height: 38px; border-radius: var(--radius); flex: none;
  background: rgba(255,255,255,.17);
  display: flex; align-items: center; justify-content: center;
}
.ll-hero__cta-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ll-hero__cta-txt b { font-size: 15px; font-weight: 600; line-height: 1.25; }
.ll-hero__cta-txt span {
  font-size: 20px; font-weight: 700; line-height: 1.2;
  font-variant-numeric: tabular-nums; letter-spacing: .02em;
}
.ll-hero__cta-arrow { margin-left: auto; flex: none; opacity: .75; display: flex; }

.ll-hero__cta2 {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  min-height: 52px; padding: 0 18px;
  background: rgba(255,255,255,.13); color: #fff; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.55); border-radius: var(--radius);
  font-size: 14.5px; font-weight: 600;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .18s ease;
}
.ll-hero__cta2:hover, .ll-hero__cta2:focus { background: rgba(255,255,255,.24); color: #fff; }

.ll-hero a:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.ll-hero__trust {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; margin: 2px 0 0; padding: 0;
}
.ll-hero__trust li {
  display: inline-flex; align-items: center; gap: 5px; margin: 0;
  font-size: 11px; font-weight: 600; color: #fff;
  background: rgba(8,28,13,.5); border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px; padding: 5px 10px; white-space: nowrap;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.ll-hero__trust li::marker { content: none; }

@media (min-width: 768px) {
  .ll-hero { align-items: center; min-height: 620px; }
  .ll-hero__inner { padding: 56px var(--gutter); gap: 17px; }
  .ll-hero__scrim {
    background: linear-gradient(100deg,
      rgba(6,22,10,.92) 0%, rgba(7,26,12,.80) 38%,
      rgba(8,30,14,.34) 62%, rgba(8,30,14,.12) 100%);
  }
  .ll-hero__img { object-position: 62% center; }
  .ll-hero__eyebrow { font-size: 12px; }
  .ll-hero__eyebrow i { width: 22px; }
  .ll-hero__sub { max-width: 50ch; }
  .ll-hero__reviews { font-size: 14px; gap: 10px; }
  .ll-hero__actions { flex-direction: row; align-items: stretch; max-width: none; width: auto; gap: 12px; }
  .ll-hero__cta { width: auto; min-height: 70px; padding: 12px 24px 12px 18px; }
  .ll-hero__cta-txt span { font-size: 22px; }
  .ll-hero__cta2 { width: auto; min-height: 70px; padding: 0 26px; font-size: 15px; }
  .ll-hero__trust { gap: 8px; margin-top: 5px; }
  .ll-hero__trust li { font-size: 12px; padding: 7px 13px; }
}

@media (min-width: 1200px) {
  .ll-hero { min-height: 660px; }
  .ll-hero__inner { padding: 64px var(--gutter); }
  .ll-hero__title { max-width: 16ch; }
}

/* ── 7. CONTENT BLOCKS ──────────────────────────────────────────────────── */

/* Prose: a readable measure, so body copy never runs the full 1400px. */
.sec__prose > :is(p, ul, ol, blockquote, h3, h4) { max-width: var(--wrap-text); }
.sec__prose > h2 { max-width: 26ch; }

/* Text beside a single supporting image — Impreza's alternating rows. */
.sec--split .sec__grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.sec--split .sec__media img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
}
.sec--split-alt .sec__media { order: -1; }

/* Image galleries and service tiles. */
.sec__gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 18px; margin-top: 26px;
}
.sec__gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); background: var(--bg-alt);
}

/* Tiles: image → heading → blurb, rendered as a card. */
.tile-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px; margin-top: 30px;
}
.tile {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
}
.sec--tint .tile { background: #fff; }
.tile img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 0; }
.tile-body { padding: 18px 20px 22px; }
.tile-body :is(h2, h3) { font-size: 1.14rem; margin-bottom: .35em; }
.tile-body p { font-size: .93rem; color: var(--ink-soft); }

/* A standalone image in a prose section shouldn't span the full width. */
.sec__prose > img { max-width: min(100%, 760px); border-radius: var(--radius); margin: 1.6em 0; }

.sec iframe {
  width: 100%; border: 0; border-radius: var(--radius);
  aspect-ratio: 16 / 9; height: auto; margin: 1.4em 0;
}

/* Consecutive links that were buttons on the old site. */
.sec .btn + .btn { margin-left: 10px; }
.sec__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.4em; }

/* ── 8. BUTTONS ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--tap); padding: 0 24px;
  border: 2px solid transparent; border-radius: var(--radius-sm);
  font: inherit; font-weight: 600; font-size: .95rem;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn--primary:hover { background: var(--green-hover); border-color: var(--green-hover); color: #fff; }
.btn--amber { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--amber:hover { background: #cfa30c; border-color: #cfa30c; color: #fff; }
.btn--ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn--ghost:hover { background: var(--green); color: #fff; }
.btn--big { min-height: 56px; font-size: 1.02rem; padding: 0 28px; }
.btn[disabled] { opacity: .6; cursor: not-allowed; }

/* ── 9. FORMS ───────────────────────────────────────────────────────────── */

.ll-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow);
  max-width: 780px;
}
.form-h { font-size: 1.35rem; margin-bottom: .55em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field.is-wide { grid-column: 1 / -1; }

.field label { display: block; font-size: .85rem; color: var(--ink-soft); margin-bottom: 5px; }
.field .req { color: var(--red); }
.field :is(input, select, textarea) {
  display: block; width: 100%; min-height: var(--tap);
  padding: 11px 13px; font: inherit; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.field textarea { min-height: 124px; resize: vertical; }
.field :is(input, select, textarea):focus { border-color: var(--green); }
.field input[type=file] { padding: 10px; background: var(--bg-alt); }
.field-hint { font-size: .8rem; color: var(--ink-soft); margin: 5px 0 0; }
.field-err { font-size: .82rem; color: var(--red); margin: 5px 0 0; }
.field.has-error :is(input, select, textarea) { border-color: var(--red); }

.form-foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.form-note { font-size: .84rem; color: var(--ink-soft); margin: 0; }
.form-alert { margin: 14px 0 0; padding: 12px 14px; border-radius: var(--radius-sm); font-size: .93rem; }
.form-alert.is-bad { background: #fdecea; color: #8e2118; border: 1px solid #f5c6c2; }
.form-alert.is-ok  { background: #e8f5e9; color: #1f5e22; border: 1px solid #c3e2c5; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── 10. FOOTER ─────────────────────────────────────────────────────────── */

.site-foot {
  background: var(--green-deep); color: rgba(255,255,255,.82);
  padding: clamp(42px, 5vw, 70px) 0 0;
}
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: .5em; }
.foot-col a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .92rem; }
.foot-col a:hover { color: #fff; text-decoration: underline; }
.foot-h {
  font-family: var(--font-head); font-size: 1rem; color: #fff; margin: 0 0 14px;
}
.logo--foot { gap: 12px; }
.logo--foot img { width: 58px; height: 58px; }
.logo--foot .logo-txt { color: #fff; font-family: var(--font-head); font-size: 1.05rem; }
.foot-strap { font-size: .92rem; max-width: 34ch; }
.foot-contact { margin: 14px 0; }
.foot-tel { font-size: 1.3rem; color: #fff !important; font-weight: 600; text-decoration: none; }
.foot-addr { font-style: normal; font-size: .9rem; line-height: 1.7; }
.foot-social { margin-top: 12px; }
.foot-legal {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 38px; padding: 18px 0 26px;
}
.foot-legal p { font-size: .8rem; color: rgba(255,255,255,.6); margin: 0; }

/* ── 11. FLOATING UI ────────────────────────────────────────────────────── */

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.wa-float:hover { background: #1da851; color: #fff; }

.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
  box-shadow: 0 -2px 14px rgba(0,0,0,.08);
  padding: 12px 16px; padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.cookie[hidden] { display: none; }
.cookie-in {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.cookie p { margin: 0; font-size: .88rem; color: var(--ink-soft); }
.cookie .btn { min-height: 38px; padding: 0 22px; font-size: .88rem; }

/* ── 12. RESPONSIVE ─────────────────────────────────────────────────────── */

/* Nine top-level nav items plus a phone number and a button need real room.
   Step the header down before anything can overlap. */
@media (max-width: 1560px) {
  .nav-link { padding: 10px 7px; font-size: .74rem; letter-spacing: .03em; }
  .site-head-in { gap: 12px; }
}

@media (max-width: 1400px) {
  .head-tel { display: none; }
  .logo img { width: 62px; height: 62px; }
}

@media (max-width: 1240px) {
  .nav-link { padding: 9px 5px; font-size: .7rem; letter-spacing: .02em; }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; order: 3;
    background: none; border: 1px solid var(--line);
    border-radius: var(--radius-sm); cursor: pointer;
  }
  .nav-toggle-bar,
  .nav-toggle-bar::before,
  .nav-toggle-bar::after {
    display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  }
  .nav-toggle-bar { position: relative; }
  .nav-toggle-bar::before, .nav-toggle-bar::after { content: ""; position: absolute; left: 0; }
  .nav-toggle-bar::before { top: -7px; }
  .nav-toggle-bar::after  { top: 7px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { top: 0; transform: rotate(-45deg); }

  .site-head-in { flex-wrap: wrap; min-height: 68px; }
  .head-cta { order: 2; }
  .nav {
    order: 4; flex-basis: 100%; display: none;
    border-top: 1px solid var(--line); margin-top: 4px;
    max-height: 72vh; overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .nav-l1 { flex-direction: column; align-items: stretch; padding: 8px 0 14px; }
  .nav-link { width: 100%; justify-content: space-between; min-height: var(--tap); font-size: .92rem; }
  .nav-l2 {
    position: static; display: none; box-shadow: none; border: 0;
    background: var(--bg-alt); border-radius: var(--radius-sm); margin: 2px 0 6px;
    max-height: none;
  }
  .has-sub:hover > .nav-l2, .has-sub:focus-within > .nav-l2 { display: none; }
  .nav-sub-toggle[aria-expanded="true"] + .nav-l2 { display: block; }

  .sec--split .sec__grid { grid-template-columns: 1fr; }
  .sec--split .sec__media { order: 0 !important; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .head-cta .btn { font-size: .88rem; padding: 0 16px; }
}

@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .head-cta .btn { padding: 0 14px; font-size: .86rem; }
  .logo img { width: 54px; height: 54px; }
  .cookie-in { justify-content: space-between; gap: 10px; }
  .wa-float { width: 48px; height: 48px; bottom: 76px; }
}

/* ── 13. PRINT ──────────────────────────────────────────────────────────── */

@media print {
  .site-head, .site-foot, .wa-float, .cookie, .ll-form, .skip,
  .ll-hero__actions, .ll-hero__trust { display: none !important; }
  .ll-hero { min-height: auto; color: var(--ink); }
  .ll-hero__img, .ll-hero__scrim { display: none; }
  .ll-hero :is(h1, p) { color: var(--ink) !important; text-shadow: none !important; }
  body { color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; color: #555; }
}
