/* ==========================================================================
   Fieldstone Outdoor Living - hand-authored, token-driven design system
   No framework, no build step, no preprocessor. Edit tokens once, everything
   downstream follows. Both colour schemes verified programmatically for
   WCAG AA contrast - see README.md "Verified in QA".
   ========================================================================== */

/* -------------------------------------------------------------------------
   Tokens
   ------------------------------------------------------------------------- */
:root {
  color-scheme: light;

  /* Brand: muted olive + brick-red accent + paper, deliberately not the
     beige/brass/espresso "premium-consumer default" - see design notes in
     README.md. */
  --olive-900: #232B1D;
  --olive-700: #3F4E35;
  --olive-500: #5C7048;
  --brick-600: #A8482D;
  --brick-700: #8C3A23;
  --paper: #F3F5EC;
  --paper-2: #FFFFFF;
  --paper-3: #E7EBDC;
  --ink: #1E2318;
  --muted: #545C48;
  --line: #D6DCC7;

  /* Button pair tokens - dedicated per-scheme, never a reused accent token
     (a filled button's safe foreground flips between schemes; see
     lessons-learned.md "one colour token doing two jobs"). */
  --btn-primary-bg: var(--brick-600);
  --btn-primary-bg-hover: var(--brick-700);
  --btn-primary-fg: #FFF9F2;
  --btn-secondary-bg: transparent;
  --btn-secondary-border: var(--olive-700);
  --btn-secondary-fg: var(--olive-900);
  --btn-secondary-bg-hover: rgba(63, 78, 53, 0.08);

  --shadow-soft: 0 18px 40px -22px rgba(30, 35, 24, 0.35);
  --shadow-lift: 0 26px 54px -20px rgba(30, 35, 24, 0.42);

  /* One radius system, used everywhere - see lessons-learned "shape
     consistency". Soft, not sharp: this is an outdoor-living brand, not an
     industrial one. */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Fixed, scheme-independent tokens - deliberately NOT redefined in the
     dark-mode block below. --olive-900 and --paper flip meaning by design
     (see lessons-learned.md "one colour token doing two jobs"), so anything
     that must stay a dark surface with light text regardless of scheme
     (footer, wordmark mark, hero badge) needs its own fixed pair instead of
     borrowing a token that flips. */
  --surface-dark: #232B1D;
  --on-dark: #F3F5EC;
  --on-dark-muted: rgba(243, 245, 236, 0.72);

  /* Sans display, on purpose - see README design notes: serif is the
     reflexive "creative brief" choice and this brand doesn't earn it. */
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --olive-900: #EDEFE3;
    --olive-700: #C7D0B4;
    --olive-500: #9CB088;
    --brick-600: #E07750;
    --brick-700: #F08D63;
    --paper: #161A12;
    --paper-2: #1F2419;
    --paper-3: #262C1E;
    --ink: #EEF0E4;
    --muted: #AEB69C;
    --line: #333B28;

    --btn-primary-bg: var(--brick-600);
    --btn-primary-bg-hover: var(--brick-700);
    --btn-primary-fg: #1A1006;
    --btn-secondary-border: var(--olive-700);
    --btn-secondary-fg: var(--olive-900);
    --btn-secondary-bg-hover: rgba(199, 208, 180, 0.1);

    --shadow-soft: 0 18px 40px -20px rgba(0, 0, 0, 0.55);
    --shadow-lift: 0 26px 54px -18px rgba(0, 0, 0, 0.6);
  }
}

/* -------------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

/* Sora ships no italic face on Google Fonts, so in-headline emphasis is
   colour + weight within the same family instead of a synthetic oblique. */
em { font-style: normal; font-weight: 700; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--surface-dark); color: var(--on-dark);
  padding: 12px 18px; border-radius: var(--radius-sm);
  z-index: 200; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

::selection { background: rgba(168, 72, 45, 0.24); color: var(--ink); }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--btn-primary-bg); color: var(--btn-primary-fg); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--btn-primary-bg-hover); transform: translateY(-2px); }
.btn-secondary { background: var(--btn-secondary-bg); color: var(--btn-secondary-fg); border-color: var(--btn-secondary-border); }
.btn-secondary:hover { background: var(--btn-secondary-bg-hover); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn:focus-visible { outline: 2.5px solid var(--brick-600); outline-offset: 3px; }
.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--paper-2); color: var(--ink);
  flex-shrink: 0;
}
.btn-icon:hover { border-color: var(--brick-600); color: var(--brick-600); }
.btn-icon:focus-visible { outline: 2.5px solid var(--brick-600); outline-offset: 2px; }
.btn-icon svg { width: 18px; height: 18px; }

/* -------------------------------------------------------------------------
   Logomark - hand-drawn "cairn" (stacked fieldstones), reused in the
   header, footer, and favicon.svg so the mark stays consistent everywhere.
   ------------------------------------------------------------------------- */
.logomark { display: block; flex-shrink: 0; }

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(243, 245, 236, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
@media (prefers-color-scheme: dark) {
  .site-header { background: rgba(22, 26, 18, 0.88); }
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 20px; }

.wordmark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.wordmark-text { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--ink); letter-spacing: -0.01em; }
.wordmark-text span { color: var(--brick-600); }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 0.95rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .15s ease; }
.main-nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: none; font-size: 0.95rem; font-weight: 600; color: var(--ink); text-decoration: none; }

/* Below ~480px, wordmark + "Free consultation" + hamburger don't fit one
   row and forced real horizontal page overflow (verified via scrollWidth
   vs clientWidth at 375px). The mobile nav dropdown already repeats this
   CTA as a full-width button, so hiding it here loses no functionality. */
@media (max-width: 480px) {
  .header-actions .btn-primary { display: none; }
}

.menu-toggle {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: transparent; border: 1.5px solid var(--line); color: var(--ink);
}
.menu-toggle-bars { width: 20px; height: 14px; position: relative; }
.menu-toggle-bars span { position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 2px; }
.menu-toggle-bars span:nth-child(1) { top: 0; }
.menu-toggle-bars span:nth-child(2) { top: 6px; }
.menu-toggle-bars span:nth-child(3) { top: 12px; }

.mobile-nav { display: none; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.mobile-nav.is-open { display: block; }
.mobile-nav ul { padding: 10px 24px 20px; display: flex; flex-direction: column; }
/* :not(.btn): the mobile CTA button lives inside .mobile-nav too, and this
   selector would otherwise beat .btn-primary's own color (extra element
   selector = higher specificity) - the exact bug already documented in
   lessons-learned.md ("a container's descendant link rule silently
   overrode a button's own text colour"). */
.mobile-nav a:not(.btn) { display: block; padding: 13px 4px; font-size: 1.02rem; font-weight: 500; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-nav li:last-child a { border-bottom: none; }
.mobile-nav-cta { margin-top: 14px; }

/* 1040px, not 900px: at 900-1040px the full nav (5 links + phone number +
   button) wrapped mid-link ("Our" / "Process" on two lines) - verified by
   checking window.innerWidth against a screenshot showing the wrap, not
   just eyeballing a breakpoint number. The hero's own two-column split
   still switches at 900px separately; only the nav needed more room. */
@media (min-width: 1040px) {
  .main-nav { display: block; }
  .header-phone { display: inline; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  /* The wordmark wrapping to two lines here breaks the header's fixed
     height along with everything beside it - verified this still happened
     right at the 1040px boundary even after the nav-label shortening
     below, so it needs its own explicit fix rather than relying on space
     freed up elsewhere. */
  .wordmark-text { white-space: nowrap; }
  .main-nav ul { gap: 24px; }
}

/* -------------------------------------------------------------------------
   Eyebrow / section heading
   ------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brick-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brick-600); border-radius: 2px; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-top: 12px; }
/* :not(.eyebrow): the eyebrow is itself a <p>, and this selector's extra
   element-level specificity would otherwise beat plain ".eyebrow" and
   silently repaint every section's eyebrow muted instead of the brand
   accent - caught by comparing computed color against the intended token,
   not by eye (see lessons-learned.md on contrast/colour checks). */
.section-head p:not(.eyebrow) { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.on-dark h2 { color: var(--on-dark); }
.section-head.on-dark p:not(.eyebrow) { color: var(--on-dark-muted); }

section { padding: 88px 0; }
@media (max-width: 640px) { section { padding: 64px 0; } }

/* -------------------------------------------------------------------------
   Hero - asymmetric split, single photo (not a collage), stats folded
   directly into the copy column instead of a separate stat band.
   ------------------------------------------------------------------------- */
.hero { padding: 56px 0 88px; position: relative; overflow: clip; }
.hero-grid { display: grid; gap: 48px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 { font-size: clamp(2.5rem, 5.4vw, 3.9rem); letter-spacing: -0.01em; }
.hero-copy h1 em { color: var(--brick-600); }
.hero-copy p:not(.eyebrow) { margin-top: 22px; font-size: 1.15rem; color: var(--muted); max-width: 46ch; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 22px 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-stat strong { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 1.9rem); color: var(--ink); display: block; }
.hero-stat span { font-size: 0.85rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -18px; top: -18px;
  background: var(--surface-dark); color: var(--on-dark);
  border-radius: var(--radius-md); padding: 18px 20px;
  box-shadow: var(--shadow-lift);
  max-width: 220px;
  z-index: 1;
}
.hero-badge strong { font-family: var(--font-display); font-size: 1.3rem; display: block; }
.hero-badge span { font-size: 0.82rem; opacity: 0.85; }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-media { aspect-ratio: 3 / 4; }
}

/* -------------------------------------------------------------------------
   Services - alternating image/text feature rows (not a card grid), so
   each service reads as its own moment instead of one of seven equal tiles.
   ------------------------------------------------------------------------- */
.feature-list { display: flex; flex-direction: column; gap: 64px; }
.feature-row { display: grid; gap: 28px; align-items: center; }
.feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-num { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--brick-600); }
.feature-text h3 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin-top: 12px; }
.feature-text p { margin-top: 12px; color: var(--muted); font-size: 1rem; max-width: 46ch; }

@media (min-width: 800px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 48px; }
  .feature-row.is-reverse .feature-media { order: 2; }
  .feature-row.is-reverse .feature-text { order: 1; }
}

/* -------------------------------------------------------------------------
   Process - horizontal connected timeline on the page background (not a
   full-bleed dark band), so it reads as a distinct pattern from the
   dark-surface treatment used for the footer/badge.
   ------------------------------------------------------------------------- */
.timeline { display: grid; gap: 32px; grid-template-columns: 1fr; counter-reset: step; }
.timeline-step { position: relative; padding-left: 56px; }
.timeline-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-dark); color: var(--on-dark);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
}
.timeline-step::after {
  content: ""; position: absolute; left: 19px; top: 44px; bottom: -32px;
  width: 2px; background: var(--line);
}
.timeline-step:last-child::after { display: none; }
.timeline-step h3 { font-size: 1.15rem; }
.timeline-step p { margin-top: 8px; color: var(--muted); font-size: 0.96rem; max-width: 56ch; }

@media (min-width: 800px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .timeline-step { padding-left: 0; padding-top: 56px; }
  .timeline-step::before { left: 0; top: 0; }
  .timeline-step::after { left: 44px; right: -24px; top: 19px; bottom: auto; width: auto; height: 2px; }
}

/* -------------------------------------------------------------------------
   Gallery - horizontal scroll-snap filmstrip, not a static grid.
   ------------------------------------------------------------------------- */
.filmstrip-wrap { position: relative; }
.filmstrip {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  -webkit-overflow-scrolling: touch;
}
.filmstrip-item {
  flex: 0 0 auto;
  width: min(78vw, 380px);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-soft);
}
.filmstrip-item img { width: 100%; height: 100%; object-fit: cover; }
.filmstrip-nav { display: none; }
@media (min-width: 700px) {
  .filmstrip-nav { display: flex; gap: 10px; justify-content: flex-end; margin-bottom: 24px; }
}

/* -------------------------------------------------------------------------
   Testimonials - single rotating pull-quote, not a card grid.
   ------------------------------------------------------------------------- */
.quote-block { max-width: 780px; }
.quote-stars { color: var(--brick-600); font-size: 1.1rem; letter-spacing: 0.16em; }
.quote-slide { display: none; }
.quote-slide.is-active { display: block; }
.quote-slide blockquote {
  margin: 20px 0 0;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.35;
}
.quote-slide footer { margin-top: 20px; font-size: 0.95rem; color: var(--muted); }
.quote-dots { margin-top: 32px; display: flex; gap: 10px; }
.quote-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: var(--line); padding: 0;
}
.quote-dot.is-active { background: var(--brick-600); width: 26px; border-radius: var(--radius-pill); transition: width .2s ease; }
.quote-dot:focus-visible { outline: 2.5px solid var(--brick-600); outline-offset: 2px; }

/* -------------------------------------------------------------------------
   FAQ accordion
   ------------------------------------------------------------------------- */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-weight: 600; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); position: relative; transition: transform .2s ease; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--ink); }
.faq-plus::before { left: 6px; right: 6px; top: 12px; height: 2px; }
.faq-plus::after { top: 6px; bottom: 6px; left: 12px; width: 2px; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-answer { padding: 0 4px 22px; color: var(--muted); max-width: 62ch; }

/* -------------------------------------------------------------------------
   Contact - split form block, with the service-area list folded in here
   instead of living in its own full-width band.
   ------------------------------------------------------------------------- */
.contact-band { background: var(--paper-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.contact-info p:not(.eyebrow) { margin-top: 14px; color: var(--muted); }
.contact-info-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.contact-info-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brick-600); margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span { font-size: 1.02rem; text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }

.area-list { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.area-chip {
  border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  padding: 6px 14px; font-size: 0.84rem; font-weight: 600; color: var(--ink);
}
.area-chip.is-hq { border-color: var(--brick-600); color: var(--brick-600); background: rgba(168, 72, 45, 0.06); }

.field-group { margin-bottom: 18px; }
.field-label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; }
.field {
  width: 100%; padding: 13px 15px; font: inherit;
  border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--paper); color: var(--ink);
}
.field:focus { outline: none; border-color: var(--brick-600); box-shadow: 0 0 0 3px rgba(168, 72, 45, 0.16); }
textarea.field { resize: vertical; min-height: 120px; }
.field-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-error { display: none; color: var(--brick-700); font-size: 0.84rem; margin-top: 6px; }
.field[aria-invalid="true"] { border-color: var(--brick-700); }
.field[aria-invalid="true"] + .field-error { display: block; }

.form-status { margin-top: 16px; font-size: 0.92rem; padding: 12px 16px; border-radius: var(--radius-sm); display: none; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(63, 78, 53, 0.12); color: var(--olive-700); }
.form-status.is-error { background: rgba(168, 72, 45, 0.12); color: var(--brick-700); }

.captcha-wrap { min-height: 65px; margin: 6px 0 18px; }
.captcha-wrap:empty { display: none; margin: 0; }

@media (min-width: 940px) { .contact-grid { grid-template-columns: 0.85fr 1fr; align-items: start; } }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--surface-dark); color: rgba(243, 245, 236, 0.82); padding: 56px 0 28px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.footer-brand .wordmark-text, .footer-brand .wordmark-text span { color: var(--on-dark); }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; max-width: 34ch; color: rgba(243, 245, 236, 0.65); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(243, 245, 236, 0.5); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(243, 245, 236, 0.82); text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { text-decoration: underline; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(243, 245, 236, 0.14); font-size: 0.84rem; color: rgba(243, 245, 236, 0.55); display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* -------------------------------------------------------------------------
   Scroll reveals - IntersectionObserver driven, no scroll listeners
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .feature-media, .hero-actions .btn { transition: none !important; }
}
