/* ============================================================
   CUSTOM WOODWORKS SF BAY AREA — Main Stylesheet
   ============================================================ */

/* ─── Custom Properties ─── */
:root {
  /* Charcoal & Brass */
  --navy:        #2C2C2C;
  --navy-80:     rgba(44,44,44,0.85);
  --navy-mid:    #383838;
  --navy-light:  #464646;
  --navy-border: rgba(255,255,255,0.10);

  --wood-dark:   #7A5800;
  --wood:        #9A7010;
  --wood-light:  #B8860B;
  --wood-pale:   #CCA028;
  --wood-cream:  #E0C06A;

  --cream:       #EDE4D8;
  --cream-light: #F9F7F5;
  --white:       #FFFFFF;

  --text-dark:   #2C2C2C;
  --text-mid:    #4A4A4A;
  --text-muted:  #767676;
  --text-light:  #F0EDE8;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(44,44,44,0.10);
  --shadow-md:   0 8px 32px rgba(44,44,44,0.15);
  --shadow-lg:   0 20px 60px rgba(44,44,44,0.22);

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height:  80px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.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;
}

/* ─── Container ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography Scale ─── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--wood-light);
  color: var(--white);
  border-color: var(--wood-light);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--wood);
  border-color: var(--wood);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,134,58,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--wood-pale);
  border-color: var(--wood-pale);
  font-size: 0.875rem;
  padding: 10px 22px;
}
.btn-outline-light:hover, .btn-outline-light:focus-visible {
  background: var(--wood-light);
  color: var(--white);
  border-color: var(--wood-light);
}

.btn-nav-cta {
  background: var(--wood-light);
  color: var(--white);
  border: 2px solid var(--wood-light);
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
}
.btn-nav-cta:hover, .btn-nav-cta:focus-visible {
  background: var(--wood);
  border-color: var(--wood);
}

.nav-phone {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--wood-cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-phone:hover { color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

/* focus styles */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--wood-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(44, 44, 44, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 70px;
  height: 70px;
  display: block;
  object-fit: contain;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--wood-pale);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--wood-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 1px;
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--white);
}
.nav-link:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger[aria-expanded="true"] .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.85) 0%,
    rgba(13,27,42,0.65) 50%,
    rgba(13,27,42,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) 32px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood-pale);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-title em {
  font-style: italic;
  color: var(--wood-pale);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  max-width: 500px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wood-pale);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin: 0 16px;
  flex-shrink: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

.scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--wood-pale);
  border-radius: 50%;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============================================================
   SLIDER — FULL-HERO PRIMARY SECTION
   ============================================================ */
.slider-section {
  position: relative;
  background: var(--navy);
  /* intentionally no padding — slides are full-viewport */
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* ── Slide base: all stacked, absolute, hidden by default ── */
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  pointer-events: none;
  /* scale-in on entering, stays at 1 when active */
  transform: scale(1.04);
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 1;
}

/* ── Full-bleed image background ── */
.slide-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* slow Ken-Burns pan on the active slide */
  transform: scale(1.08);
  transition: transform 10s ease-out;
}

.slide.active .slide-image img {
  transform: scale(1);
}

/* ── Cinematic gradient overlays ── */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  /* dark on left edge + strong gradient to the right for text panel */
  background:
    linear-gradient(
      to right,
      rgba(13,27,42,0.25) 0%,
      rgba(13,27,42,0.10) 45%,
      rgba(13,27,42,0.72) 62%,
      rgba(13,27,42,0.92) 100%
    );
  pointer-events: none;
}

/* bottom vignette to keep dots readable */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.55) 0%,
    transparent 30%
  );
  pointer-events: none;
}

/* ── Slide content: right-side panel, vertically centered ── */
.slide-content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: min(480px, 42%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* extra bottom padding accounts for the 90px stats bar */
  padding: calc(var(--nav-height) + 40px) 64px 200px 48px;

  transform: translateX(32px);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.25s,
    opacity   0.9s ease 0.25s;
}

.slide.active .slide-content {
  transform: translateX(0);
  opacity: 1;
}

.slide-category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood-pale);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slide-category::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--wood-pale);
  flex-shrink: 0;
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.slide-desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 380px;
}

.slide-link {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    border-color var(--transition),
    gap var(--transition);
  width: fit-content;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.06);
}

.slide-link:hover, .slide-link:focus-visible {
  background: var(--wood-light);
  border-color: var(--wood-light);
  gap: 18px;
}

/* ── Navigation arrows ── */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.22);
  background: rgba(13,27,42,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform 0.3s ease;
}

.slider-btn svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}

.slider-btn:hover, .slider-btn:focus-visible {
  background: var(--wood-light);
  border-color: var(--wood-light);
  transform: translateY(-50%) scale(1.08);
}

/* Both arrows live in the left (image-only) half so they never overlap the text column */
.slider-prev { left: 36px; }
.slider-next { right: auto; left: 116px; }

/* ── Dot indicators ── */
.slider-dots {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  height: 4px;
  width: 24px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.dot:hover { background: rgba(255,255,255,0.6); }

.dot.active {
  background: var(--wood-light);
  width: 48px;
}

/* ── Slider scroll indicator ── */
.slider-scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 64px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

/* ── Nav bar: counter + dots grouped at bottom ── */
.slider-nav-bar {
  position: absolute;
  bottom: 100px; /* sits above the stats bar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

/* ── Slide counter ── */
.slider-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

.counter-current {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--wood-pale);
}

.counter-sep { margin: 0 2px; }

/* ── Dots (updated for 9 slides) ── */
.slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  height: 3px;
  width: 16px;
  border-radius: 2px;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.dot:hover { background: rgba(255,255,255,0.55); }

.dot.active {
  background: var(--wood-light);
  width: 36px;
}

/* ── Stats bar ── */
.slider-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 48px;
  background: rgba(10,20,34,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.slider-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  text-align: center;
}

.slider-stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wood-pale);
  line-height: 1;
}

.slider-stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.slider-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 8px;
}

.slider-stat-cta {
  flex-shrink: 0;
  margin-left: 24px;
}

.slider-stat-cta .btn-primary {
  padding: 10px 22px;
  font-size: 0.8125rem;
}

/* ── Slider scroll indicator ── */
.slider-scroll-indicator {
  position: absolute;
  bottom: 104px; /* above stats bar */
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--cream-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.service-card--featured .service-name,
.service-card--featured .service-desc,
.service-card--featured .service-features li {
  color: var(--white);
}

.service-card--featured .service-icon { color: var(--wood-pale); }
.service-card--featured .service-link { color: var(--wood-pale); }
.service-card--featured .service-features li::before { color: var(--wood-pale); }

.service-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--wood-light);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--wood-light);
  margin-bottom: 20px;
}

.service-icon svg { width: 100%; height: 100%; }

.service-name {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}

.service-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-features li {
  font-size: 0.8125rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wood-light);
  font-size: 0.75rem;
  font-weight: 700;
  top: 1px;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wood);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), gap var(--transition);
  margin-top: auto;
}

.service-link:hover { color: var(--wood-light); gap: 10px; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-section {
  padding: 100px 0;
  background: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--navy);
}

.project-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.project-card:hover .project-image img { transform: scale(1.07); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.95) 0%,
    rgba(13,27,42,0.5) 40%,
    rgba(13,27,42,0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-card:hover .project-overlay,
.project-link:focus-visible .project-overlay { opacity: 1; }

.partner-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.82);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.project-card:hover .partner-badge { opacity: 0; }

.project-partner-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.project-partner-note a {
  color: var(--wood-light);
  text-decoration: none;
  font-weight: 500;
}
.project-partner-note a:hover { text-decoration: underline; }

.project-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wood-pale);
  display: block;
  margin-bottom: 5px;
}

.project-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 3px;
}

.project-detail {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.project-cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wood-pale);
  letter-spacing: 0.04em;
  display: block;
}

.section-cta {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost-dark:hover, .btn-ghost-dark:focus-visible {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  overflow: hidden;
}

.about-image-col {
  position: relative;
  background: var(--navy);
}

.about-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-image-accent {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 45%;
  height: 45%;
  border: 3px solid var(--wood-light);
  border-top-left-radius: var(--radius-xl);
  opacity: 0.5;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 40px;
  right: -28px;
  background: var(--wood-light);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  max-width: 140px;
  line-height: 1.35;
}

.about-content-col {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream-light);
}

.about-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 40px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--wood-light);
  margin-top: 2px;
}

.value-icon svg { width: 100%; height: 100%; }

.value-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.value-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 100px 0 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 80px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  background: var(--white);
  padding: 44px 32px;
  position: relative;
  transition: background var(--transition);
}

.why-card:hover { background: var(--cream-light); }

.why-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.why-card:hover .why-number { color: var(--wood-cream); }

.why-icon {
  width: 48px;
  height: 48px;
  color: var(--wood-light);
  margin-bottom: 20px;
}

.why-icon svg { width: 100%; height: 100%; }

.why-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.why-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
  background: var(--navy);
  margin: 0 -24px;
  padding: 80px 24px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.testimonials-section .section-eyebrow { color: var(--wood-pale); }

.testimonials-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 56px;
  text-align: center;
}

.testimonials-section .section-header {
  margin-bottom: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--transition), border-color var(--transition);
}

.testimonial:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,134,58,0.3);
}

.testimonial-stars {
  font-size: 1rem;
  color: var(--wood-pale);
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  flex: 1;
}

.testimonial footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

.testimonial-author {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wood-pale);
  letter-spacing: 0.02em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--navy);
  padding: 100px 0;
}

.section-header--light .section-eyebrow { color: var(--wood-pale); }
.section-header--light .section-title { color: var(--white); }
.section-header--light .section-subtitle { color: rgba(255,255,255,0.65); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wood-pale);
}

.contact-icon svg { width: 18px; height: 18px; }

.contact-detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-detail p, .contact-detail address {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

.contact-detail a {
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--wood-pale); }

.service-areas {
  margin-top: 12px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
}

.service-areas strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wood-pale);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.service-areas p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Simple contact layout */
.contact-simple {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-phone-link {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--wood-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 1rem 2.5rem;
  border: 2px solid var(--wood-light);
  border-radius: var(--radius-sm);
  margin-bottom: 3rem;
  line-height: 1;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.contact-phone-link:hover {
  background: var(--wood-light);
  color: var(--wood-dark);
  border-color: var(--wood-light);
}

.contact-details-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 48px;
  text-align: left;
}

/* Contact Form (kept for reference) */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.required { color: var(--wood); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E0D9CF;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--wood-light);
  box-shadow: 0 0 0 3px rgba(196,134,58,0.15);
  background: var(--white);
}

.form-group input.is-error,
.form-group textarea.is-error,
.form-group select.is-error {
  border-color: #e53e3e;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.select-wrapper { position: relative; }

.select-wrapper select {
  width: 100%;
  padding: 12px 42px 12px 16px;
  border: 1.5px solid #E0D9CF;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream-light);
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
  outline: none;
}

.select-wrapper select:focus {
  border-color: var(--wood-light);
  box-shadow: 0 0 0 3px rgba(196,134,58,0.15);
  background: var(--white);
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.field-error {
  font-size: 0.8125rem;
  color: #e53e3e;
  display: none;
}

.field-error.is-visible { display: block; }

/* Checkbox */
.form-checkbox { flex-direction: row; align-items: flex-start; gap: 12px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkmark {
  width: 20px;
  height: 20px;
  border: 1.5px solid #C4B8A8;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--cream-light);
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-label input:checked + .checkmark {
  background: var(--wood-light);
  border-color: var(--wood-light);
}

.checkbox-label input:checked + .checkmark::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
}

/* Form success */
.form-success {
  margin-top: 20px;
  padding: 20px 24px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #166534;
}

.form-success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #16a34a;
}

.form-success p {
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-mid); }

.footer-main {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--navy-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.footer-brand .nav-logo { margin-bottom: 20px; }

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  background: var(--wood-light);
  border-color: var(--wood-light);
  color: var(--white);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--wood-pale); }

.footer-address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-address p { margin-bottom: 6px; }

.footer-address a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-address a:hover { color: var(--wood-pale); }

.footer-phone-link {
  color: var(--wood-light) !important;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
}
.footer-phone-link:hover { color: var(--wood-pale) !important; }

.footer-hours {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: var(--wood-pale); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet large */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-content-col { padding: 60px 48px; }
}

/* Tablet */
@media (max-width: 900px) {
  :root { --nav-height: 68px; }

  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .nav-phone { display: none; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(44,44,44,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0 32px;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.0625rem;
    padding: 14px 32px;
    border-radius: 0;
  }

  .nav-link::after { display: none; }

  /* ── Slider: on tablet, content moves to center of frame (above stats) ── */
  .slide::before {
    background: linear-gradient(
      to top,
      rgba(13,27,42,0.92) 0%,
      rgba(13,27,42,0.45) 45%,
      rgba(13,27,42,0.15) 100%
    );
  }

  .slide-content {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
    padding: var(--nav-height) 48px 210px; /* 90 stats + 120 above */
  }

  .slide-title { font-size: clamp(1.875rem, 5vw, 2.75rem); }

  .slider-btn { width: 56px; height: 56px; }
  /* On tablet, the text column is 42% wide — keep both arrows in the image area */
  .slider-prev { left: 28px; }
  .slider-next { left: 96px; }
  .slider-scroll-indicator { right: 24px; bottom: 104px; }
  .slider-nav-bar { bottom: 100px; }

  /* Stats bar: hide CTA on tablet */
  .slider-stat-cta { display: none; }

  .projects-grid { grid-template-columns: repeat(2, 1fr); }

  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card--large { grid-row: span 1; }
  .project-card--large .project-image { min-height: 280px; }

  .about-section { grid-template-columns: 1fr; }
  .about-image-col { min-height: 400px; }
  .about-badge { right: 24px; }
  .about-content-col { padding: 60px 32px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { display: none; }

  /* ── Slider mobile: stack layout ── */
  .slider-wrapper { height: 100svh; min-height: 580px; }

  .slide-content {
    padding: calc(var(--nav-height) + 12px) 24px 230px; /* stats 80px + counter 40px + spacing */
  }

  .slide-desc { font-size: 0.875rem; }

  /* On mobile the text goes full-width — drop arrows to the bottom zone, below all copy */
  .slider-btn {
    width: 44px;
    height: 44px;
    top: auto;
    bottom: 140px;
    transform: none;
  }
  .slider-btn:hover, .slider-btn:focus-visible {
    transform: scale(1.08);
  }
  .slider-btn svg { width: 18px; height: 18px; }
  .slider-prev { left: 16px; }
  .slider-next { right: 16px; left: auto; }

  .slider-scroll-indicator { display: none; }

  .slider-nav-bar {
    bottom: 88px;
    gap: 12px;
  }

  .slider-counter { display: none; }

  .dot { width: 10px; }
  .dot.active { width: 24px; }

  /* Stats bar compact on mobile */
  .slider-stats-bar {
    height: 80px;
    padding: 0 16px;
    gap: 0;
  }

  .slider-stat-number { font-size: 1.25rem; }
  .slider-stat-label { font-size: 0.5625rem; letter-spacing: 0.06em; }
  .slider-stat-divider { margin: 0 4px; }
  .slider-stat-cta { display: none; }

  .projects-grid { grid-template-columns: 1fr 1fr; }
  .section-cta { flex-direction: column; align-items: center; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--large { grid-row: auto; }
  .project-overlay { opacity: 1; }

  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .testimonials-section { padding: 60px 16px; }
  .testimonials-section .container { padding: 0; }

  .about-content-col { padding: 48px 24px; }

  /* Fix 4: About badge — move below photo on mobile so it doesn't overlap */
  .about-badge {
    position: static;
    display: block;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 18px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  }

  /* Fix 3: Contact section — more breathing room on mobile */
  .contact-section { padding: 72px 0 80px; }
  .contact-phone-link {
    display: block;
    width: 100%;
    font-size: 2.4rem;
    padding: 1.2rem 1rem;
    margin-bottom: 2.5rem;
    box-sizing: border-box;
  }
  .contact-details-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .contact-detail { margin-bottom: 0; }

  .btn { padding: 13px 22px; font-size: 0.875rem; }
}

/* High contrast / dark mode support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
