/* =========================================================
   Dixon Landscape Services — Design System
   Theme: Clean, professional — red / black / gray (matches logo)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — red / black / gray (from logo) */
  --brand:        #c0272d;   /* logo red */
  --brand-dark:   #161616;   /* near-black (dark sections) */
  --brand-700:    #8f1d22;   /* deep red (gradients / hover) */
  --leaf:         #e5484d;   /* bright red accent on dark */
  --brand-tint:   #f7e5e6;   /* light red wash (icon bgs) */

  /* Accent (charcoal gray) */
  --accent:       #4a4d51;
  --accent-dark:  #2c2e31;

  /* Neutrals */
  --ink:          #181818;
  --body:         #4c4f53;
  --muted:        #8a8d91;
  --bg:           #ffffff;
  --surface:      #f4f5f6;
  --surface-2:    #ecedef;
  --border:       #e3e5e8;
  --white:        #ffffff;

  /* Effects */
  --shadow-sm:  0 1px 2px rgba(17,17,17,.06), 0 1px 3px rgba(17,17,17,.05);
  --shadow-md:  0 4px 12px rgba(17,17,17,.08), 0 2px 4px rgba(17,17,17,.05);
  --shadow-lg:  0 18px 40px rgba(17,17,17,.16), 0 6px 14px rgba(17,17,17,.09);
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;

  /* Layout */
  --container:  1200px;
  --gutter:     clamp(1.25rem, 4vw, 3rem);

  /* Type */
  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--body); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tint { background: var(--surface); }
.section--ink  { background: var(--brand-dark); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .9rem; font-size: 1.1rem; }
.lead { font-size: 1.15rem; color: var(--body); }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Centered trailing row — matches .grid-3 column width but centers the cards */
.grid-3-tail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
}
.grid-3-tail { align-items: stretch; }
.grid-3-tail > * { flex: 0 1 calc((100% - 2 * clamp(1.25rem, 2.5vw, 2rem)) / 3); }
/* height:auto lets the flex row stretch both cards to equal height */
.grid-3-tail > .feature { height: auto; }
@media (max-width: 860px) {
  .grid-3-tail > * { flex-basis: 100%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .2s var(--ease-out), background .2s, box-shadow .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(192,39,45,.28);
}
.btn-primary:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(192,39,45,.34); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: #fff; color: var(--brand-dark); border-color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 150px;
}
.brand { display: flex; align-items: center; gap: .85rem; }
.brand img { width: 140px; height: 140px; object-fit: contain; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.05;
}
.brand-name span { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink);
  padding: .55rem .85rem;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--brand); background: var(--brand-tint); }
.nav-links a.active { color: var(--brand); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--brand); }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  padding: 0;
  color: var(--ink);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(15,15,15,.88) 0%, rgba(15,15,15,.64) 42%, rgba(15,15,15,.25) 100%);
}
.hero-inner { max-width: 640px; padding-block: 4rem; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.9); margin-top: 1.25rem; font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; }
.hero-badge { display: flex; align-items: center; gap: .55rem; font-size: .92rem; color: rgba(255,255,255,.92); font-weight: 500; }
.hero-badge svg { width: 20px; height: 20px; color: var(--leaf); flex: none; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--brand-dark); color: #fff; }
.trustbar .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 1.4rem;
}
.trust-item { display: flex; align-items: center; gap: .7rem; font-weight: 600; font-size: .98rem; }
.trust-item svg { width: 26px; height: 26px; color: var(--leaf); flex: none; }
.trust-item span small { display: block; font-weight: 400; font-size: .8rem; color: rgba(255,255,255,.7); }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card-body h3 { color: var(--ink); }
.card-body p { font-size: .98rem; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--brand);
  transition: gap .2s;
}
.card-link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card-link { gap: .65rem; }

/* Icon feature card */
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
  height: 100%;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--leaf); }
.feature-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand);
  margin-bottom: 1.1rem;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 { color: var(--ink); margin-bottom: .5rem; }
.feature p { font-size: .98rem; }

/* ---------- Split / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover;
}
.split-media .badge-float {
  position: absolute; bottom: -22px; left: -22px;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: .9rem;
}
.split-media .badge-float .num { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--brand); line-height: 1; }
.split-media .badge-float .lbl { font-size: .85rem; color: var(--body); font-weight: 500; }
.split-content .checklist { margin-top: 1.5rem; display: grid; gap: .85rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; color: var(--body); }
.checklist svg { width: 22px; height: 22px; color: var(--brand); flex: none; margin-top: 2px; }

/* ---------- Steps / Process ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  display: grid; place-items: center; margin-bottom: 1rem;
}
.step h3 { color: var(--ink); margin-bottom: .4rem; }
.step p { font-size: .98rem; }

/* ---------- Financing / CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.88); margin-top: .75rem; }
.cta-banner .cta-actions { display: flex; flex-direction: column; gap: .9rem; }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 1.25rem; }
.gallery figure {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.gallery img { width: 100%; transition: transform .5s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.5rem 1rem .9rem;
  background: linear-gradient(transparent, rgba(15,15,15,.85));
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Contact / Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info { display: grid; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ci-icon {
  width: 50px; height: 50px; border-radius: 12px; flex: none;
  background: var(--brand-tint); color: var(--brand);
  display: grid; place-items: center;
}
.contact-item .ci-icon svg { width: 24px; height: 24px; }
.contact-item h4 { color: var(--ink); margin-bottom: .15rem; }
.contact-item a, .contact-item p { color: var(--body); }
.contact-item a:hover { color: var(--brand); }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit; color: var(--ink);
  background: var(--surface);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(192,39,45,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; text-align: center; }
.form-success {
  display: none;
  background: var(--brand-tint); color: var(--brand-dark);
  border: 1px solid var(--leaf); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-bottom: 1.25rem; font-weight: 600;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: #fdecec; color: #9b1c1c;
  border: 1px solid #f5b5b5; border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-bottom: 1.25rem; font-weight: 600;
}
.form-error.show { display: block; }
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.cf-turnstile { min-height: 65px; }

/* ---------- Service areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--border);
  padding: .55rem 1.05rem; border-radius: 999px;
  font-weight: 600; font-size: .92rem; color: var(--ink);
}
.area-chip svg { width: 16px; height: 16px; color: var(--brand); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: var(--brand-dark);
  color: #fff;
  padding-block: clamp(3rem, 7vw, 5rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: var(--page-hero-img);
  background-size: cover; background-position: center;
  opacity: .22;
}
.page-hero .breadcrumb { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: .8rem; font-weight: 500; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.85); margin-top: 1rem; max-width: 600px; font-size: 1.15rem; }

/* ---------- Footer ---------- */
.site-footer { background: #141414; color: rgba(255,255,255,.75); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand img { width: 92px; height: 92px; object-fit: contain; background: #fff; border-radius: 12px; padding: 5px; }
.footer-brand .brand-name { color: #fff; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--leaf); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; margin-bottom: .7rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--leaf); flex: none; margin-top: 3px; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.25rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff;
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--brand); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .88rem; color: rgba(255,255,255,.55);
}
.footer-legal a { color: rgba(255,255,255,.7); }
.footer-legal a:hover { color: #fff; }

/* ---------- Legal pages (Terms / Privacy) ---------- */
.legal { color: var(--body); }
.legal .legal-updated { color: var(--muted); font-size: .95rem; margin-bottom: 2rem; }
.legal h2 {
  font-size: 1.4rem; color: var(--ink);
  margin-top: 2.5rem; margin-bottom: .75rem;
}
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem 1.25rem; padding: 0; }
.legal li { margin-bottom: .5rem; }
.legal a { color: var(--brand); text-decoration: underline; }
.legal a:hover { color: var(--brand-700); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery { columns: 2; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav { height: 88px; }
  .brand img { width: 68px; height: 68px; }
  .split, .contact-grid, .cta-banner { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/11; }
  .grid-3 { grid-template-columns: 1fr; }
  .cta-banner .cta-actions { flex-direction: row; flex-wrap: wrap; }

  /* Mobile menu */
  .nav-links {
    position: fixed; inset: 88px 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: #fff; padding: 1rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    transition: transform .35s var(--ease-out);
    gap: .25rem;
  }
  .nav-links.open { display: flex; transform: translateY(0); }
  .nav-links a { padding: .85rem 1rem; font-size: 1.05rem; border-radius: 10px; }
  .nav-links .btn { margin-top: .5rem; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .trustbar .container { justify-content: flex-start; }
  .split-media .badge-float { left: 50%; transform: translateX(-50%); bottom: -26px; }
}

/* ---------- Map embed ---------- */
.map-embed {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 640px) {
  .map-embed { height: 320px; }
}

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