/* ============================================================
   Lawn Rescue Co. — design system
   Firefighter-founded lawn care. Apparatus red + turf green.
   Display: Anton · Headings/Data: Barlow Condensed · Body: Barlow
   ============================================================ */

:root {
  /* color */
  --red: #E01020;
  --red-dark: #B20C18;
  --gold: #F5B301;
  --turf: #3C7D34;
  --turf-bright: #50B848;
  --ink: #14181A;
  --steel: #1B2327;
  --paper: #F4F3EF;
  --paper-2: #E9E7DF;
  --white: #ffffff;
  --line: rgba(20, 24, 26, .12);
  --muted: #5C6266;

  /* type */
  --font-display: "Anton", Impact, sans-serif;
  --font-head: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, Segoe UI, sans-serif;

  /* space */
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --maxw: 1240px;
  --radius: 5px;

  /* fx */
  --shadow-sm: 0 1px 2px rgba(20,24,26,.08), 0 2px 8px rgba(20,24,26,.06);
  --shadow-md: 0 6px 18px rgba(20,24,26,.12), 0 2px 6px rgba(20,24,26,.08);
  --shadow-lg: 0 24px 60px rgba(20,24,26,.22);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(1rem, .96rem + .2vw, 1.125rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

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

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #EDEDEA; }
.section--steel { background: var(--steel); color: #EDEDEA; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.02; letter-spacing: -.01em; }
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: .005em; line-height: .95; text-transform: uppercase; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.section--ink .eyebrow, .section--steel .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: ""; width: 26px; height: 3px; background: currentColor; display: inline-block;
}

.h-xl { font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: .92; letter-spacing: .01em; }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); text-transform: uppercase; }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); text-transform: uppercase; letter-spacing: 0; }
.lead { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); color: var(--muted); max-width: 60ch; }
.section--ink .lead, .section--steel .lead { color: #B9BEC1; }
.muted { color: var(--muted); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.mx-auto { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  font-size: 1.02rem; line-height: 1;
  padding: .95em 1.5em; border-radius: var(--radius); border: 2px solid transparent;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease), color .18s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--red-dark); box-shadow: var(--shadow-md); }

/* heartbeat pulse on primary conversion CTAs */
@keyframes cta-heartbeat {
  0%, 28%, 70%, 100% { transform: scale(1); }
  14% { transform: scale(1.055); }
  42% { transform: scale(1.055); }
}
.btn--primary, .cta-band .btn--light { animation: cta-heartbeat 2.8s ease-in-out infinite; }
.btn--primary:hover, .cta-band .btn--light:hover { animation-play-state: paused; transform: translateY(-2px) scale(1.03); }
@media (prefers-reduced-motion: reduce) { .btn--primary, .cta-band .btn--light { animation: none; } }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #f1f1ee; }
.btn--turf { background: var(--turf); color: #fff; }
.btn--turf:hover { background: #2f6329; }
.btn--lg { font-size: 1.12rem; padding: 1.05em 1.8em; }
.btn__icon { width: 1.05em; height: 1.05em; }

/* ---------- chevron apparatus stripe (signature) ---------- */
.chevrons {
  height: 16px;
  background: repeating-linear-gradient(-45deg,
    var(--red) 0 26px, var(--gold) 26px 52px);
  border-block: 2px solid var(--ink);
}
.chevrons--thin { height: 10px; border-block-width: 0; }
/* animated marching chevrons — slow, steady horizontal loop */
.chevrons--anim { animation: chevron-slide 7s linear infinite; will-change: background-position; }
@keyframes chevron-slide { from { background-position: 0 0; } to { background-position: 73.54px 0; } }
@media (prefers-reduced-motion: reduce) { .chevrons--anim { animation: none; } }

/* video strip (reels) */
.video-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.video-card { position: relative; border-radius: var(--radius); overflow: clip; box-shadow: var(--shadow-md); background: #000; aspect-ratio: 9 / 16; }
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: .9rem 1rem;
  color: #fff; background: linear-gradient(0deg, rgba(10,12,13,.8), rgba(10,12,13,0));
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .95rem;
}
@media (max-width: 720px) { .video-strip { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

/* service area chips */
.area-chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.area-chips.center { justify-content: center; }
.area-chip {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  font-size: .82rem; padding: .5em .95em; border-radius: 100px; background: var(--white);
  border: 1.5px solid var(--line); color: var(--ink);
}
.section--ink .area-chip, .section--steel .area-chip { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #EDEDEA; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,243,239,.92);
  backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark { width: 46px; height: 46px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: .9; }
.brand__name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: 1.32rem; }
.brand__tag { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: .58rem; color: var(--red); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__link { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 1.02rem; padding: .35em 0; position: relative; color: var(--ink); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 0; background: var(--red); transition: width .2s var(--ease); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--red); }
.header-cta { display: inline-flex; align-items: center; gap: 1rem; }
.header-phone { display: inline-flex; align-items: center; gap: .45em; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
/* nav-embedded phone + CTA are for the mobile menu only */
.nav__cta, .header-phone--nav { display: none; }

.nav-toggle { display: none; width: 46px; height: 46px; border: 2px solid var(--ink); border-radius: var(--radius); background: transparent; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 22px; height: 2.5px; background: var(--ink); transition: transform .2s var(--ease), opacity .2s; }
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(4.5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(-1.7px); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.5rem; box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform .28s var(--ease); z-index: 40;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav__link { padding: .85em 0; border-bottom: 1px solid var(--line); font-size: 1.2rem; }
  .nav__link::after { display: none; }
  .header-cta { display: none; }
  .nav__cta { display: inline-flex; margin-top: 1rem; }
  .header-phone--nav { display: inline-flex; padding: .85em 0; font-size: 1.2rem; }
}

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; overflow: clip; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,17,18,.32) 0%, rgba(15,17,18,.06) 45%, rgba(15,17,18,.6) 100%),
    linear-gradient(90deg, rgba(15,17,18,.55) 0%, rgba(15,17,18,.06) 52%, rgba(15,17,18,0) 100%);
}
.hero__inner { padding-block: clamp(5rem, 16vh, 11rem) clamp(4rem, 10vh, 7rem); max-width: 46rem; }
.hero .h-xl { text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero__lead { color: #E9EAEA; margin-top: 1.1rem; font-size: clamp(1.1rem,1rem + .6vw,1.4rem); max-width: 40ch; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__badge { display: inline-flex; gap: .5em; align-items:center; margin-bottom: 1.1rem;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .16em;
  font-size: .8rem; color: #fff; background: rgba(224,16,32,.9); padding: .5em .9em; border-radius: 3px; }
.hero__foot { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; }

/* ---------- stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: clip; }
.stat { background: var(--paper); padding: clamp(1.2rem,3vw,2rem) 1rem; text-align: center; }
.section--ink .stats, .section--steel .stats { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.14); }
.section--ink .stat, .section--steel .stat { background: var(--ink); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; color: var(--red); }
.section--ink .stat__num, .section--steel .stat__num { color: var(--gold); }
.stat__label { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--muted); margin-top: .4rem; }
.section--ink .stat__label, .section--steel .stat__label { color: #AEB3B6; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- section header ---------- */
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: .8rem; }

/* ---------- service cards ---------- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius); overflow: clip;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: clip; background: var(--paper-2); }
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__kicker { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--red); }
.card__title { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 1.4rem; }
.card__text { color: var(--muted); font-size: 1rem; }
.card__link { margin-top: auto; padding-top: .6rem; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); display: inline-flex; align-items: center; gap: .4em; }
.card__link .arw { transition: transform .2s var(--ease); }
.card:hover .card__link .arw { transform: translateX(4px); }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: var(--radius); overflow: clip; box-shadow: var(--shadow-md); }
.split__media img, .split__media video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }
.checklist { display: grid; gap: .7rem; margin-top: 1.4rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1.05rem; }
.checklist svg { flex: none; width: 1.4em; height: 1.4em; color: var(--turf); margin-top: .1em; }

/* ---------- testimonials ---------- */
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; border-top: 4px solid var(--red); }
.quote-card__stars { color: var(--gold); letter-spacing: .12em; font-size: 1.05rem; }
.quote-card__text { font-size: 1.1rem; line-height: 1.55; }
.quote-card__who { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.quote-card__badge { width: 40px; height: 40px; border-radius: 50%; background: var(--turf); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.quote-card__name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .02em; }
.quote-card__meta { font-size: .85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--red); color: #fff; overflow: clip; }
.cta-band__inner { padding-block: clamp(3.2rem, 7vw, 5.5rem); text-align: center; position: relative; z-index: 1; }
.cta-band .display { font-size: clamp(2.2rem, 5.5vw, 4rem); }
.cta-band__sub { margin-top: .8rem; font-size: 1.2rem; color: #ffe3e5; }
.cta-band__actions { margin-top: 1.9rem; display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: var(--steel); color: #C7CCCE; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 3vw, 3rem); padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand__row { display: flex; align-items: center; gap: .7rem; }
.footer-brand img { width: 54px; height: 54px; }
.footer-brand__name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 1.4rem; color: #fff; line-height: .95; }
.footer-brand__tag { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; color: var(--gold); }
.footer h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; color: #fff; margin-bottom: 1rem; }
.footer-list { display: grid; gap: .55rem; }
.footer-list a:hover { color: #fff; }
.footer-contact a { display: inline-flex; gap: .55em; align-items: center; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .88rem; }
.fluxgrid-credit { display: inline-flex; align-items: center; gap: .5em; color: #9aa0a3; transition: color .2s; }
.fluxgrid-credit:hover { color: #fff; }
.fluxgrid-credit img { height: 20px; width: auto; opacity: .85; transition: opacity .2s; }
.fluxgrid-credit:hover img { opacity: 1; }
.social-row { display: flex; gap: .6rem; }
.social-row a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.social-row a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.social-row svg { width: 20px; height: 20px; }

/* ---------- page hero (interior) ---------- */
.page-hero { position: relative; color: #fff; overflow: clip; isolation: isolate; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,17,18,.6), rgba(15,17,18,.78)); }
.page-hero__inner { padding-block: clamp(4rem, 12vh, 8rem); }
.breadcrumb { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: #E9EAEA; display: flex; gap: .5em; align-items: center; opacity: .85; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- utilities ---------- */
.stack > * + * { margin-top: 1rem; }
.pill { display: inline-flex; align-items: center; gap: .4em; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; padding: .4em .8em; border-radius: 100px; background: rgba(224,16,32,.1); color: var(--red); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .8em 1.2em; z-index: 100; border-radius: 0 0 var(--radius) 0; }
.skip-link:focus { left: 0; }

/* ---------- reveal animation (progressive enhancement: only hides when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--red); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: .8em .9em; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,16,32,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 520px) { .field--row { grid-template-columns: 1fr; } }
.field-error { color: var(--red); font-size: .85rem; font-weight: 600; display: none; }
.field[data-invalid="true"] input, .field[data-invalid="true"] select, .field[data-invalid="true"] textarea { border-color: var(--red); }
.field[data-invalid="true"] .field-error { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .88rem; color: var(--muted); margin-top: .4rem; }
.form-status { border-radius: var(--radius); padding: 1rem 1.1rem; font-weight: 600; margin-bottom: 1.2rem; display: none; }
.form-status--ok { display: block; background: rgba(60,125,52,.12); color: #2c5f27; border: 1px solid rgba(60,125,52,.35); }
.form-status--err { display: block; background: rgba(224,16,32,.1); color: var(--red-dark); border: 1px solid rgba(224,16,32,.35); }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }

.info-card { background: var(--ink); color: #E9EAEA; border-radius: var(--radius); padding: clamp(1.4rem,3vw,2rem); }
.info-card h3 { font-family: var(--font-head); text-transform: uppercase; color: #fff; font-size: 1.3rem; margin-bottom: 1rem; }
.info-row { display: flex; gap: .8rem; align-items: flex-start; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.info-row:last-child { border-bottom: 0; }
.info-row svg { flex: none; width: 22px; height: 22px; color: var(--gold); margin-top: .15rem; }
.info-row a:hover { color: #fff; }
.info-row .info-k { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; color: #9aa0a3; }
.info-row .info-v { font-size: 1.08rem; font-weight: 600; }

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.filter-btn {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  font-size: .9rem; padding: .6em 1.1em; border-radius: 100px; border: 2px solid var(--line);
  background: var(--white); color: var(--ink); transition: background .18s, color .18s, border-color .18s;
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--red); border-color: var(--red); color: #fff; }

.gallery-grid { columns: 3 300px; column-gap: 1rem; }
.gitem { break-inside: avoid; margin-bottom: 1rem; }
.gitem[hidden] { display: none; }
.gitem__btn {
  display: block; width: 100%; padding: 0; border: 0; background: var(--paper-2);
  border-radius: var(--radius); overflow: clip; box-shadow: var(--shadow-sm); cursor: zoom-in;
  position: relative;
}
.gitem__btn img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease); }
.gitem__btn::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,24,26,.35), rgba(20,24,26,0) 45%);
  opacity: 0; transition: opacity .2s;
}
.gitem__btn:hover img { transform: scale(1.04); }
.gitem__btn:hover::after { opacity: 1; }
.gitem__tag {
  position: absolute; left: .7rem; bottom: .7rem; z-index: 1; color: #fff;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  font-size: .72rem; background: rgba(224,16,32,.92); padding: .3em .6em; border-radius: 3px;
  opacity: 0; transform: translateY(6px); transition: opacity .2s, transform .2s;
}
.gitem__btn:hover .gitem__tag, .gitem__btn:focus-visible .gitem__tag { opacity: 1; transform: none; }
@media (max-width: 560px) { .gallery-grid { columns: 2 150px; } }

.lightbox {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
  background: rgba(10,12,13,.92); padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: min(1100px, 92vw); max-height: 82vh; width: auto; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__cap { color: #E9EAEA; text-align: center; margin-top: 1rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; }
.lightbox__btn {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 52px; height: 52px;
  border-radius: 50%; display: grid; place-items: center; font-size: 1.6rem; transition: background .18s;
}
.lightbox__btn:hover { background: var(--red); }
.lightbox__close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.lightbox__prev { left: clamp(.5rem,2vw,2rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.5rem,2vw,2rem); top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) { .lightbox__prev { left: .5rem; } .lightbox__next { right: .5rem; } }

/* ---------- legal / prose ---------- */
.prose { max-width: 74ch; margin-inline: auto; }
.prose > .updated { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.prose h2 { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0; font-size: 1.5rem; margin-top: 2.2rem; }
.prose h3 { font-family: var(--font-head); font-weight: 700; text-transform: none; font-size: 1.15rem; margin-top: 1.5rem; }
.prose p { margin-top: .9rem; }
.prose ul { margin-top: .8rem; display: grid; gap: .5rem; padding-left: 1.3rem; list-style: disc; }
.prose li { margin: 0; }
.prose a { color: var(--red); text-decoration: underline; }
.prose strong { font-weight: 700; }

/* footer legal links */
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal a { font-size: .88rem; color: #9aa0a3; }
.footer-legal a:hover { color: #fff; }

/* ---------- accessibility utilities / state ---------- */
.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; }
html.a11y-text-1 { font-size: 109%; }
html.a11y-text-2 { font-size: 118%; }
html.a11y-text-3 { font-size: 128%; }
html.a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; }
html.a11y-readable body { font-family: Verdana, Tahoma, system-ui, sans-serif; letter-spacing: .01em; line-height: 1.75; }
html.a11y-no-motion *, html.a11y-no-motion *::before, html.a11y-no-motion *::after {
  animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important;
}

/* ---------- accessibility widget ---------- */
.a11y { position: fixed; left: 1rem; bottom: 1rem; z-index: 60; }
.a11y__toggle { width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: #fff; border: 2px solid var(--gold); box-shadow: var(--shadow-md); display: grid; place-items: center; }
.a11y__toggle svg { width: 26px; height: 26px; }
.a11y__toggle:hover { background: var(--red); }
.a11y__panel { position: absolute; left: 0; bottom: 62px; width: 260px; background: var(--white); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1rem; display: grid; gap: .55rem; }
.a11y__head { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.a11y__close { background: none; border: 0; font-size: 1.5rem; line-height: 1; color: var(--muted); }
.a11y__row { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; }
.a11y__btns { display: flex; gap: .4rem; }
.a11y__btns button { width: 40px; height: 36px; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--paper); font-family: var(--font-head); font-weight: 700; }
.a11y__opt { text-align: left; padding: .6em .8em; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--paper); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; }
.a11y__opt[aria-pressed="true"] { background: var(--turf); color: #fff; border-color: var(--turf); }
.a11y__reset { padding: .55em; border: 0; background: none; color: var(--red); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.a11y__btns button:hover, .a11y__opt:hover { border-color: var(--ink); }

/* ---------- cookie banner ---------- */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--steel); color: #E9EAEA;
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; justify-content: center;
  padding: 1rem clamp(1rem, 4vw, 2rem); box-shadow: 0 -6px 24px rgba(0,0,0,.25);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.cookie-bar.is-in { transform: translateY(0); }
.cookie-bar p { margin: 0; font-size: .95rem; max-width: 60ch; }
.cookie-bar a { color: var(--gold); text-decoration: underline; }
.cookie-bar__btns { display: flex; gap: .6rem; }
.cookie-bar .btn { padding: .7em 1.3em; animation: none; }

/* ---------- email capture modal ---------- */
.email-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1.2rem;
  background: rgba(10,12,13,0); transition: background .3s var(--ease); }
.email-modal.is-in { background: rgba(10,12,13,.72); }
.email-modal__box {
  position: relative; width: min(460px, 100%); background: var(--paper); border-radius: var(--radius);
  overflow: clip; box-shadow: var(--shadow-lg);
  transform: scale(.6); opacity: 0; transition: transform .38s var(--ease), opacity .3s var(--ease);
}
.email-modal.is-in .email-modal__box { transform: scale(1); opacity: 1; }
.email-modal__body { padding: clamp(1.5rem, 4vw, 2.4rem); text-align: center; display: grid; gap: .7rem; }
.email-modal__body .eyebrow { justify-content: center; }
.email-modal__close { position: absolute; top: .6rem; right: .7rem; z-index: 2; background: rgba(0,0,0,.35); color: #fff; border: 0; width: 36px; height: 36px; border-radius: 50%; font-size: 1.4rem; line-height: 1; }
.email-modal__close:hover { background: var(--red); }
.email-modal__form { display: flex; gap: .5rem; margin-top: .4rem; }
.email-modal__form input { flex: 1; font: inherit; padding: .8em .9em; border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; }
.email-modal__form input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,16,32,.15); }
.email-modal__form .btn { white-space: nowrap; animation: none; }
.email-modal__status { min-height: 1.2em; font-size: .9rem; font-weight: 600; margin: 0; }
@media (max-width: 460px) { .email-modal__form { flex-direction: column; } }

/* keep floating widgets clear of the mobile call bar */
@media (max-width: 720px) {
  .a11y { bottom: 68px; }
  .cookie-bar { bottom: 56px; }
}

/* ---------- sticky mobile call bar ---------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: none; }
.callbar a { display: flex; align-items: center; justify-content: center; gap: .5em; padding: 1em; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.callbar__call { background: var(--red); color: #fff; }
.callbar__quote { background: var(--ink); color: #fff; }
.callbar > * { flex: 1; }
@media (max-width: 720px) { .callbar { display: flex; } body { padding-bottom: 56px; } }
