/* Demo Construction Ltd. — premium contractor template */
:root {
  --ink: #0f0f0f;
  --ink-soft: #1a1a1a;
  --ink-line: #2a2a2a;
  --bone: #f4f1ec;
  --bone-2: #e8e3da;
  --tan: #d4a574;
  --tan-deep: #b8895a;
  --tan-glow: rgba(212, 165, 116, 0.18);
  --muted: rgba(244, 241, 236, 0.62);
  --muted-ink: rgba(15, 15, 15, 0.6);
  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--ink); color: var(--bone); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* Page palette themes ---------------- */
.theme-dark { background: var(--ink); color: var(--bone); }
.theme-light { background: var(--bone); color: var(--ink); }
.theme-light .invert-text { color: var(--ink); }

/* Typography ---------------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-wrap: pretty;
}
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.mono { font-family: var(--mono); }

/* Container ---------------- */
.wrap {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* Buttons ---------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 26px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 500;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.btn .arrow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: currentColor;
  transition: transform 0.5s var(--ease);
}
.btn .arrow svg { width: 12px; height: 12px; transition: transform 0.5s var(--ease); }
.btn:hover .arrow { transform: rotate(-45deg); }

.btn-primary {
  background: var(--tan);
  color: var(--ink);
}
.btn-primary:hover { background: #e3b683; }
.btn-primary .arrow { background: var(--ink); }
.btn-primary .arrow svg { color: var(--tan); }

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(244, 241, 236, 0.18);
}
.btn-ghost:hover { border-color: var(--tan); color: var(--tan); }
.btn-ghost .arrow { background: var(--bone); }
.btn-ghost .arrow svg { color: var(--ink); }

.btn-dark {
  background: var(--ink);
  color: var(--bone);
}
.btn-dark:hover { background: #1c1c1c; }
.btn-dark .arrow { background: var(--tan); }
.btn-dark .arrow svg { color: var(--ink); }

/* Section frame ---------------- */
.section {
  padding: 120px 0;
  position: relative;
}
.section-tight { padding: 80px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(40px, 5vw, 68px);
}
.section-head p {
  max-width: 380px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.theme-light .section-head p { color: var(--muted-ink); }

/* Reveal animation ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(244, 241, 236, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--tan);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.brand small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  line-height: 1.1;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(244, 241, 236, 0.04);
  border: 1px solid rgba(244, 241, 236, 0.08);
  padding: 6px;
  border-radius: 999px;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(244, 241, 236, 0.78);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-links a:hover { background: rgba(244, 241, 236, 0.07); }  /* color now controlled by the stronger .nav rules above */
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-phone .dot {
  width: 6px; height: 6px; border-radius: 999px; background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  animation: pulse 2s infinite var(--ease);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

/* Mobile nav toggle & menu */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 236, 0.18);
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  z-index: 10;
  transition: all 0.3s var(--ease);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--bone);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(244, 241, 236, 0.1);
  z-index: 99;
  padding: 16px 24px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-inner a {
  padding: 14px 0;
  font-size: 15px;
  color: var(--bone);
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
}
.mobile-menu-inner a:last-of-type { border-bottom: none; }
.mobile-menu-inner .mobile-phone {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  padding: 12px 0 8px;
}
.mobile-menu-inner .mobile-cta {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}
.mobile-menu-inner .mobile-cta .arrow { margin-left: 8px; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 64px;
  overflow: hidden;
  background: #0a0a0a;
}

/* Full-bleed cinematic video (the hero section animation now owns the full visual field) */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.95) contrast(1.03) brightness(0.92);
}

/* Editorial left panel + bottom vignette — directly inspired by sample_hero.png */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(90deg, rgba(15,15,15,0.82) 0%, rgba(15,15,15,0.72) 32%, rgba(15,15,15,0.28) 52%, rgba(15,15,15,0.06) 68%, transparent 78%),
    linear-gradient(180deg, transparent 45%, rgba(10,10,10,0.45) 72%, rgba(10,10,10,0.82) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  min-height: calc(100vh - 160px);
  position: relative;
  z-index: 2;
}
.hero-copy { 
  padding-bottom: 32px; 
  padding-right: 20px;
  max-width: 620px;
}
.hero h1 {
  font-size: clamp(64px, 8.5vw, 124px);
  margin: 28px 0 28px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease) forwards;
}
.hero h1 .line:nth-child(2) span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.24s; }
@keyframes rise { to { transform: none; } }

.hero-sub {
  max-width: 460px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Right-side floating accent card (evokes the hard-hat + plans prop area in sample_hero.png) */
.hero-aside {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 28px;
  z-index: 2;
}
.hero-project-card {
  position: relative;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(244, 241, 236, 0.1);
  border-radius: var(--radius-lg);
  padding: 18px 20px 20px;
  max-width: 280px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-project-card .hero-tag {
  position: static !important;
  left: auto !important;
  top: auto !important;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 6px;
  font-size: 10px;
  padding: 8px 12px;
}
.hero-project-card .project-name {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 2px;
}
.hero-project-card .project-loc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 10px;
}
.hero-project-card .scroll-pill {
  align-self: flex-start;
  margin-top: 4px;
}

/* Sample-inspired prop stamp (like the hard-hat logo in sample_hero.png) */
.prop-stamp {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--tan);
  background: rgba(15,15,15,0.6);
  border: 1px solid rgba(212,165,116,0.25);
  padding: 2px 7px 1px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

/* === Hero section text color overrides (requested white text) === */
.hero .hero-copy h1,
.hero .hero-copy .eyebrow {
  color: #fff;
}

.hero .hero-sub {
  color: #fff;
}

.hero-project-card .project-name,
.hero-project-card .project-loc {
  color: #fff;
  opacity: 0.85;
}

/* Force nav text white over the dark hero (highest priority for this cinematic treatment) */
.nav .brand,
.nav .nav-links a,
.nav .brand small {
  color: #fff !important;
}
.nav .nav-links a:hover {
  color: var(--tan) !important;
  background: rgba(255, 255, 255, 0.12);
}

/* Nav phone number slightly softer white */
.nav .nav-phone {
  color: rgba(255, 255, 255, 0.72);
}

/* Mobile nav menu items (when open over dark content) */
.mobile-menu-inner a,
.mobile-menu-inner .mobile-phone {
  color: #fff;
}

/* Extra strength for "View our projects" button text in hero (in case of specificity issues) */
.hero .hero-ctas .btn-ghost,
.hero .btn-ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28);
}
.hero .btn-ghost .arrow {
  background: #fff;
}
.hero .btn-ghost .arrow svg {
  color: var(--ink);
}

.hero-tag {
  position: absolute;
  left: 24px;
  top: 24px;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 241, 236, 0.12);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  z-index: 3;
}
.hero-tag .pip { width: 6px; height: 6px; border-radius: 999px; background: var(--tan); }

.hero-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--bone);
  z-index: 3;
}
.hero-meta .project-name {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}
.hero-meta .project-loc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}
.hero-meta .scroll-pill {
  background: var(--bone);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-stats {
  position: relative;
  z-index: 3;
  margin-top: 40px;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244, 241, 236, 0.08);
  border-block: 1px solid rgba(244, 241, 236, 0.08);
}
.hero-stat {
  background: var(--ink);
  padding: 22px 24px;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero-stat-num sup {
  color: var(--tan);
  font-size: 22px;
  font-family: var(--mono);
}
.hero-stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* big watermark behind hero */
.watermark {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(244, 241, 236, 0.025);
  font-size: clamp(220px, 28vw, 420px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  bottom: -60px;
  right: -40px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ---- MARQUEE TRUST BAR ---- */
.marquee {
  padding: 28px 0;
  background: var(--ink-soft);
  border-block: 1px solid var(--ink-line);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marqueeMove 38s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--bone);
}
.marquee-item .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--tan);
}
.marquee-item .it { font-style: italic; color: var(--tan); }

/* ---- SERVICES ---- */
.services { background: var(--bone); color: var(--ink); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card {
  position: relative;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  padding: 24px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
  z-index: 0;
}
.service-card:hover { color: var(--bone); border-color: var(--ink); transform: translateY(-6px); }
.service-card:hover::before { transform: none; }
.service-card > * { position: relative; z-index: 1; }
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted-ink);
  transition: color 0.5s var(--ease);
}
.service-card:hover .service-num { color: var(--tan); }
.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--bone);
  display: grid;
  place-items: center;
  margin-top: 20px;
  transition: background 0.5s var(--ease);
}
.service-card:hover .service-icon-box { background: var(--tan); }
.service-icon-box svg { width: 30px; height: 30px; }
.service-title {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
  margin-top: 28px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 13.5px;
  color: var(--muted-ink);
  margin-top: 14px;
  line-height: 1.5;
  transition: color 0.5s var(--ease);
}
.service-card:hover .service-desc { color: rgba(244, 241, 236, 0.7); }
.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-foot .arrow-mini {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease);
}
.service-card:hover .arrow-mini { background: var(--tan); border-color: var(--tan); color: var(--ink); transform: rotate(-45deg); }

/* ---- PROJECTS ---- */
.projects { padding-top: 130px; }
.proj-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.proj-filter {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 236, 0.14);
  color: var(--muted);
  transition: all 0.35s var(--ease);
}
.proj-filter:hover { color: var(--bone); border-color: var(--tan); }
.proj-filter.active { background: var(--tan); border-color: var(--tan); color: var(--ink); }
.proj-filter .count { opacity: 0.6; margin-left: 6px; }
.proj-filter.active .count { opacity: 0.7; }

.proj-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.proj-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  transition: transform 0.45s var(--ease);
}
.proj-card.size-lg { grid-column: span 6; aspect-ratio: 5 / 4; }
.proj-card.size-md { grid-column: span 4; }
.proj-card.size-sm { grid-column: span 3; aspect-ratio: 1 / 1; }
.proj-card.size-wide { grid-column: span 8; aspect-ratio: 16 / 9; }

.proj-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease);
}
.proj-card:hover .proj-img { transform: scale(1.06); }
.proj-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.0) 30%, rgba(15,15,15,0.78) 100%);
  pointer-events: none;
}
.proj-content {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  color: var(--bone);
}
.proj-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.05;
}
.proj-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.7);
  margin-top: 8px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.proj-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(15,15,15,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(244,241,236,0.16);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--bone);
}
.proj-arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--bone);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease);
}
.proj-card:hover .proj-arrow { background: var(--tan); transform: rotate(-45deg); }

/* ---- BEFORE / AFTER ---- */
.compare-block {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.compare-copy h2 { font-size: clamp(40px, 4vw, 58px); }
.compare-copy p { color: var(--muted); margin-top: 20px; font-size: 15px; line-height: 1.6; }
.compare-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 36px;
  background: rgba(244,241,236,0.08);
  border: 1px solid rgba(244,241,236,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-stat {
  background: var(--ink);
  padding: 22px;
}
.compare-stat .v {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}
.compare-stat .v .pct { color: var(--tan); font-family: var(--mono); font-size: 22px; vertical-align: super; margin-left: 2px; }
.compare-stat .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
.compare-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
  cursor: ew-resize;
  user-select: none;
}
.compare-side {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.compare-side.after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.compare-label {
  position: absolute;
  top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(15,15,15,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(244,241,236,0.15);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--bone);
  pointer-events: none;
}
.compare-label.lbl-before { left: 20px; }
.compare-label.lbl-after { right: 20px; }
.compare-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--tan);
  left: var(--pos, 50%);
  transform: translateX(-50%);
  pointer-events: none;
}
.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--tan);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
  pointer-events: none;
  transition: scale 0.3s var(--ease);
}
.compare-frame:hover .compare-handle { scale: 1.08; }

/* ---- PROCESS ---- */
.process { background: var(--bone); color: var(--ink); padding-bottom: 140px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(15,15,15,0.12);
}
.process-step {
  padding: 36px 28px 36px 0;
  border-right: 1px solid rgba(15,15,15,0.12);
  position: relative;
  cursor: default;
}
.process-step:last-child { border-right: none; }
.process-step .pn {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
  position: relative;
  display: inline-block;
}
.process-step .pn::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--tan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.process-step:hover .pn::after { transform: scaleX(1); }
.process-step h4 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  margin-top: 36px;
  letter-spacing: -0.01em;
}
.process-step p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-ink);
  max-width: 240px;
}
.process-step .tag {
  display: inline-flex;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,15,15,0.05);
  color: var(--ink);
}

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 140px 0; }
.t-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 80px;
  align-items: center;
}
.t-stage {
  position: relative;
  min-height: 360px;
}
.t-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.t-card.active { opacity: 1; transform: none; pointer-events: auto; }
.t-quote-mark {
  font-family: var(--serif);
  font-size: 90px;
  line-height: 0.6;
  color: var(--tan);
  font-style: italic;
}
.t-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 28px 0;
}
.t-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  background-color: var(--tan);
}
.t-name {
  font-family: var(--serif);
  font-size: 18px;
}
.t-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.t-nav {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  align-items: center;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(244,241,236,0.18);
  transition: all 0.3s var(--ease);
}
.t-dot.active { background: var(--tan); width: 28px; }
.t-counter {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-left: auto;
}
.t-arrows { display: flex; gap: 8px; margin-left: 16px; }
.t-arrows button {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(244,241,236,0.18);
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.t-arrows button:hover { border-color: var(--tan); color: var(--tan); }

/* ---- FAQ ---- */
.faq { background: var(--ink-soft); border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); }
.faq-grid { display: grid; grid-template-columns: 0.5fr 1fr; gap: 80px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-bottom: 1px solid rgba(244,241,236,0.08);
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid rgba(244,241,236,0.08); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  gap: 30px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: color 0.3s var(--ease);
}
.faq-item:hover .faq-q { color: var(--tan); }
.faq-item.open .faq-q { color: var(--tan); }
.faq-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(244,241,236,0.18);
  display: grid;
  place-items: center;
  transition: all 0.4s var(--ease);
}
.faq-item.open .faq-toggle { background: var(--tan); border-color: var(--tan); color: var(--ink); }
.faq-toggle svg { transition: transform 0.4s var(--ease); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease), opacity 0.4s var(--ease);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding-bottom: 26px;
  opacity: 1;
}

/* ---- CTA / BOOK CONSULTATION ---- */
.cta {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-frame {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bone);
  color: var(--ink);
  padding: 80px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
}
.cta-frame .bgsymbol {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  bottom: -120px;
  right: -40px;
  font-size: clamp(280px, 30vw, 460px);
  line-height: 0.8;
  color: rgba(15,15,15,0.045);
  pointer-events: none;
}
.cta h2 {
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cta p {
  max-width: 360px;
  color: var(--muted-ink);
  font-size: 15px;
  line-height: 1.55;
  margin-top: 24px;
}
.cta-form {
  background: var(--ink);
  color: var(--bone);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  z-index: 2;
}
.cta-form h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.cta-form .sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.fields { display: grid; gap: 14px; margin-top: 24px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,241,236,0.18);
  padding: 10px 0;
  color: var(--bone);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus { border-bottom-color: var(--tan); }
.field select option { background: var(--ink); color: var(--bone); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.service-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.service-pill {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244,241,236,0.18);
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.service-pill:hover { color: var(--bone); border-color: var(--bone); }
.service-pill.selected { background: var(--tan); color: var(--ink); border-color: var(--tan); }

.cta-form .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* ---- FOOTER ---- */
.footer {
  padding: 80px 0 40px;
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
}
.footer-brand p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.footer ul a:hover { color: var(--bone); }
.footer-bot {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-bot a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer-bot a:hover {
  color: var(--tan);
  text-decoration: underline;
}

/* sticky book CTA */
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  transform: translateY(140%);
  transition: transform 0.6s var(--ease);
}
.sticky-cta.show { transform: none; }

/* ===================================================================
   LIGHT THEME — white background default
   =================================================================== */
[data-theme="light"] {
  --ink: #0f1010;
  --ink-soft: #ffffff;
  --ink-line: rgba(15, 15, 15, 0.10);
  --bone: #f7f5f0;
  --bone-2: #ece9e2;
  --muted: rgba(15, 15, 15, 0.58);
  --muted-ink: rgba(15, 15, 15, 0.58);
}
[data-theme="light"] html,
[data-theme="light"] body { background: #fbfaf7; color: var(--ink); }

/* Nav */
[data-theme="light"] .nav.scrolled {
  background: rgba(251, 250, 247, 0.78);
  border-bottom-color: rgba(15, 15, 15, 0.06);
}
[data-theme="light"] .nav-links {
  background: rgba(15, 15, 15, 0.03);
  border-color: rgba(15, 15, 15, 0.08);
}
/* === Light theme nav handling for cinematic dark hero ===
   We keep nav text WHITE by default (even in light global theme) while the
   fixed nav sits over the dark video hero. Only after scrolling down
   (when .scrolled is present and you're over light page content) do we
   switch to dark text. */
[data-theme="light"] .nav.scrolled .nav-links a {
  color: rgba(15, 15, 15, 0.85) !important;
}
[data-theme="light"] .nav.scrolled .nav-links a:hover {
  color: var(--ink) !important;
  background: rgba(15, 15, 15, 0.06);
}
[data-theme="light"] .nav.scrolled .nav-phone {
  color: var(--muted-ink);
}

[data-theme="light"] .nav-toggle span { background: var(--ink); }
[data-theme="light"] .nav-toggle { border-color: rgba(15,15,15,0.16); }
[data-theme="light"] .mobile-menu {
  background: rgba(251,250,247,0.96);
  border-top-color: rgba(15,15,15,0.08);
}
[data-theme="light"] .mobile-menu-inner a { color: var(--ink); border-bottom-color: rgba(15,15,15,0.08); }
[data-theme="light"] .mobile-menu-inner .mobile-phone { color: var(--muted-ink); }

/* Buttons */
[data-theme="light"] .btn-ghost {
  color: var(--ink);
  border-color: rgba(15, 15, 15, 0.16);
}
[data-theme="light"] .btn-ghost:hover { border-color: var(--tan-deep); color: var(--tan-deep); }
[data-theme="light"] .btn-ghost .arrow { background: var(--ink); }
[data-theme="light"] .btn-ghost .arrow svg { color: #fff; }

/* Hero */
[data-theme="light"] .hero { background: transparent; }
[data-theme="light"] .watermark { color: rgba(15, 15, 15, 0.04); }
[data-theme="light"] .hero-stats-grid {
  background: rgba(15, 15, 15, 0.08);
  border-color: rgba(15, 15, 15, 0.08);
}
[data-theme="light"] .hero-stat { background: #fbfaf7; }
[data-theme="light"] .hero-stat-num { color: var(--ink); }
[data-theme="light"] .hero-stat-num sup { color: var(--tan-deep); }
[data-theme="light"] .hero-stat-label { color: var(--muted-ink); }

/* Marquee */
[data-theme="light"] .marquee { background: #f4f1ea; border-block-color: rgba(15,15,15,0.08); }
[data-theme="light"] .marquee-item { color: var(--ink); }
[data-theme="light"] .marquee-item .it { color: var(--tan-deep); }

/* Services — already light; nudge */
[data-theme="light"] .services { background: #f7f5f0; }
[data-theme="light"] .service-card { background: #fff; border-color: rgba(15,15,15,0.07); }

/* Projects */
[data-theme="light"] .projects { background: #fbfaf7; }
[data-theme="light"] .proj-filter { color: var(--muted-ink); border-color: rgba(15, 15, 15, 0.14); }
[data-theme="light"] .proj-filter:hover { color: var(--ink); border-color: var(--tan-deep); }

/* Compare */
[data-theme="light"] .compare-block { color: var(--ink); }
[data-theme="light"] .compare-copy p { color: var(--muted-ink); }
[data-theme="light"] .compare-stats { background: rgba(15,15,15,0.08); border-color: rgba(15,15,15,0.08); }
[data-theme="light"] .compare-stat { background: #fff; }
[data-theme="light"] .compare-stat .k { color: var(--muted-ink); }
[data-theme="light"] .compare-stat .v .pct { color: var(--tan-deep); }

/* Process — already light */

/* Testimonials — dark card on light bg looks luxe; keep dark */
[data-theme="light"] .testimonials { background: #fbfaf7; color: var(--ink); }
[data-theme="light"] .testimonials .section-head p,
[data-theme="light"] .testimonials p { color: var(--muted-ink); }
[data-theme="light"] .t-card { background: #0f1010; color: #f7f5f0; border-color: rgba(255,255,255,0.05); }
[data-theme="light"] .t-card .t-quote { color: #f7f5f0; }
[data-theme="light"] .t-card .t-name { color: #f7f5f0; }
[data-theme="light"] .t-card .t-role { color: rgba(247, 245, 240, 0.6); }
[data-theme="light"] .t-counter { color: var(--muted-ink); }
[data-theme="light"] .t-arrows button { border-color: rgba(15,15,15,0.18); color: var(--ink); }
[data-theme="light"] .t-arrows button:hover { border-color: var(--tan-deep); color: var(--tan-deep); }
[data-theme="light"] .t-dot { background: rgba(15,15,15,0.18); }
[data-theme="light"] .t-dot.active { background: var(--tan-deep); }

/* FAQ */
[data-theme="light"] .faq {
  background: #f7f5f0;
  border-color: rgba(15,15,15,0.08);
}
[data-theme="light"] .faq-item { border-color: rgba(15,15,15,0.12); }
[data-theme="light"] .faq-item:first-child { border-top-color: rgba(15,15,15,0.12); }
[data-theme="light"] .faq-a { color: var(--muted-ink); }
[data-theme="light"] .faq-toggle { border-color: rgba(15,15,15,0.18); color: var(--ink); }
[data-theme="light"] .faq-item.open .faq-q,
[data-theme="light"] .faq-item:hover .faq-q { color: var(--tan-deep); }
[data-theme="light"] .faq-item.open .faq-toggle { background: var(--tan); border-color: var(--tan); color: var(--ink); }

/* CTA — keep ink frame for visual punch on light page */
[data-theme="light"] .cta { background: transparent; }
[data-theme="light"] .cta-frame { background: #0f1010; color: #f7f5f0; }
[data-theme="light"] .cta-frame h2 { color: #f7f5f0; }
[data-theme="light"] .cta-frame p { color: rgba(247,245,240,0.6); }
[data-theme="light"] .cta-frame .bgsymbol { color: rgba(247,245,240,0.04); }
[data-theme="light"] .cta-form { background: #fbfaf7; color: var(--ink); }
[data-theme="light"] .cta-form .sub { color: var(--muted-ink); }
[data-theme="light"] .cta-form .field label { color: var(--muted-ink); }
[data-theme="light"] .cta-form .field input,
[data-theme="light"] .cta-form .field select {
  color: var(--ink);
  border-bottom-color: rgba(15,15,15,0.16);
}
[data-theme="light"] .cta-form .field input:focus,
[data-theme="light"] .cta-form .field select:focus { border-bottom-color: var(--tan-deep); }
[data-theme="light"] .cta-form .field select option { background: #fff; color: var(--ink); }
[data-theme="light"] .cta-form .service-pill { color: var(--muted-ink); border-color: rgba(15,15,15,0.18); }
[data-theme="light"] .cta-form .service-pill:hover { color: var(--ink); border-color: var(--ink); }
[data-theme="light"] .cta-form .service-pill.selected { background: var(--tan); color: var(--ink); border-color: var(--tan); }
[data-theme="light"] .cta-frame .eyebrow + h2 { color: #f7f5f0; }

/* Footer — stays dark for anchor */
[data-theme="light"] .footer { background: #0f1010; color: #f7f5f0; border-top-color: rgba(15,15,15,0.08); }
[data-theme="light"] .footer .brand { color: #f7f5f0; }
[data-theme="light"] .footer-bot { color: rgba(247,245,240,0.5); border-top-color: rgba(247,245,240,0.08); }
[data-theme="light"] .footer ul a { color: rgba(247,245,240,0.6); }
[data-theme="light"] .footer ul a:hover { color: #f7f5f0; }
[data-theme="light"] .footer h5 { color: var(--tan); }

/* Section head copy color */
[data-theme="light"] .section-head p { color: var(--muted-ink); }

/* ===================================================================
   RESPONSIVE — tablet & mobile
   =================================================================== */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .section-tight { padding: 60px 0; }
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .section-head { gap: 40px; margin-bottom: 48px; }
  .section-head h2 { font-size: clamp(34px, 5vw, 52px); }
  .process { padding-bottom: 100px; }
  .testimonials { padding: 100px 0; }
  .cta { padding: 100px 0; }
  .footer { padding: 60px 0 32px; }
  .footer-top { gap: 40px; }
  .cta-frame { padding: 60px; gap: 60px; }
  .compare-block { gap: 40px; }
  .t-grid { gap: 60px; }
  .faq-grid { gap: 60px; }
  /* Services: 2×2 on tablet */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* Projects: simplified 2-col on tablet */
  .proj-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .proj-card, .proj-card.size-lg, .proj-card.size-md, .proj-card.size-sm, .proj-card.size-wide {
    grid-column: span 1; aspect-ratio: 4/3;
  }
}

@media (max-width: 768px) {
  :root { --radius: 12px; --radius-lg: 18px; }
  .wrap { width: min(100% - 24px, var(--container)); }
  .section { padding: 70px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
  .section-head p { max-width: 100%; }

  /* Nav mobile */
  .nav { padding: 14px 0; }
  .nav-inner { gap: 12px; }
  .nav-links, .nav-cta .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 8px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 28px; height: 28px; font-size: 11px; }
  .btn { padding: 12px 16px 12px 20px; font-size: 13px; gap: 10px; }
  .btn .arrow { width: 24px; height: 24px; }

  /* Hero */
  .hero { min-height: 100dvh; padding-top: 88px; padding-bottom: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .hero-copy { padding-bottom: 0; padding-right: 0; max-width: 100%; }
  .hero h1 { font-size: clamp(42px, 10vw, 68px); margin: 16px 0 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-aside { min-height: 0; padding-bottom: 0; justify-content: flex-start; }
  .hero-project-card { max-width: 100%; padding: 14px 16px; flex-direction: row; align-items: center; gap: 16px; }
  .hero-project-card .project-name { font-size: 16px; margin-bottom: 0; }
  .hero-project-card .project-loc { margin-bottom: 0; }
  .hero-project-card .scroll-pill { margin-top: 0; margin-left: auto; }
  .prop-stamp { display: none; } /* hide stamp on mobile to avoid overlap */
  .hero-stats { margin-top: 32px; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 16px 14px; }
  .hero-stat-num { font-size: 36px; }
  .hero-stat-num sup { font-size: 16px; }
  .hero-stat-label { font-size: 10px; margin-top: 6px; }

  /* Marquee */
  .marquee { padding: 18px 0; }
  .marquee-item { font-size: 20px; gap: 10px; }
  .marquee-track { gap: 42px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { min-height: 280px; padding: 20px; }
  .service-title { font-size: 24px; margin-top: 20px; }
  .service-icon-box { width: 48px; height: 48px; margin-top: 14px; }
  .service-icon-box svg { width: 24px; height: 24px; }

  /* Projects */
  .projects { padding-top: 90px; }
  .proj-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .proj-card, .proj-card.size-lg, .proj-card.size-md, .proj-card.size-sm, .proj-card.size-wide {
    grid-column: span 1; aspect-ratio: 4/3;
  }
  .proj-content { left: 16px; right: 16px; bottom: 16px; }
  .proj-name { font-size: 20px; }
  .proj-meta { font-size: 10px; gap: 10px; }
  .proj-tag { top: 14px; left: 14px; font-size: 9px; padding: 6px 10px; }

  /* Compare */
  .compare-block { grid-template-columns: 1fr; gap: 32px; }
  .compare-copy h2 { font-size: clamp(28px, 6vw, 40px); }
  .compare-stats { margin-top: 24px; }
  .compare-stat { padding: 16px; }
  .compare-frame { aspect-ratio: 16/11; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; border-top: none; margin-top: 40px; }
  .process-step {
    padding: 24px 0; border-right: none; border-bottom: 1px solid rgba(15,15,15,0.12);
  }
  .process-step:last-child { border-bottom: none; }
  .process-step .pn { font-size: 56px; }
  .process-step h4 { font-size: 20px; margin-top: 18px; }
  .process-step p { max-width: 100%; font-size: 13.5px; }

  /* Testimonials */
  .t-grid { grid-template-columns: 1fr; gap: 40px; }
  .t-stage { min-height: 300px; }
  .t-card { padding: 28px; }
  .t-quote-mark { font-size: 64px; }
  .t-quote { font-size: 19px; margin: 18px 0; }
  .t-nav { margin-top: 24px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-q { font-size: 18px; padding: 18px 0; gap: 16px; }
  .faq-toggle { width: 30px; height: 30px; }
  .faq-a { font-size: 14px; }

  /* CTA */
  .cta-frame { padding: 36px 24px; grid-template-columns: 1fr; gap: 40px; }
  .cta h2 { font-size: clamp(32px, 7vw, 48px); }
  .cta p { max-width: 100%; }
  .cta-form { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-top > .footer-brand {
    margin-bottom: 10px;
  }
  .footer-bot { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* Sticky */
  .sticky-cta { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 38px; }
  .hero-project-card { flex-wrap: wrap; gap: 8px; }
  .hero-project-card .scroll-pill { margin-left: 0; width: 100%; justify-content: center; }
  .hero-stat-num { font-size: 30px; }
  .service-title { font-size: 22px; }
  .marquee-item { font-size: 17px; }
  .btn { font-size: 12px; padding: 11px 14px 11px 18px; }
}
