/* Eldorado Forklift Co — homepage rebuild 2026-08-06 */
:root {
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f4f6f8;
  --card: #ffffff;
  --brand: #0a2744;
  --brand-mid: #123a5c;
  --brand-soft: #e8f0f6;
  --accent: #d97706;
  --accent-hot: #f59e0b;
  --accent-ink: #7c2d12;
  --ok: #0f766e;
  --shadow: 0 10px 30px rgba(10, 39, 68, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 39, 68, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1160px;
  --header-h: 72px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  padding-bottom: 76px; /* mobile sticky CTA */
}

@media (min-width: 860px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 200;
}
.skip:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-bar {
  width: min(var(--max), calc(100% - 1.25rem));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--brand);
}
.brand-text span {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
}
.nav-links {
  display: none;
  gap: 0.15rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="true"] {
  background: var(--brand-soft);
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}
/* .btn sets display:inline-flex later — keep phone ghost hidden on small screens */
.btn.header-phone { display: none; }
.btn.header-call-mobile {
  display: inline-flex;
  min-height: 40px;
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 859px) {
  .brand-text span { display: none; }
  .brand-text strong { font-size: 0.9rem; }
  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s var(--ease);
    z-index: 60;
  }
  .site-nav.is-open { max-height: 420px; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0.15rem;
  }
  .nav-links a {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: var(--brand);
    font-size: 1rem;
  }
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .header-actions { margin-left: 0.5rem; }
  .btn.header-phone { display: inline-flex; }
  .btn.header-call-mobile { display: inline-flex; }
  .nav-toggle { display: none; }
  .site-nav { margin-left: auto; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg {
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  font-size: 1rem;
}
.btn-primary {
  background: linear-gradient(180deg, var(--accent-hot), var(--accent));
  color: #1c1917;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.28);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(217, 119, 6, 0.38); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}
.btn-dark {
  background: var(--brand);
  color: #fff;
}
.btn-dark:hover { background: var(--brand-mid); }
.btn-outline {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand-soft); }
.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: transparent;
  font-weight: 700;
}
.btn-ghost:hover { background: var(--brand-soft); }
.btn-link {
  background: transparent;
  color: #fff;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: auto;
  padding: 0.5rem 0.25rem;
  font-weight: 600;
  box-shadow: none;
}
.btn-link:hover { color: var(--accent-hot); transform: none; }

.card .btn,
.card.pad .btn { margin-top: 1rem; }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 6s ease;
}
.hero-media img.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(6, 22, 40, 0.92) 0%, rgba(6, 22, 40, 0.72) 48%, rgba(6, 22, 40, 0.35) 100%),
    linear-gradient(0deg, rgba(6, 22, 40, 0.85) 0%, transparent 45%);
}
.hero-inner {
  padding: 4.5rem 0 3.25rem;
  max-width: 720px;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  margin-right: auto;
  width: min(var(--max), calc(100% - 2rem));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fde68a;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(253, 230, 138, 0.25);
  border-radius: 999px;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  margin-bottom: 1.15rem;
}
.eyebrow img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.hero h1 {
  font-size: clamp(2.15rem, 5.5vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.hero-lead {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: #dbe7f2;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-pills li {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
}

/* —— Trust —— */
.trust {
  background: var(--brand);
  color: #dbeafe;
  border-bottom: 3px solid var(--accent);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem 0.25rem;
}
.trust-item strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.trust-item span {
  font-size: 0.88rem;
  color: #93c5fd;
}
@media (min-width: 800px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1.5rem 0;
  }
  .trust-item + .trust-item {
    border-left: 1px solid rgba(147, 197, 253, 0.2);
    padding-left: 1.25rem;
  }
}

/* —— Sections —— */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.section-alt { background: #fff; }
.section-dark {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(217, 119, 6, 0.18), transparent 55%),
    linear-gradient(160deg, #071a2e 0%, #0a2744 55%, #0c3358 100%);
  color: #e2e8f0;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.section-head.light .section-sub { color: #94a3b8; }
.kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}
.kicker.light { color: var(--accent-hot); }
.section h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--brand);
  max-width: 22ch;
  text-wrap: balance;
}
.section-dark h2 { color: #fff; }
.section-sub {
  margin-top: 0.65rem;
  color: var(--muted);
  max-width: 42rem;
  font-size: 1.02rem;
}

/* —— Cards —— */
.card-grid {
  display: grid;
  gap: 1.15rem;
}
.card-grid.two { grid-template-columns: 1fr; }
.card-grid.three { grid-template-columns: 1fr; }
.card-grid.four { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) {
  .card-grid.two { grid-template-columns: 1fr 1fr; }
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .card-grid.four { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.card.pad {
  padding: 1.5rem;
}
.card.pad h3 {
  color: var(--brand);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.card.pad p {
  color: var(--muted);
  font-size: 0.98rem;
}
.card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #cbd5e1;
}
.card.compact .card-media { aspect-ratio: 4 / 3; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.card:hover .card-media img { transform: scale(1.04); }
.card-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.card-body h3 {
  font-size: 1.08rem;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Gallery —— */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0a2744;
  position: relative;
  box-shadow: var(--shadow);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.7rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(transparent, rgba(6, 22, 40, 0.88));
}

.info-grid {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 800px) {
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}
.info-card {
  background: var(--brand-soft);
  border: 1px solid #d0e0ec;
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
}
.info-card h3 {
  color: var(--brand);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.info-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* —— Split —— */
.split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
  }
  .split.reverse { grid-template-columns: 1fr 1.05fr; }
  .split.reverse .split-copy { order: 1; }
  .split.reverse .split-media { order: 2; }
}
.split-media {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.split-copy h2 {
  max-width: 18ch;
  margin-bottom: 0.85rem;
}
.split-copy > p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 38rem;
}
.muted { color: var(--muted) !important; }
.inline-link {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.brand-row {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.brand-row img {
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}
.badge-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.badge-row img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.check-list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
}
@media (min-width: 560px) {
  .check-list { grid-template-columns: 1fr 1fr; }
}
.check-list li {
  position: relative;
  padding: 0.45rem 0.55rem 0.45rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

/* —— Quotes —— */
.quote-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .quote-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
}
.quote {
  margin: 0;
  padding: 1.35rem 1.3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
}
.quote p {
  font-size: 1rem;
  line-height: 1.5;
  color: #f1f5f9;
  margin-bottom: 0.85rem;
}
.quote footer {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fbbf24;
}

/* —— Contact —— */
.section-contact {
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background:
    linear-gradient(180deg, var(--bg) 0%, #e8eef4 100%);
}
.contact-layout {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 1.35fr 1fr;
    gap: 1.25rem;
  }
}
.contact-card {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(217, 119, 6, 0.22), transparent 50%),
    linear-gradient(145deg, #071a2e, #0a2744 60%, #123a5c);
  color: #e2e8f0;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-lg);
}
.contact-card h2 {
  color: #fff;
  max-width: 16ch;
  margin-bottom: 0.5rem;
}
.contact-card > p {
  color: #94a3b8;
  margin-bottom: 1.35rem;
}
.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.contact-list li span:first-child {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
}
.contact-list a {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-list a:hover { color: var(--accent-hot); }
.contact-list li > span:last-child {
  color: #fff;
  font-weight: 600;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hours-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.5rem, 4vw, 2.1rem);
  box-shadow: var(--shadow);
}
.hours-card h3 {
  color: var(--brand);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.hours-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}
.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.hours-list dt {
  font-weight: 700;
  color: var(--ink-soft);
}
.hours-list dd {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  text-align: right;
}
.hours-note {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.hours-note strong { color: var(--brand); }

/* —— Footer —— */
.site-footer {
  background: #061220;
  color: #94a3b8;
  padding: 2.75rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text span { color: #64748b; }
.footer-blurb {
  margin-top: 0.9rem;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.site-footer h3 {
  color: #e2e8f0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.site-footer ul {
  display: grid;
  gap: 0.45rem;
}
.site-footer a {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 600;
}
.site-footer a:hover { color: var(--accent-hot); }
.fineprint {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding-top: 1.1rem;
  font-size: 0.85rem;
  color: #64748b;
}

/* —— Mobile sticky CTA —— */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}
.mobile-cta .btn { width: 100%; border-radius: 14px; }
.mobile-cta .btn-secondary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
@media (min-width: 860px) {
  .mobile-cta { display: none; }
}

/* —— Reduced motion —— */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-media img { transform: none !important; }
}
