/* ============================================================
   CUDDLE BED PAGE
   ------------------------------------------------------------
   Page-specific styles that build on the shared design system
   declared in styles.css (tokens, .container, .section,
   .section-eyebrow, .section-title, .btn). The hero animation
   from index.html does not load here — this page has its own
   hero layout.
   ============================================================ */

body.cuddle-page {
  background: var(--warm-grey);
  color: var(--body);
  font-family: var(--font-display);
  /* Reset the homepage's overflow-x: hidden quirk so the focus
     ring on the breadcrumb link stays fully visible. */
  overflow-x: clip;
}

.cuddle-page .num {
  font-feature-settings: 'tnum' 1, 'ss01' 1;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--white);
  padding: 20px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.breadcrumb-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumb-list li:not(:last-child)::after {
  content: "\2192";  /* → */
  margin-left: 8px;
  color: var(--teal);
  opacity: 0.7;
}
.breadcrumb-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.breadcrumb-list a:hover { color: var(--navy); }
.breadcrumb-list [aria-current="page"] { color: var(--navy); }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.section-hero {
  background: var(--white);
  padding: 56px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

/* ---------- Gallery ---------- */
.hero-gallery-main {
  margin: 0 0 12px;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 40px -28px rgba(15, 42, 68, 0.30);
}
.hero-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--t-fast) var(--ease);
}
.hero-gallery-main.is-swapping img { opacity: 0; }

/* Prev/next arrows overlaid on the main image */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 42, 68, 0.78);
  color: var(--white);
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    background var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease),
    opacity var(--t-fast) var(--ease);
}
.hero-arrow-prev { left: 12px; }
.hero-arrow-next { right: 12px; }
.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: var(--teal);
  color: var(--white);
}
.hero-arrow:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.hero-arrow:active { transform: translateY(-50%) scale(0.94); }

/* Visually hidden utility (screen-reader-only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-gallery-thumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.hero-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0;
  border: 1px solid var(--teal-15);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-thumb:hover { border-color: var(--teal-25); transform: translateY(-1px); }
.hero-thumb.is-active {
  border: 1.5px solid var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 182, 176, 0.18);
}
.hero-thumb:focus { outline: none; }
.hero-thumb:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ---------- Hero content ---------- */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1;
}
.hero-eyebrow-sep { opacity: 0.55; }

.hero-overline {
  margin: 0 0 4px;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--teal);
}
.hero-h1 {
  margin: 0 0 6px;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--navy);
  text-wrap: balance;
}
.hero-model {
  margin: 0 0 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-body {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  max-width: 520px;
}

/* Hero spec card — mirrors Products-page .specrow rhythm */
.hero-spec-card {
  margin: 0 0 28px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--teal-15);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(15, 42, 68, 0.04);
}
.hero-spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--teal-08);
}
.hero-spec-row:first-child { padding-top: 4px; }
.hero-spec-row:last-child  { border-bottom: 0; padding-bottom: 4px; }
.hero-spec-label {
  font-size: 13px;
  color: var(--muted);
}
.hero-spec-value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--navy);
  text-align: right;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.btn-ghost {
  border: 1px dashed var(--teal-25);
  background: transparent;
  color: var(--navy);
  padding: 11px 16px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.btn-ghost:hover { background: var(--teal-08); }

/* ============================================================
   SECTION 2 — WHAT SETS IT APART
   ============================================================ */
.section-features { background: var(--white); padding: 56px 0 56px; }

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--teal-15);
  border-radius: 14px;
  padding: 22px 20px 24px;
  box-shadow: 0 2px 12px rgba(15, 42, 68, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    border-color var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease),
    transform var(--t-med) var(--ease);
}
.feature-card:hover {
  border-color: var(--teal-25);
  box-shadow: 0 14px 28px rgba(15, 42, 68, 0.06);
  transform: translateY(-2px);
}
.feature-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--teal-08);
  color: var(--teal);
}
.feature-title {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.25;
}
.feature-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}

/* ============================================================
   SECTION 3 — HOW THE BED WORKS  (white "show me" beat)
   ============================================================ */
.section-demo { background: var(--white); padding: 56px 0 72px; }
.demo-sub {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}
.demo-video {
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo-video--solo {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.demo-video-caption {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}
.demo-video-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

/* ============================================================
   SECTION 4 — BORN FROM A DYING WISH  (navy)
   ============================================================ */
.section-origin {
  background: var(--navy);
  color: var(--white);
  padding-top: 96px;
  padding-bottom: 96px;
}

.origin-head { max-width: 760px; margin: 0 0 40px; }
.section-eyebrow-onnavy {
  color: rgba(255, 255, 255, 0.65);
}
.section-eyebrow-onnavy::before {
  background: rgba(255, 255, 255, 0.55);
}
.section-title-onnavy {
  color: var(--white);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  margin-bottom: 18px;
}
.origin-intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  column-gap: 40px;
  row-gap: 28px;
  align-items: start;
}
/* Tom-story (top-left) + quote card (bottom-left);
   bed-story video spans both rows on the right. */
.origin-video--tom { grid-column: 1; grid-row: 1; }
.origin-quote      { grid-column: 1; grid-row: 2; }
.origin-video--bed { grid-column: 2; grid-row: 1 / span 2; align-self: end; }

/* Video frame — responsive 16:9 wrapper around iframe / <video> */
.origin-video {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.origin-video-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 4px;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.45);
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: #000;
}
.origin-video-caption {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.origin-quote {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  padding: 24px 26px;
}
.origin-quote-body {
  margin: 0 0 16px;
  font-family: var(--font-tight);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  color: var(--white);
  letter-spacing: -0.01em;
}
.origin-quote-attr {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.origin-quote-context {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   SECTION 7 — FULL SPECIFICATIONS  (accordion, closed by default)
   ============================================================ */
.section-spec { background: var(--white); padding-top: 0; padding-bottom: 80px; }

/* Accordion shell */
.spec-accordion {
  border-top: 1px solid var(--teal-15);
  border-bottom: 1px solid var(--teal-15);
}
.spec-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  transition: color var(--t-fast) var(--ease);
}
.spec-summary::-webkit-details-marker { display: none; }
.spec-summary:hover { color: var(--teal); }
.spec-summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 4px;
}
.spec-summary-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.spec-summary-eyebrow { margin: 0 0 6px; }
.spec-summary-label {
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: inherit;
}
.spec-summary-hint {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.spec-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-08);
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--t-med) var(--ease), background var(--t-fast) var(--ease);
}
.spec-summary:hover .spec-summary-icon { background: var(--teal-15); }
.spec-accordion[open] .spec-summary-icon { transform: rotate(180deg); }

/* Open state — give the body breathing room before/after */
.spec-body {
  padding: 24px 0 8px;
  animation: spec-body-fade var(--t-med) var(--ease);
}
@keyframes spec-body-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.spec-body-title {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin-bottom: 0;
}

.spec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.spec-sub {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 540px;
}
.spec-active {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.spec-active strong {
  color: var(--teal);
  font-weight: 500;
  margin-left: 8px;
  letter-spacing: 0.10em;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
}
.specgroup { margin-top: 28px; }
.specgroup:nth-child(1),
.specgroup:nth-child(2) { margin-top: 0; }
.specgroup-wide { grid-column: 1 / -1; }
.specgroup-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--teal-25);
  padding-bottom: 10px;
  margin: 0 0 4px;
}
.specrow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--teal-08);
}
.specrow:last-child { border-bottom: 0; }
.specrow-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.specrow-value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--navy);
  text-align: right;
  line-height: 1.35;
}

.specgroup-wide .spec-rows-inner,
.specgroup-wide { /* keep wide group on two-column rhythm */ }
.specgroup-wide {
  display: block;
}
.specgroup-wide .specgroup-title { padding-bottom: 10px; }

/* On wide screens, lay out the wide-group rows in two columns
   so it doesn't become a single tall block. */
@media (min-width: 720px) {
  .specgroup-wide {
    display: grid;
    grid-template-columns: auto;
  }
  .specgroup-wide .specgroup-title {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   SECTION 5 — BY THE HOSPICES THAT KNOW  (warm grey)
   ============================================================ */
.section-trust {
  background: var(--warm-grey);
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
}
.trust-head { text-align: center; margin: 0 auto 28px; max-width: 760px; }
.trust-title {
  text-wrap: balance;
  max-width: 760px;
  margin: 0 auto;
}

.trust-quote {
  max-width: 720px;
  margin: 32px auto 36px;
}
.trust-quote blockquote {
  margin: 0 0 14px;
  font-family: var(--font-tight);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: var(--navy);
  text-wrap: pretty;
}
.trust-quote figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
}

.trust-including {
  margin: 0 auto 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.trust-including::before,
.trust-including::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--teal-25);
}

.trust-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 36px;
  max-width: 820px;
}
.trust-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0;
  line-height: 1.4;
}

/* ============================================================
   SECTION 6 — SERVICE  ("What's included")
   ============================================================ */
.section-service { background: var(--white); padding-top: 96px; padding-bottom: 96px; }
.service-sub {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 580px;
}

.service-grid {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--teal-15);
  border-radius: 14px;
  padding: 22px 22px 24px;
  box-shadow: 0 2px 12px rgba(15, 42, 68, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-num {
  margin: 0;
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.service-num-word {
  letter-spacing: -0.01em;
  font-size: 30px;
}
.service-unit {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 4px;
  vertical-align: 4px;
}
.service-num-word .service-unit {
  font-family: var(--font-mono);
  vertical-align: 6px;
}
.service-title {
  margin: 4px 0 0;
  font-family: var(--font-tight);
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.3;
}
.service-body {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* Bottom contact strip — final CTA */
.service-contact {
  border-top: 1px solid var(--teal-15);
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 20px 32px;
  align-items: end;
}
.service-contact-lead {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.45;
}
.service-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.service-contact-link {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--t-fast) var(--ease);
}
.service-contact-link:hover { color: var(--teal); }
.service-contact-cta { margin-left: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .section-hero { padding-top: 40px; padding-bottom: 72px; }
  .hero-grid { gap: 36px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .origin-grid { column-gap: 28px; row-gap: 24px; }
}

@media (max-width: 820px) {
  .breadcrumb { padding: 14px 0 0; font-size: 11px; }
  .section-hero { padding-top: 32px; padding-bottom: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-gallery-thumbs { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .hero-actions .btn-ghost { width: 100%; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 calc(50% - 5px); }

  .section-features,
  .section-trust,
  .section-service,
  .section-spec { padding-top: 56px; padding-bottom: 56px; }
  .section-origin { padding-top: 56px; padding-bottom: 56px; }

  .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-grid { grid-template-columns: 1fr; gap: 12px; }

  .origin-grid { grid-template-columns: 1fr; gap: 22px; }
  /* Single-column stack: Tom video → Bed video → quote card */
  .origin-video--tom { grid-column: 1; grid-row: auto; }
  .origin-video--bed { grid-column: 1; grid-row: auto; }
  .origin-quote      { grid-column: 1; grid-row: auto; }

  .demo-video { margin-top: 28px; }
  .hero-arrow { width: 36px; height: 36px; }
  .hero-arrow-prev { left: 8px; }
  .hero-arrow-next { right: 8px; }

  .spec-summary { padding: 22px 0; gap: 14px; }
  .spec-summary-icon { width: 34px; height: 34px; }
  .spec-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .spec-grid { grid-template-columns: 1fr; gap: 0; }
  .specgroup:nth-child(2) { margin-top: 28px; }
  .specrow { grid-template-columns: 1fr; gap: 2px; padding: 10px 0; }
  .specrow-value { text-align: left; }

  .trust-list { grid-template-columns: 1fr; gap: 10px; }

  .service-contact { grid-template-columns: 1fr; }
  .service-contact-row { width: 100%; }
  .service-contact-cta { margin-left: 0; width: 100%; }
}

@media (max-width: 480px) {
  .hero-gallery-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero-gallery-thumbs li:nth-child(5) { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .hero-thumb,
  .service-contact-link,
  .btn,
  .breadcrumb-list a { transition: none !important; }
  .feature-card:hover,
  .hero-thumb:hover { transform: none; }
  .hero-gallery-main img { transition: none; }
}
