/* Sawyer Brothers — Proxima-inspired redesign
   Fonts: Figtree (body) + Sora (display) — clean, modern, geometric */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  /* Refined palette — keep SB brand red, add sophistication */
  --ink: #14181b;
  --ink-2: #1e2428;
  --ink-3: #2a3136;
  --paper: #faf8f4;
  --paper-2: #f0ece4;
  --white: #ffffff;
  --muted: #6b7177;
  --muted-2: #8a9096;
  --line: rgba(20, 24, 27, 0.10);
  --line-light: rgba(255, 255, 255, 0.12);
  --red: #c0392b;
  --red-dark: #962d22;
  --red-bright: #e04a3a;
  --sand: #d4c9b3;
  --max: 1280px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --display: 'Sora', 'Figtree', sans-serif;
  --body: 'Figtree', 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(20,24,27,0.08), 0 1px 2px rgba(20,24,27,0.04);
  --shadow-md: 0 4px 16px rgba(20,24,27,0.10), 0 2px 6px rgba(20,24,27,0.06);
  --shadow-lg: 0 12px 40px rgba(20,24,27,0.14), 0 4px 12px rgba(20,24,27,0.08);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
section { scroll-margin-top: 80px; }

/* ====== Skip link & demo ribbon ====== */
.skip-link {
  position: fixed; z-index: 2000; left: 16px; top: -100px;
  background: var(--white); color: var(--ink); padding: 10px 18px;
  border-radius: var(--radius-sm); border: 2px solid var(--red);
  font-weight: 600; font-size: 0.85rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

.demo-ribbon {
  background: var(--ink); color: #fff; text-align: center;
  padding: 8px 20px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.demo-ribbon::before {
  content: '◆'; margin-right: 10px; color: var(--red-bright); font-size: 0.65rem;
}

/* ====== Header / Navigation ====== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 48px)); margin: 0 auto;
  min-height: 72px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--ink); color: white;
  border-radius: var(--radius-sm);
  font-family: var(--display); font-size: 1.1rem;
  letter-spacing: 0.04em; line-height: 1; font-weight: 700;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.brand:hover .brand-mark { transform: scale(1.05); background: var(--red); }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong {
  font-family: var(--display); font-size: 1.1rem; letter-spacing: -0.01em;
  font-weight: 700; color: var(--ink);
}
.brand-copy small {
  margin-top: 3px; color: var(--muted); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav a {
  color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: 0.92rem;
  position: relative; transition: color 0.2s;
}
.primary-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--red); border-radius: 1px; transition: width 0.3s var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { width: 100%; }
.nav-call {
  padding: 10px 18px !important; background: var(--red); color: #fff !important;
  border-radius: var(--radius) !important; font-weight: 600 !important;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s;
}
.nav-call::after { display: none; }
.nav-call:hover { background: var(--red-dark) !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.menu-toggle {
  display: none; color: var(--ink); background: transparent;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  min-width: 44px; min-height: 44px; font-weight: 600; font-size: 0.85rem;
  transition: background 0.2s;
}
.menu-toggle:hover { background: var(--paper-2); }

/* ====== Hero ====== */
.hero {
  min-height: 100vh; min-height: 100svh;
  position: relative; display: flex; align-items: flex-end;
  color: white; overflow: hidden; background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 44%;
  filter: saturate(0.75) contrast(1.08) brightness(0.85);
  transform: scale(1.08);
  will-change: transform;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,14,16,0.92) 0%, rgba(10,14,16,0.6) 50%, rgba(10,14,16,0.15) 85%),
              linear-gradient(0deg, rgba(10,14,16,0.75), transparent 50%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: min(var(--max), calc(100% - 48px)); margin: 0 auto;
  padding: 120px 0 70px;
}
.eyebrow {
  margin: 0 0 20px; color: var(--red-bright); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero .eyebrow { color: #f0a399; }
h1, h2, h3 {
  font-family: var(--display); margin: 0; font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
}
h1 {
  max-width: 850px; font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.0;
}
.hero-lede {
  max-width: 600px; margin: 24px 0 36px; color: #e4e8e6;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 400; line-height: 1.6;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Buttons — Proxima-style: 12px radius, clean, tactile */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 24px;
  border: 1px solid transparent; border-radius: var(--radius);
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.2s, box-shadow 0.25s var(--ease), color 0.2s;
}
.btn-primary {
  background: var(--red); color: white;
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.3);
}
.btn-primary:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
}
.btn-ghost {
  border-color: rgba(255,255,255,0.3); color: white;
  backdrop-filter: blur(8px); background: rgba(255,255,255,0.06);
}
.btn-ghost:hover { background: white; color: var(--ink); border-color: white; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 14px 36px; margin-top: 56px;
  color: #cdd3d1; font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-facts span { display: inline-flex; align-items: center; gap: 10px; }
.hero-facts span::before {
  content: ''; width: 6px; height: 6px; background: var(--red-bright); border-radius: 50%;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.4); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue::before {
  content: ''; width: 4px; height: 8px; background: rgba(255,255,255,0.7);
  border-radius: 2px; animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ====== Trust Band ====== */
.trust-band {
  background: var(--ink); color: white;
  border-top: 1px solid var(--line-light);
}
.trust-grid {
  width: min(var(--max), calc(100% - 48px)); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
}
.trust-item {
  min-height: 128px; padding: 28px 28px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--line-light);
}
.trust-item:first-child { border-left: 1px solid var(--line-light); }
.trust-item strong {
  font-family: var(--display); font-size: 1.6rem; font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em;
}
.trust-item span { color: #aab2b4; font-size: 0.82rem; margin-top: 8px; font-weight: 400; }

/* ====== Sections ====== */
.section { padding: 120px 0; }
.section-inner { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section-head {
  display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 64px;
  align-items: end; margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem); letter-spacing: -0.03em; line-height: 1.05;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.1rem; max-width: 580px; line-height: 1.6; }

/* ====== Services ====== */
.services { background: var(--white); }
.service-ledger { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 64px minmax(240px, 0.9fr) 1.1fr 200px;
  gap: 28px; align-items: center; min-height: 160px;
  border-bottom: 1px solid var(--line); padding: 28px 0;
  transition: padding-left 0.35s var(--ease);
}
.service-row:hover { padding-left: 12px; }
.service-number {
  font-family: var(--display); color: var(--red); font-size: 1.1rem; font-weight: 700;
}
.service-row h3 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 700; }
.service-row p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.service-thumb {
  width: 100%; height: 110px; object-fit: cover; border-radius: var(--radius-sm);
  filter: saturate(0.85); transition: filter 0.3s, transform 0.4s var(--ease);
}
.service-row:hover .service-thumb { filter: saturate(1); transform: scale(1.03); }

/* ====== Project Feature ====== */
.project-feature { background: var(--paper-2); }
.feature-grid {
  display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 14px; min-height: 580px;
}
.feature-main, .feature-stack figure {
  margin: 0; position: relative; overflow: hidden;
  background: #ccd0ce; border-radius: var(--radius);
}
.feature-main img, .feature-stack img { width: 100%; height: 100%; object-fit: cover; }
.feature-main img { filter: saturate(0.85) contrast(1.03); }
.feature-main figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 70px 28px 26px;
  color: white;
  background: linear-gradient(transparent, rgba(10,14,16,0.85));
  border-radius: 0 0 var(--radius) var(--radius);
}
.feature-main figcaption strong {
  font-family: var(--display); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em;
}
.feature-main figcaption span { display: block; color: #dce1df; margin-top: 6px; font-size: 0.9rem; }
.feature-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 14px; }
.feature-stack figure::after {
  content: ''; position: absolute; inset: auto 0 0; height: 45%;
  background: linear-gradient(transparent, rgba(10,14,16,0.6));
  border-radius: 0 0 var(--radius) var(--radius);
}
.feature-tag {
  position: absolute; z-index: 2; left: 16px; bottom: 14px; color: white;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
}

/* ====== Quote Break ====== */
.quote-break { background: var(--red); color: white; position: relative; overflow: hidden; }
.quote-break::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 60%);
}
.quote-inner {
  width: min(1040px, calc(100% - 48px)); margin: 0 auto; padding: 96px 0;
  position: relative; z-index: 1;
}
.quote-mark {
  font-family: Georgia, serif; font-size: 5rem; line-height: 0.5; opacity: 0.35;
}
.quote-inner blockquote {
  margin: 28px 0 24px; font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.5rem); line-height: 1.12; font-weight: 700;
  letter-spacing: -0.02em;
}
.quote-inner cite {
  font-style: normal; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.82rem;
}

/* ====== Gallery ====== */
.gallery-section { background: var(--ink); color: white; }
.gallery-section .section-head p { color: #b8c1c3; }
.gallery-section h2 { color: white; }
.gallery-tools { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-btn {
  min-height: 42px; padding: 9px 18px; background: transparent; color: #d9dedd;
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  font-weight: 500; font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: white; color: var(--ink); border-color: white;
}
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; gap: 10px;
}
.gallery-item {
  margin: 0; grid-column: span 3; height: 220px; overflow: hidden;
  position: relative; background: #303a3e; border-radius: var(--radius-sm);
}
.gallery-item.wide { grid-column: span 6; }
.gallery-item.tall { height: 450px; grid-row: span 2; }
.gallery-item[hidden] { display: none !important; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s; filter: saturate(0.82);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 50px 14px 12px;
  background: linear-gradient(transparent, rgba(8,12,14,0.85));
  color: #fff; font-size: 0.78rem; font-weight: 600;
  opacity: 0; transition: opacity 0.3s; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.gallery-item:hover figcaption, .gallery-item:focus-within figcaption { opacity: 1; }
.gallery-more { margin-top: 36px; text-align: center; }

/* ====== Video Section ====== */
.video-section { background: var(--white); }
.video-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center;
}
.video-poster {
  position: relative; border: 0; padding: 0; width: 100%; min-height: 480px;
  overflow: hidden; background: var(--ink); color: white; border-radius: var(--radius-lg);
}
.video-poster img {
  width: 100%; height: 100%; min-height: 480px; object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
}
.play {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; display: grid; place-items: center;
  background: var(--red); font-size: 1.6rem; border-radius: 50%;
  transition: transform 0.3s var(--ease), background 0.2s;
  box-shadow: 0 8px 32px rgba(192,57,43,0.5);
}
.video-poster:hover .play { transform: translate(-50%,-50%) scale(1.1); background: var(--red-bright); }
.video-copy h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.video-copy p { color: var(--muted); font-size: 1.08rem; line-height: 1.6; }
.video-frame { width: 100%; aspect-ratio: 16/9; border: 0; min-height: 480px; border-radius: var(--radius-lg); }

/* ====== Testimonials ====== */
.testimonials { background: var(--paper-2); }
.testimonial-grid { columns: 2; column-gap: 44px; }
.testimonial {
  break-inside: avoid; margin: 0 0 44px; padding: 0 0 32px;
  border-bottom: 1px solid var(--line);
}
.testimonial p {
  margin: 0 0 18px; font-family: Georgia, serif; font-size: 1.12rem; line-height: 1.65;
  color: var(--ink-2);
}
.testimonial cite {
  font-style: normal; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.78rem; color: var(--red-dark);
}

/* ====== Contact ====== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 80px; }
.contact-copy h2 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
.contact-copy > p { color: var(--muted); font-size: 1.1rem; max-width: 480px; line-height: 1.6; }
.contact-actions { margin-top: 32px; }
.contact-list { border-top: 1px solid var(--line); }
.contact-person {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 20px; padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-person strong {
  font-family: var(--display); font-size: 1.2rem; font-weight: 700;
}
.contact-person a { display: block; color: var(--ink); text-decoration: none; transition: color 0.2s; }
.contact-person a:hover { color: var(--red); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.location {
  background: var(--paper); padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.location span {
  display: block; color: var(--red-dark); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px;
}
.location a { text-decoration: none; color: var(--ink-2); transition: color 0.2s; }
.location a:hover { color: var(--red); }

/* ====== Footer ====== */
.site-footer { background: #0e1214; color: #aeb6b8; padding: 64px 0 32px; }
.footer-grid {
  width: min(var(--max), calc(100% - 48px)); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 56px;
}
.footer-brand {
  color: white; font-family: var(--display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em;
}
.footer-grid h3 {
  color: white; font-family: var(--body); font-size: 0.74rem;
  letter-spacing: 0.12em; font-weight: 700; text-transform: uppercase; margin-bottom: 18px;
}
.footer-grid a {
  display: block; margin: 8px 0; color: #c2c8ca; text-decoration: none;
  font-size: 0.92rem; transition: color 0.2s;
}
.footer-grid a:hover { color: white; }
.footer-bottom {
  width: min(var(--max), calc(100% - 48px)); margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid var(--line-light);
  font-size: 0.78rem; display: flex; justify-content: space-between; gap: 20px;
}

/* ====== Policy pages ====== */
.policy { min-height: 70vh; padding: 100px 0; background: var(--white); }
.policy-inner { width: min(760px, calc(100% - 48px)); margin: 0 auto; }
.policy h1 { color: var(--ink); font-size: clamp(2.4rem, 5vw, 4rem); }
.policy h2 { font-size: 1.5rem; margin-top: 42px; }
.policy p, .policy li { color: #465156; }
.back-link {
  display: inline-block; margin-bottom: 30px; color: var(--red-dark);
  font-weight: 600; text-decoration: none;
}
.back-link:hover { color: var(--red); }

/* ====== Focus state ====== */
:focus-visible { outline: 3px solid #f0b22b; outline-offset: 3px; border-radius: 2px; }

/* ============================================================
   ANIMATION SYSTEM — GSAP reveal hooks
   ============================================================ */

/* Reveal — fade up on scroll */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Stagger children */
.reveal-stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }

/* Clip-mask reveal (for headings) */
.reveal-clip { overflow: hidden; display: inline-block; }
.reveal-clip > * {
  display: inline-block; transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
}
.reveal-clip.is-visible > * { transform: none; }

/* Hero entrance animations */
.hero-animate {
  opacity: 0; transform: translateY(20px);
  animation: heroIn 1s var(--ease-out) forwards;
}
.hero-animate.d1 { animation-delay: 0.15s; }
.hero-animate.d2 { animation-delay: 0.3s; }
.hero-animate.d3 { animation-delay: 0.45s; }
.hero-animate.d4 { animation-delay: 0.6s; }

@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

/* Image parallax wrapper */
.parallax-wrap { overflow: hidden; }
.parallax-img { will-change: transform; }

/* Scale-on-enter for feature images */
.scale-in {
  transform: scale(1.12);
  transition: transform 1.4s var(--ease-out);
  will-change: transform;
}
.scale-in.is-visible { transform: scale(1); }

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .primary-nav {
    position: fixed; left: 0; right: 0; top: 72px; padding: 20px 24px 32px;
    background: var(--paper); display: none; flex-direction: column; align-items: stretch; gap: 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .nav-call { text-align: center; margin-top: 12px; border-radius: var(--radius) !important; }
  .menu-toggle { display: block; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 1px solid var(--line-light); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line-light); }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .service-row { grid-template-columns: 48px 1fr 160px; }
  .service-row p { grid-column: 2 / 3; }
  .service-thumb { grid-column: 3; grid-row: 1 / span 2; }
  .feature-grid, .video-grid, .contact-grid { grid-template-columns: 1fr; }
  .video-grid, .contact-grid { gap: 48px; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.wide { grid-column: span 12; }
  .section { padding: 88px 0; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .nav-wrap { width: min(100% - 32px, var(--max)); min-height: 64px; }
  .primary-nav { top: 64px; }
  .brand-copy small { display: none; }
  .hero { min-height: 100svh; }
  .hero-media::after {
    background: linear-gradient(0deg, rgba(10,14,16,0.95) 10%, rgba(10,14,16,0.5) 70%, rgba(10,14,16,0.2) 100%);
  }
  .hero-inner { width: min(100% - 32px, var(--max)); padding: 140px 0 60px; }
  h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-facts { margin-top: 36px; gap: 10px 22px; }
  .trust-grid { width: 100%; }
  .trust-item { min-height: 104px; padding: 18px 16px; }
  .trust-item strong { font-size: 1.2rem; }
  .section { padding: 72px 0; }
  .section-inner { width: min(100% - 32px, var(--max)); }
  .service-row { grid-template-columns: 36px 1fr; gap: 12px; padding: 24px 0; }
  .service-row p, .service-thumb { grid-column: 2; }
  .service-thumb { grid-row: auto; height: 160px; margin-top: 8px; }
  .feature-grid { min-height: 0; grid-template-columns: 1fr; }
  .feature-main { height: 360px; border-radius: var(--radius); }
  .feature-stack { grid-template-columns: 1fr 1fr; grid-template-rows: 200px; }
  .quote-inner { padding: 72px 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item, .gallery-item.wide { grid-column: span 1; height: 180px; }
  .gallery-item.tall { height: 360px; }
  .video-poster, .video-poster img, .video-frame { min-height: 280px; }
  .testimonial-grid { columns: 1; }
  .contact-person { grid-template-columns: 1fr; gap: 5px; }
  .location-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .gallery { gap: 6px; }
  .gallery-item, .gallery-item.wide, .gallery-item.tall { height: 150px; grid-row: auto; }
  .feature-stack { grid-template-columns: 1fr; grid-template-rows: 200px 200px; }
  .cta-row .btn { width: 100%; }
}

/* ====== Reduced motion ====== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal, .reveal-stagger > *, .reveal-clip > *, .scale-in, .hero-animate {
    opacity: 1 !important; transform: none !important;
  }
  .hero-media img { transform: scale(1) !important; }
}
