/* ===================================
   GERMAIN DETAILING — Premium Styles
   =================================== */

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

:root {
  /* --- Colors (Light mode, black accent) --- */
  --color-bg: #f5f4f0;
  --color-bg-alt: #ebeae5;
  --color-bg-veil: rgba(245, 244, 240, 0.92);
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;
  --color-border: rgba(10, 10, 10, 0.1);
  --color-border-hover: rgba(10, 10, 10, 0.35);
  --color-text: #0a0a0a;
  --color-text-secondary: rgba(10, 10, 10, 0.62);
  --color-text-tertiary: rgba(10, 10, 10, 0.4);
  --color-accent: #0a0a0a;
  --color-accent-dim: rgba(10, 10, 10, 0.06);
  --color-accent-glow: rgba(10, 10, 10, 0.18);
  --color-success: #166534;
  --color-success-dim: rgba(22, 101, 52, 0.1);
  --color-error: #b91c1c;
  --color-error-dim: rgba(185, 28, 28, 0.08);
  --color-warning: #a16207;
  --color-warning-dim: rgba(161, 98, 7, 0.1);

  /* --- Typography scale (modular) --- */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-display: clamp(2.5rem, 5vw, 4.5rem);
  --text-section: clamp(2rem, 4vw, 3.5rem);

  /* --- Radii --- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;

  /* --- Fonts --- */
  --font-primary: 'Satoshi', 'Outfit', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* --- Easing --- */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-base: 0.35s var(--ease-out-expo);
  --transition-slow: 0.6s var(--ease-out-expo);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: var(--text-base);
}

/* Subtle noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  z-index: 9999;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Screen reader only */
.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;
}


a {
  color: inherit;
  text-decoration: none;
}

img, video {
  display: block;
  max-width: 100%;
}

/* --- Video Background — sits in the hero, scrolls away with it --- */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.video-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.4) 80%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: background 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo), backdrop-filter 0.5s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(245, 244, 240, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

/* Logo: unified font with hero wordmark */
.logo-text {
  font-family: 'Satoshi', var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: lowercase;
  transition: color var(--transition-base);
}

.logo-accent {
  font-family: 'Satoshi', var(--font-primary);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: lowercase;
  transition: color var(--transition-base);
}

.nav.scrolled .logo-text {
  color: var(--color-text);
}

.nav.scrolled .logo-accent {
  color: var(--color-text-secondary);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-base);
  position: relative;
}

.nav.scrolled .nav-link {
  color: var(--color-text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  color: #fff;
}

.nav.scrolled .nav-link:hover {
  color: var(--color-text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--color-text);
  background: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.nav.scrolled .nav-cta {
  color: #fff;
  background: var(--color-text);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.35s var(--ease-out-expo);
  transform-origin: center;
}

.nav.scrolled .nav-toggle span {
  background: var(--color-text);
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(245, 244, 240, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-link {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-text-secondary);
  transition: color 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}

.mobile-link:hover {
  color: var(--color-text);
  transform: translateX(8px);
}

.mobile-cta {
  margin-top: 1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: #fff;
  background: var(--color-accent);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
}

/* --- Scroll-Driven Exploding Car Hero --- */
.explode-hero {
  position: relative;
  z-index: 0;
  height: 400vh;
  margin-bottom: -100vh; /* Last frame stays visible as next section scrolls over it */
}

.explode-hero-inner {
  position: relative;
  height: 100%;
}

.explode-hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

.explode-hero-sticky canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.explode-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Text overlays — bottom left, fade in/out based on JS classes */
.explode-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 3.5rem 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.explode-text.active {
  opacity: 1;
  transform: translateY(0);
}

.explode-text-1 .hero-wordmark {
  margin: 0;
  line-height: 0.85;
  padding-right: 0.15em;
}

.explode-headline {
  font-family: 'Satoshi', var(--font-primary);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  text-transform: lowercase;
}

.explode-headline-accent em {
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
}

/* Scroll hint */
.explode-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: opacity 0.5s var(--ease-out-expo);
}

.explode-scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Loading overlay */
.explode-loading {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.6s var(--ease-out-expo);
}

.explode-loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.explode-loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.explode-loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--pct, 0%);
  background: #fff;
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

.explode-loader-text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .explode-hero {
    height: 250vh;
  }
  .explode-text {
    padding: 2rem 1.5rem;
  }
  .explode-headline {
    font-size: clamp(1.6rem, 8vw, 3rem);
  }
}

.hero-wordmark {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.25em;
  flex-wrap: wrap;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 100%;
  font-family: 'Satoshi', var(--font-primary);
}

.hero-wordmark-top,
.hero-wordmark-bot {
  display: block;
  font-size: clamp(2.5rem, 8vw, 7rem);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s var(--ease-out-expo) forwards;
}

.hero-wordmark-top {
  font-weight: 700;
  color: #fff;
  animation-delay: 0.35s;
}

.hero-wordmark-bot {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  animation-delay: 0.5s;
}

.tag-line {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.tag-text {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--color-text-tertiary);
}

/* --- Button System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn svg {
  transition: transform var(--transition-base);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  padding: 0.9rem 1.85rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  outline: none;
  color: #fff;
  background: var(--color-accent);
}

.hero .btn-primary {
  color: var(--color-text);
  background: #fff;
}

.hero .btn-primary:hover {
  background: var(--color-text);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -5px var(--color-accent-glow);
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

.btn-primary:hover svg {
  transform: translate(3px, -3px);
}

.btn-secondary {
  color: var(--color-accent);
  background: var(--color-accent-dim);
  border: 1px solid rgba(110, 168, 214, 0.25);
}

.btn-secondary:hover {
  background: rgba(110, 168, 214, 0.2);
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.97);
}

.btn-ghost {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-hover);
  padding-bottom: 3px;
  transition: all var(--transition-base);
}

.btn-ghost:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}

.hero .btn-ghost {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-ghost:hover {
  color: #fff;
  border-color: #fff;
}

.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Global focus-visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 1.5s forwards;
}

.scroll-indicator {
  width: 20px;
  height: 34px;
  border: 1.5px solid var(--color-text-tertiary);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--color-text-tertiary);
}

/* --- Sections --- */
.section {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
}

.section-dark,
.section-transparent {
  background: var(--color-bg);
}

.section-transparent {
  padding: 10rem 2rem;
}

/* Single continuous veil layer — no seams between sections */
.page-veil {
  position: absolute;
  top: 100dvh; /* starts after the hero on homepage */
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 0;
  pointer-events: none;
}

.page-veil-full {
  top: 0; /* subpages: veil from the top */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4.5rem;
}

.section-header-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

.section-header-center {
  text-align: center;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-tag-light .tag-text {
  color: var(--color-text-secondary);
}

.section-tag-light .tag-line {
  background: var(--color-text-secondary);
}

.section-header-center .section-tag {
  justify-content: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--color-text);
}

.section-title em {
  font-weight: 400;
  font-style: normal;
  color: var(--color-text-tertiary);
}

.section-title-light {
  color: var(--color-text);
}

.section-title-light em {
  color: var(--color-accent);
}

.section-subtitle {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.section-subtitle-light {
  color: var(--color-text-secondary);
  margin: 1.5rem auto 0;
}

/* --- Cinematic Video Break --- */
.video-break {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
}

.video-break-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 20%, transparent 80%, var(--color-bg) 100%);
  pointer-events: none;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 30px -10px rgba(0, 0, 0, 0.06);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--color-accent-glow) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.18);
}

.service-card:hover::after {
  opacity: 0.15;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-accent {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}

.service-card-accent .service-title,
.service-card-accent .service-desc {
  color: #fff;
}

.service-card-accent .service-number {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.service-card-accent .detail-tag {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}

.service-number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text);
  background: var(--color-accent-dim);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-number {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

.service-title {
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail-tag {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--color-text-tertiary);
  border: 1px solid var(--color-border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out-expo);
}

.service-card:hover .detail-tag {
  border-color: var(--color-border-hover);
  color: var(--color-text-secondary);
}

/* --- Process Video Showcase (video with text overlay) --- */
.process-showcase {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 5rem;
  aspect-ratio: 21 / 9;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: #000;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.25);
}

.process-showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Color-match filter to blend with the cream page tone */
  filter: brightness(0.88) contrast(0.92) saturate(0.85) sepia(0.08);
}

/* Dark gradient overlay for text contrast */
.process-showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%),
    linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.process-showcase-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-showcase-tag .tag-line {
  background: rgba(255, 255, 255, 0.7);
}

.process-showcase-tag .tag-text {
  color: rgba(255, 255, 255, 0.85);
}

.process-showcase-title {
  color: #fff !important;
  margin-top: 1rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.process-showcase-title em {
  color: #f5f4f0 !important;
}

.process-showcase-sub {
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 1.25rem auto 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .process-showcase {
    aspect-ratio: 4 / 5;
    min-height: 480px;
  }
  .process-showcase-content {
    padding: 2rem 1.5rem;
  }
}

/* --- Process Grid --- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.process-step:last-child {
  border-bottom: 1px solid var(--color-border);
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out-expo);
  border-radius: var(--radius-full);
}

.process-step:hover {
  padding-left: 1.5rem;
}

.process-step:hover::before {
  transform: scaleY(1);
}

.process-index {
  font-size: 1.8rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-accent);
  padding-top: 0.15rem;
  transition: transform 0.4s var(--ease-out-expo);
}

.process-step:hover .process-index {
  transform: scale(1.15);
}

.process-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.process-content p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 550px;
}

/* --- Gallery Grid (asymmetric bento) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
  cursor: pointer;
  background: #000;
}

.gallery-item:hover {
  border-color: var(--color-border-hover);
  box-shadow: 0 24px 64px -20px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 15, 20, 0.9) 0%, rgba(12, 15, 20, 0.3) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all var(--transition-slow);
  z-index: 1;
}

.gallery-item:hover .gallery-placeholder {
  background: linear-gradient(to top, rgba(12, 15, 20, 0.95) 0%, rgba(12, 15, 20, 0.5) 50%, rgba(110, 168, 214, 0.1) 100%);
}

.gallery-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.gallery-caption {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
}

.gallery-item:hover .gallery-caption {
  color: var(--color-text);
}

/* Hover hint: "View project" on hover */
.gallery-placeholder::after {
  content: 'View project';
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--color-accent);
  margin-top: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.gallery-item:hover .gallery-placeholder::after {
  opacity: 1;
  transform: translateY(0);
}

/* --- Stats Section (video-backed) --- */
.stats-video-section {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.stats-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.stats-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.stats-video-section .container {
  position: relative;
  z-index: 2;
}

.stats-video-section .stat-number {
  color: #fff;
}

.stats-video-section .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.stats-video-section .stat-divider {
  background: rgba(255, 255, 255, 0.2);
}

.stats-video-section .testimonial-quote {
  color: #fff;
}

.stats-video-section .testimonial::before {
  color: rgba(255, 255, 255, 0.25);
}

.stats-video-section .author-name {
  color: #fff;
}

.stats-video-section .author-detail {
  color: rgba(255, 255, 255, 0.6);
}

.stats-section {
  /* kept for specificity */
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  margin-bottom: 5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--color-text-tertiary);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--color-border);
}

.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-top: 3rem;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  line-height: 1;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.35;
  font-family: Georgia, serif;
}

.testimonial-quote {
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.55;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.author-detail {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-text-tertiary);
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--color-text-tertiary);
}

.contact-value {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  transition: color 0.3s var(--ease-out-expo);
}

a.contact-value:hover {
  color: var(--color-accent);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--color-text-tertiary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: all var(--transition-base);
  border-radius: var(--radius-md);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.06);
  outline: none;
}

/* Form validation states */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--color-error);
  box-shadow: 0 0 0 4px var(--color-error-dim);
}

.form-group.has-error label {
  color: var(--color-error);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

/* Form success banner */
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-success-dim);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-success);
  font-weight: 500;
}

.form-group select {
  cursor: pointer;
}

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: #fff;
  background: var(--color-accent);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  align-self: flex-start;
  position: relative;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -5px var(--color-accent-glow);
}

.btn-submit:active {
  transform: translateY(0) scale(0.97);
}

.btn-submit svg {
  transition: transform var(--transition-base);
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

.btn-submit:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-submit.btn-loading {
  color: transparent !important;
  pointer-events: none;
}

.btn-submit.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
}

.btn-submit.btn-success {
  background: var(--color-success);
  pointer-events: none;
}

/* --- Footer (3-column grid) --- */
.footer {
  padding: 4rem 2rem 2.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand .logo-text,
.footer-brand .logo-accent {
  font-size: 1.2rem;
}

.footer-tagline {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-tertiary);
  margin-top: 0.5rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-tertiary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  grid-column: 1 / -1;
}

.footer-bottom span {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--color-text-tertiary);
}

/* --- Gallery card interactive --- */
.gallery-item {
  cursor: pointer;
}

/* --- Lightbox Modal --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 8, 12, 0.9);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
  z-index: 2;
}

.lightbox-close:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: rotate(90deg);
}

.lightbox-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transform: scale(0.95);
  transition: transform 0.5s var(--ease-out-expo);
}

.lightbox.active .lightbox-inner {
  transform: scale(1);
}

.lightbox-header {
  text-align: center;
}

.lightbox-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.lightbox-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.lightbox-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lightbox-slide {
  position: relative;
  flex: 1;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.lightbox-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 0.5s var(--ease-out-expo);
}

.lightbox-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: #fff;
  background: rgba(12, 15, 20, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-tag.after {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
}

.lightbox-nav:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.lightbox-dots {
  display: flex;
  gap: 0.5rem;
}

.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  padding: 0;
}

.lightbox-dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: var(--radius-full);
}

.lightbox-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 620px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .lightbox {
    padding: 1rem;
  }
  .lightbox-nav {
    width: 38px;
    height: 38px;
  }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }
}

/* --- Subpage Header --- */
.page-header {
  position: relative;
  z-index: 2;
  padding: 9rem 2rem 4rem;
}

.page-header-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-header-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 5 / 4;
}

.page-header-image img,
.page-header-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
  display: block;
}

.page-header-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.page-header-image:hover img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .page-header-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .page-header-image {
    aspect-ratio: 16 / 9;
  }
}

.page-header .container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--color-text);
  margin: 1rem 0 1.5rem;
}

.page-title em {
  font-weight: 400;
  font-style: normal;
  color: var(--color-text-tertiary);
}

.page-sub {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text-secondary);
  max-width: 620px;
  line-height: 1.7;
}

.page-content {
  padding-top: 4rem;
}

.page-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}

.nav-link.active {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .page-header {
    padding: 7rem 1.25rem 2rem;
  }
  .page-content {
    padding-top: 2rem;
  }
  .page-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Scroll reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .section-header-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-rows: 220px;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .nav.scrolled {
    padding: 0.65rem 1.25rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 0 1.25rem 3rem;
  }

  .hero-content {
    padding-left: 0;
  }

  .title-line {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 4.5rem 1.25rem;
  }

  .section-transparent {
    padding: 6rem 1.25rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding: 1.75rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-rows: 220px;
  }

  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .testimonial-quote {
    font-size: 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    grid-column: span 1;
  }
}
