/* ============================================================
   ZELU HOUSE — Design System v4
   Premium editorial · Depth layers · Glass surfaces · 10/10
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-bg: #080808;
  --color-bg-elevated: #0e0e0e;
  --color-bg-subtle: #121212;
  --color-surface: #171717;
  --color-surface-hover: #1c1c1c;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(255, 255, 255, 0.12);
  --color-text: #ede9e3;
  --color-text-muted: #918c86;
  --color-text-subtle: #5a5550;
  --color-accent: #c9b99a;
  --color-accent-hover: #ddd0b5;
  --color-accent-glow: rgba(201, 185, 154, 0.15);
  --color-accent-subtle: rgba(201, 185, 154, 0.06);
  --color-white: #ffffff;

  /* Glass */
  --glass-bg: rgba(10, 10, 10, 0.65);
  --glass-bg-scroll: rgba(10, 10, 10, 0.55);
  --glass-blur: 32px;
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;

  /* Spacing — generous, luxury breathing room */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;
  --space-3xl: 12rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --nav-height: 72px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;
  --duration-slower: 1.2s;
}

/* --- Light Theme --- */
[data-theme="light"] {
  --color-bg: #f5f1ec;
  --color-bg-elevated: #ece8e2;
  --color-bg-subtle: #e8e4de;
  --color-surface: #e0dcd5;
  --color-surface-hover: #d6d2cb;
  --color-border: rgba(0, 0, 0, 0.10);
  --color-border-hover: rgba(0, 0, 0, 0.18);
  --color-text: #151210;
  --color-text-muted: #34302c;
  --color-text-subtle: #524d48;
  --color-accent: #7d6843;
  --color-accent-hover: #5e4d30;
  --color-accent-glow: rgba(125, 104, 67, 0.15);
  --color-accent-subtle: rgba(125, 104, 67, 0.08);
  --color-white: #ffffff;

  --glass-bg: rgba(245, 241, 236, 0.75);
  --glass-bg-scroll: rgba(245, 241, 236, 0.6);
  --glass-border: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] body::after {
  opacity: 0.015;
}

[data-theme="light"] .nav.scrolled {
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.08),
              0 4px 20px rgba(0, 0, 0, 0.03),
              inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .nav__progress {
  box-shadow: 0 0 8px rgba(138, 122, 90, 0.2),
              0 0 3px rgba(138, 122, 90, 0.15);
}

[data-theme="light"] .stills__image-wrapper {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08),
              0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .stills__item:hover .stills__image-wrapper {
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12),
              0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .stills__image-wrapper::after {
  background: linear-gradient(to top, rgba(245, 242, 237, 0.3), transparent);
}

[data-theme="light"] .proof__stat {
  background: var(--color-white);
  border-color: var(--color-border);
}

[data-theme="light"] .proof__stat:hover {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(138, 122, 90, 0.2);
}

[data-theme="light"] .motion__video-wrapper {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1),
              0 4px 15px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .btn {
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .btn::before {
  background: #b8a37a;
}

[data-theme="light"] .btn--glass {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(0, 0, 0, 0.20);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(16px);
}

[data-theme="light"] .btn--glass::before {
  background: #b8a37a;
}

[data-theme="light"] .btn--glass:hover {
  border-color: #b8a37a;
  color: var(--color-white);
  box-shadow: 0 6px 28px rgba(184, 163, 122, 0.25),
              0 0 40px rgba(184, 163, 122, 0.1);
}

[data-theme="light"] .btn:hover {
  color: var(--color-white);
  border-color: #b8a37a;
  box-shadow: 0 6px 28px rgba(184, 163, 122, 0.25),
              0 0 40px rgba(184, 163, 122, 0.1);
}

[data-theme="light"] .nav__link--btn:hover {
  color: var(--color-white);
  background: #b8a37a;
  border-color: #b8a37a;
}

[data-theme="light"] .page-transition {
  background: var(--color-bg);
}

[data-theme="light"] .hero::after {
  background: linear-gradient(to top, var(--color-bg), transparent);
}

[data-theme="light"] ::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

[data-theme="light"] .offerings__card {
  background: var(--color-white);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .offerings__card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  background: var(--color-bg-elevated);
}

[data-theme="light"] .offerings__card--featured {
  background: linear-gradient(180deg, rgba(138, 122, 90, 0.04) 0%, var(--color-white) 50%);
  border-color: rgba(138, 122, 90, 0.2);
}

[data-theme="light"] .offerings__card--featured::before {
  background: var(--color-bg-elevated);
}

[data-theme="light"] .eliminate__row:hover {
  border-bottom-color: rgba(125, 104, 67, 0.2);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Film grain texture overlay — GPU-composited for performance */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  will-change: transform;
  transform: translateZ(0);
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-display {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
  display: inline-block;
}

/* Text scroll reveal */
.text-scroll-reveal .word {
  display: inline;
  transition: opacity 0.1s ease;
}

.heading-xl {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.heading-sm {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

.text-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.text-body-lg {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: var(--color-text-muted);
}

.text-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.text-italic {
  font-style: italic;
}

.text-accent {
  color: var(--color-accent);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* Elevated sections — alternate depth layers */
.featured,
.cta-section {
  background: var(--color-bg-elevated);
}

/* Subtle ambient accents */
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 185, 154, 0.025) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  background: transparent;
  transition: background 0.5s var(--ease-out),
              backdrop-filter 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--glass-bg-scroll);
  backdrop-filter: blur(32px) saturate(1.2);
  -webkit-backdrop-filter: blur(32px) saturate(1.2);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.03);
  will-change: transform;
}

/* Scroll progress bar — sharp, immediate */
.nav__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
  box-shadow: 0 0 6px rgba(201, 185, 154, 0.1);
  transition: none;
  will-change: width;
  z-index: 1;
  border-radius: 0 1px 1px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: opacity var(--duration-fast);
}

.nav__logo:hover {
  opacity: 0.7;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--duration-normal) var(--ease-out),
              left var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
  left: 0;
}

/* Active page indicator — shorter than word, centered */
.nav__link--active {
  color: var(--color-text);
}

.nav__link--active::after {
  width: 60%;
  left: 20%;
  background: var(--color-accent);
  opacity: 0.7;
}

.nav__link--btn {
  padding: 0.5rem 1.25rem;
  padding-bottom: 0.5rem;
  border: 1px solid var(--color-border-hover);
  transition: border-color var(--duration-normal) var(--ease-out),
              background var(--duration-normal) var(--ease-out),
              color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              transform 0.4s var(--ease-out);
}

.nav__link--btn::after {
  display: none;
}

.nav__link--btn:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(201, 185, 154, 0.15);
}

/* Theme Toggle */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.theme-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color var(--duration-fast), background var(--duration-fast);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: rgba(128, 128, 128, 0.1);
}

.theme-toggle__icon--moon {
  display: none;
}

[data-theme="light"] .theme-toggle__icon--sun {
  display: none;
}

[data-theme="light"] .theme-toggle__icon--moon {
  display: block;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-text);
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-fast);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow) var(--ease-out);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-muted);
  transition: color var(--duration-fast), transform var(--duration-fast);
  letter-spacing: 0.05em;
}

.nav__mobile a:hover {
  color: var(--color-text);
  transform: translateX(4px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.hero__title {
  margin-bottom: var(--space-lg);
  position: relative;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.hero__subtitle--italic {
  font-style: italic;
  color: var(--color-text-muted);
}

.hero__body {
  max-width: 720px;
  margin: var(--space-lg) auto 0;
}

.hero__body p {
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.8;
}

.hero__body p + p {
  margin-top: var(--space-sm);
}

.hero__cta {
  margin-top: var(--space-xl);
}

/* Hero background video */
.hero__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -38%) scale(1.05);
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.4) contrast(1.05) brightness(0.95);
  -webkit-appearance: none;
}

/* Cover over video — blocks native play button from ever being visible.
   Sits between video (z:0) and content (z:2+).
   Semi-transparent to maintain video visibility while hiding browser UI. */
.hero__video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(8, 8, 8, 0.88);
  pointer-events: none;
}

[data-theme="light"] .hero__video-cover {
  background: rgba(245, 241, 236, 0.88);
}

/* Hide ALL browser video UI — nuclear approach */
.hero__bg-video::-webkit-media-controls,
.hero__bg-video::-webkit-media-controls-panel,
.hero__bg-video::-webkit-media-controls-play-button,
.hero__bg-video::-webkit-media-controls-start-playback-button,
.hero__bg-video::-webkit-media-controls-overlay-play-button,
.hero__bg-video::-webkit-media-controls-enclosure,
.hero__bg-video::-webkit-media-controls-current-time-display,
.hero__bg-video::-webkit-media-controls-time-remaining-display,
.hero__bg-video::-webkit-media-controls-timeline,
.hero__bg-video::-webkit-media-controls-volume-slider,
.hero__bg-video::-webkit-media-controls-mute-button,
.hero__bg-video::-webkit-media-controls-fullscreen-button,
.hero__bg-video::-moz-media-controls,
.hero__bg-video::-ms-media-controls {
  display: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
}

/* Fallback: cover video controls with pseudo-element */
.hero--video {
  position: relative;
}

.hero--video .hero__title,
.hero--video > div,
.hero--video .hero__body,
.hero--video .hero__cta {
  position: relative;
  z-index: 1;
}

[data-theme="light"] .hero__bg-video {
  opacity: 0.4;
  filter: saturate(0.5) contrast(0.9) brightness(1.1);
}

/* Warm gradient overlay for light mode hero — less washing out */
[data-theme="light"] .hero--video::after {
  background: linear-gradient(
    to top,
    var(--color-bg) 0%,
    rgba(245, 241, 236, 0.6) 30%,
    rgba(245, 241, 236, 0.15) 60%,
    rgba(245, 241, 236, 0.1) 100%
  );
}

/* Ambient animated gradient — living background instead of video */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 1400px;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 185, 154, 0.06) 0%,
    rgba(201, 185, 154, 0.03) 25%,
    rgba(150, 130, 100, 0.015) 45%,
    transparent 65%
  );
  pointer-events: none;
  animation: ambientPulse 8s ease-in-out infinite;
}

/* Second ambient orb — depth */
/* Glow removed — cleaner without it */

@keyframes ambientPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Bottom gradient fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--color-border-hover);
  color: var(--color-text);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: border-color 0.4s var(--ease-out),
              color 0.35s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Direction-aware fill — GPU-accelerated scaleX
   .btn--from-right is toggled by JS based on mouse enter/leave side */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c4ad82;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.btn--from-right::before {
  transform-origin: right center;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover {
  border-color: #c4ad82;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(196, 173, 130, 0.22),
              0 0 40px rgba(196, 173, 130, 0.08);
}

.btn:active {
  transform: translateY(0px) scale(0.97);
  box-shadow: 0 2px 10px rgba(201, 185, 154, 0.1);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

/* Focus state — accessibility */
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg);
}

.btn--primary::before {
  background: #c4ad82;
}

.btn--primary:hover {
  border-color: #c4ad82;
  box-shadow: 0 6px 28px rgba(196, 173, 130, 0.22),
              0 0 40px rgba(196, 173, 130, 0.08);
}

/* --- Featured In --- */
.featured {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 185, 154, 0.12), transparent);
}

.featured::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 185, 154, 0.08), transparent);
}

.featured__label {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.featured__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.featured__item {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-style: italic;
  color: var(--color-text-subtle);
  transition: color var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  padding: 0.5rem 0;
  position: relative;
}

.featured__item + .featured__item::before {
  content: '\00B7';
  display: inline-block;
  margin: 0 clamp(1rem, 2.5vw, 2rem);
  color: var(--color-border-hover);
  font-style: normal;
  font-size: 1.2em;
}

.featured__item:hover {
  color: var(--color-text);
}

/* --- Selected Stills / Grid --- */
.stills {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.stills__heading {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.stills__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.stills__item {
  position: relative;
  overflow: hidden;
}

.stills__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-surface);
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4),
              0 2px 10px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.6s var(--ease-out);
}

.stills__item:hover .stills__image-wrapper {
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5),
              0 4px 20px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(201, 185, 154, 0.04);
}

/* Subtle desaturation, full color on hover — preserves sharpness */
.stills__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.8s var(--ease-out), transform 1.4s var(--ease-out);
  image-rendering: auto;
}

.stills__item:hover .stills__image-wrapper img {
  filter: grayscale(0) saturate(1.05) contrast(1);
  transform: scale(1.05);
}


/* Overlay gradient */
.stills__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.6), transparent);
  pointer-events: none;
  opacity: 0.4;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.stills__item:hover .stills__image-wrapper::after {
  opacity: 0.7;
}

/* Caption below image — gallery / museum style */
.stills__caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  padding-left: 0.05rem;
}

.stills__name {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.4s var(--ease-out);
}

.stills__item:hover .stills__name {
  color: var(--color-text);
}

.stills__insta {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-muted);
  opacity: 0.35;
  transition: opacity 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

.stills__insta:hover {
  opacity: 0.9;
  color: var(--color-text);
}

.stills__item:hover .stills__insta {
  opacity: 0.6;
}

.stills__item {
  display: flex;
  flex-direction: column;
}

/* --- Glass Buttons --- */
.btn--glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(201, 185, 154, 0.04);
}

.btn--glass::before {
  background: #c4ad82;
}

.btn--glass:hover {
  border-color: #c4ad82;
  color: var(--color-white);
  backdrop-filter: none;
  box-shadow: 0 6px 28px rgba(196, 173, 130, 0.22),
              0 0 40px rgba(196, 173, 130, 0.08);
}

/* --- Proof / Key Metrics --- */
.proof {
  padding: var(--space-2xl) 0;
  position: relative;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.proof__stat {
  padding: var(--space-lg) var(--space-md);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.proof__stat:hover {
  border-color: rgba(201, 185, 154, 0.15);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.proof__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.proof__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  line-height: 1.4;
}

/* --- Showcase (Video + Stills) --- */
.showcase {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.showcase__heading {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.showcase__item--video .showcase__media-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--color-surface);
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4),
              0 2px 10px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.6s var(--ease-out);
}

.showcase__item--video:hover .showcase__media-wrapper {
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5),
              0 4px 20px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(201, 185, 154, 0.04);
}

.showcase__media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase__label {
  margin-top: var(--space-md);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  transition: color var(--duration-fast);
}

.showcase__item:hover .showcase__label {
  color: var(--color-text-muted);
}

/* Showcase uses stills wrapper for Ana image */
.showcase__item .stills__image-wrapper {
  aspect-ratio: 9 / 16;
}

/* --- In Motion Section (Video + Stats) --- */
.motion {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--color-bg-elevated);
  position: relative;
  overflow: hidden;
}

.motion__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.motion__video-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 2px;
  background: var(--color-surface);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4),
              0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 380px;
  margin: 0 auto;
}

.motion__video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.motion__text-col {
  padding: var(--space-lg) 0;
}

.motion__text-col .text-label {
  margin-bottom: var(--space-md);
}

.motion__heading {
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.motion__body {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.9;
  margin-bottom: var(--space-xl);
  max-width: 440px;
}

.motion__stats {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.motion__stat {
  flex: 1;
}

.motion__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.motion__stat-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  line-height: 1.3;
}

/* --- Value Proposition (Homepage story section) --- */
.value-prop {
  padding: var(--space-3xl) 0;
  position: relative;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.value-prop__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.value-prop__statement {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.45;
  margin-bottom: var(--space-xl);
}

.value-prop__detail {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}

/* --- CTA Section --- */
.cta-section {
  padding: var(--space-2xl) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  opacity: 0.4;
}

.cta-section__heading {
  margin-bottom: var(--space-lg);
  font-style: italic;
}

/* --- Page Header (for subpages) --- */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-xl);
}

.page-header__label {
  margin-bottom: var(--space-md);
}

.page-header__title {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

/* Accent line under subpage headings — clean, thin */
.page-header__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
  transition: width 0.8s var(--ease-out);
}

.page-header__title.line-visible::after {
  width: 40px;
}

.page-header__body {
  max-width: 600px;
}

.page-header__body p {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.8;
}

.page-header__body p + p {
  margin-top: var(--space-sm);
}

/* --- Services Page --- */
.services-content {
  padding: var(--space-lg) 0 var(--space-xl);
}

.services-content__text {
  max-width: 600px;
}

.services-content__text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.services-content__text p + p {
  margin-top: var(--space-sm);
}

/* Editorial hero image */
.services-image {
  padding: var(--space-xl) 0;
}

/* Full-bleed variant — edge to edge */
.services-image--full {
  padding: var(--space-xl) 0;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.services-image--full .services-image__wrapper {
  max-height: 620px;
}

.services-image__wrapper {
  overflow: hidden;
  max-height: 560px;
  background: var(--color-surface);
  position: relative;
  transition: box-shadow 0.6s var(--ease-out);
}

.services-image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 1.6s var(--ease-out);
  image-rendering: auto;
}

/* --- Eliminate Section — Animated Strikethrough --- */
.eliminate {
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
}

.eliminate__header {
  margin-bottom: var(--space-xl);
}

.eliminate__header .text-label {
  margin-bottom: var(--space-md);
}

.eliminate__title {
  line-height: 1.2;
}

.eliminate__list {
  border-top: 1px solid var(--color-border);
}

.eliminate__row {
  display: grid;
  grid-template-columns: clamp(4rem, 10vw, 6rem) 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
  position: relative;
  cursor: default;
}

.eliminate__row:hover {
  border-bottom-color: rgba(201, 185, 154, 0.2);
}

.eliminate__row:hover .eliminate__number {
  opacity: 0.35;
}

.eliminate__number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--color-text);
  opacity: 0.2;
  line-height: 1;
  transition: opacity 0.6s var(--ease-out);
}

.eliminate__content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.3rem;
}

/* Struck text — animated line via pseudo-element */
.eliminate__struck {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-text);
  font-style: italic;
  position: relative;
  width: fit-content;
  text-decoration: none;
}

.eliminate__struck::after {
  content: '';
  position: absolute;
  left: 0;
  top: 52%;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
  transition: width 0.8s var(--ease-out);
}

/* Animate strikethrough on scroll (JS adds class) */
.eliminate__struck.is-struck::after {
  width: 100%;
}

.eliminate__struck.is-struck {
  color: var(--color-text-subtle);
  transition: color 0.5s var(--ease-out) 0.3s;
}

.eliminate__arrow {
  display: none;
}

.eliminate__replace {
  color: var(--color-text);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7;
  transition: color 0.4s var(--ease-out);
}

.eliminate__row:hover .eliminate__replace {
  color: var(--color-text);
}

/* --- Service Offerings — Tiered Cards --- */
.offerings {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--color-bg-elevated);
  position: relative;
}

.offerings__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.offerings__header .text-label {
  margin-bottom: var(--space-md);
}

.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.offerings__card {
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.offerings__card:hover {
  border-color: rgba(201, 185, 154, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.offerings__card--featured {
  border-color: rgba(201, 185, 154, 0.2);
  background: linear-gradient(180deg, rgba(201, 185, 154, 0.04) 0%, transparent 50%);
}

.offerings__card--featured::before {
  content: 'Most Common';
  position: absolute;
  top: -0.6rem;
  left: var(--space-lg);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-bg-elevated);
  padding: 0 0.5rem;
}

.offerings__card-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-accent);
  opacity: 0.25;
  margin-bottom: var(--space-lg);
  line-height: 1;
}

.offerings__card:hover .offerings__card-number {
  opacity: 0.5;
}

.offerings__card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  transition: color var(--duration-fast);
}

.offerings__card:hover .offerings__card-title {
  color: var(--color-accent);
}

.offerings__card-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.offerings__card-includes {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.offerings__card-includes li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
}

.offerings__card-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

/* --- Press Page --- */
.press-list {
  padding: var(--space-md) 0 var(--space-2xl);
  counter-reset: press-counter;
}

.press-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md);
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: start;
  gap: 0 var(--space-md);
  transition: background var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
  counter-increment: press-counter;
  position: relative;
  border-radius: 2px;
}

.press-item:hover {
  background: var(--color-bg-elevated);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.press-item:first-child {
  border-top: 1px solid var(--color-border);
}

.press-item__number {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-border-hover);
  transition: color var(--duration-normal) var(--ease-out);
  min-width: 2rem;
  padding-top: 0.4rem;
}

.press-item:hover .press-item__number {
  color: var(--color-accent);
}

/* Accent line on hover */
.press-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.6s var(--ease-out);
}

.press-item:hover::after {
  width: 100%;
}

.press-item__publication {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-xs);
}

.press-item__year {
  color: var(--color-text-subtle);
  margin-left: var(--space-sm);
}

.press-item__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: var(--space-xs);
  transition: color var(--duration-fast);
}

.press-item:hover .press-item__headline {
  color: var(--color-accent-hover);
}

.press-item__character {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.press-item__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: color var(--duration-fast);
  white-space: nowrap;
  padding-top: 0.5rem;
}

.press-item__link:hover {
  color: var(--color-accent-hover);
}

.press-item__link::after {
  content: ' \2197';
  font-size: 0.8em;
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out);
}

.press-item__link:hover::after {
  transform: translate(2px, -2px);
}

/* --- Process Page --- */
.process-phases {
  padding: var(--space-md) 0 var(--space-2xl);
  position: relative;
}

.process-phases .container {
  position: relative;
}

.process-phases .container::before {
  content: '';
  position: absolute;
  left: var(--space-lg);
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--color-border),
    var(--color-accent) 20%,
    var(--color-accent) 80%,
    var(--color-border)
  );
  opacity: 0.3;
}

.phase {
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) var(--space-lg);
  padding-left: calc(var(--space-lg) + 2rem);
  position: relative;
  background: transparent;
  border-radius: 2px;
  transition: background 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.4s var(--ease-out);
}

.phase:hover {
  background: var(--color-bg-elevated);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.phase::before {
  content: '';
  position: absolute;
  left: calc(var(--space-lg) - 3px);
  top: var(--space-xl);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.phase.visible::before {
  opacity: 1;
  transform: scale(1);
}

.phase__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.phase__number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-border-hover);
  line-height: 1;
  transition: color 0.6s var(--ease-out);
  min-width: 3rem;
}

.phase.visible .phase__number {
  color: var(--color-accent);
}

.phase__title-group {
  padding-top: 0.15rem;
}

.phase__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.phase__subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
}

.phase__gate {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(201, 185, 154, 0.2);
  margin-bottom: var(--space-md);
  transition: border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.phase:hover .phase__gate {
  border-color: rgba(201, 185, 154, 0.4);
  box-shadow: 0 0 20px rgba(201, 185, 154, 0.05);
}

.phase__body {
  max-width: 640px;
}

.phase__desc {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.phase__deliverables-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-sm);
}

.phase__deliverables li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.phase__deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

/* --- About Page — Premium Editorial --- */
.about-hero {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.about-hero .container {
  width: 100%;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-hero__content {
  position: relative;
  z-index: 1;
}

.about-hero__label {
  margin-bottom: var(--space-md);
}

.about-hero__line {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.4;
  margin-bottom: var(--space-xl);
}

.about-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.about-hero__title--accent {
  color: var(--color-accent);
  font-style: italic;
}

.about-hero__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 70vh;
}

.about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: filter 0.8s var(--ease-out);
}

.about-hero__image-wrap:hover .about-hero__image {
  filter: grayscale(0%);
}

/* Overview section */
.about-overview {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
}

.about-overview__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-overview__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--color-text);
  line-height: 1.55;
  max-width: 38ch;
}

.about-overview__body {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.9;
  max-width: 60ch;
  margin-top: var(--space-lg);
}

/* Facts — vertical editorial strip */
.about-overview__facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.about-overview__fact {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.about-overview__fact:first-child {
  border-left: none;
  padding-left: 0;
}

.about-overview__fact:last-child {
  padding-right: 0;
}

.about-overview__fact:hover .about-overview__fact-value {
  color: var(--color-accent);
}

.about-overview__fact-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-sm);
}

.about-overview__fact-value {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--color-text);
  transition: color 0.4s var(--ease-out);
}

/* Full-bleed image break */
.about-image-break {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.about-image-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%);
  transition: filter 1.2s var(--ease-out);
}

.about-image-break:hover .about-image-break__img {
  filter: grayscale(0%);
}

/* Licensing statement — pull-quote */
.about-licensing {
  padding: var(--space-3xl) 0;
  position: relative;
}

.about-licensing__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-licensing__label {
  margin-bottom: var(--space-xl);
}

.about-licensing__rule {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.3;
  margin: var(--space-xl) auto;
}

.about-licensing__statement {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  color: var(--color-text);
  line-height: 1.5;
}

.about-licensing__detail {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   Operating Principles — Premium Editorial Strips
   Inspired by luxury fashion house & architecture firm UIs.
   Full-width horizontal rows with cinematic number treatment.
   ═══════════════════════════════════════════════════ */
.about-principles {
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
}

.about-principles__header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.about-principles__label {
  white-space: nowrap;
  flex-shrink: 0;
}

.about-principles__header-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-border), transparent 80%);
}

/* Strip container */
.about-principles__strips {
  border-top: 1px solid var(--color-border);
}

/* Individual strip — full-width horizontal row */
.about-principles__strip {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  cursor: default;
  transition: border-color 0.6s var(--ease-out);
  overflow: hidden;
}

/* Accent underline — wipes in from left on hover */
.about-principles__strip::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), rgba(201, 185, 154, 0.3) 60%, transparent);
  transition: width 0.8s var(--ease-out);
  z-index: 1;
}

.about-principles__strip:hover::after {
  width: 100%;
}

.about-principles__strip:hover {
  border-bottom-color: rgba(201, 185, 154, 0.2);
}

/* Left column — Number + diamond */
.about-principles__strip-left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}

.about-principles__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--color-text);
  opacity: 0.2;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.about-principles__strip:hover .about-principles__num {
  opacity: 0.6;
  transform: translateY(-2px);
}

.about-principles__diamond {
  display: none;
}

/* Center column — Title + description */
.about-principles__strip-center {
  position: relative;
  z-index: 1;
}

.about-principles__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-text);
  margin-bottom: 0.4rem;
  transition: color 0.4s var(--ease-out);
  letter-spacing: -0.01em;
}

.about-principles__strip:hover .about-principles__title {
  color: var(--color-accent);
}

.about-principles__desc {
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.7;
  max-width: 520px;
  transition: color 0.4s var(--ease-out);
}

.about-principles__strip:hover .about-principles__desc {
  color: var(--color-text);
}

/* Right column — Editorial keyword (whispered) */
.about-principles__word {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-style: italic;
  color: var(--color-accent);
  opacity: 0;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transform: translateX(20px);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.about-principles__strip:hover .about-principles__word {
  opacity: 0.12;
  transform: translateX(0);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-hero__image-wrap {
    aspect-ratio: 4 / 3;
    max-height: 50vh;
  }

  .about-hero {
    min-height: auto;
    padding-bottom: var(--space-xl);
  }

  .about-overview__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image-break {
    height: 40vh;
  }

  .about-principles__strip {
    grid-template-columns: 4rem 1fr;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-sm);
  }

  .about-principles__word {
    display: none;
  }

  .about-principles__num {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .about-principles__title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }
}

/* --- Contact Page — Premium Editorial --- */
.contact-hero {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-xl);
  position: relative;
}

.contact-hero__label {
  margin-bottom: var(--space-lg);
}

.contact-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.contact-hero__intro {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

.contact-hero__email {
  display: inline-block;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  border-bottom: 1px solid rgba(201, 185, 154, 0.3);
  padding-bottom: 3px;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}

.contact-hero__email:hover {
  color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* Form section */
.contact-form-section {
  padding: var(--space-xl) 0 var(--space-3xl);
  border-top: 1px solid var(--color-border);
  position: relative;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 185, 154, 0.15), transparent);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-info__label {
  margin-bottom: var(--space-md);
}

.contact-form-info__text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.contact-form-info__direct {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.contact-form-info__direct-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-xs);
}

.contact-form-info__direct-email {
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  transition: color var(--duration-fast);
}

.contact-form-info__direct-email:hover {
  color: var(--color-accent-hover);
}

/* Form fields */
.contact-form {
  max-width: 100%;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-form__group {
  margin-bottom: var(--space-lg);
}

.contact-form__group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  padding: 0.875rem 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color var(--duration-normal) var(--ease-out);
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
  color: var(--color-text-subtle);
  font-style: italic;
  opacity: 0.7;
}

.contact-form__group input:hover,
.contact-form__group select:hover,
.contact-form__group textarea:hover {
  border-color: var(--color-border-hover);
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 1px 0 0 var(--color-accent), 0 4px 16px var(--color-accent-subtle);
}

.contact-form__group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235a5550'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.contact-form__group select option {
  background: var(--color-bg);
  color: var(--color-text);
}

.contact-form__group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.8;
}

.contact-form__submit {
  padding-top: var(--space-xl);
}

.contact-form__note {
  margin-top: var(--space-sm);
  font-size: 0.7rem;
  color: var(--color-text-subtle);
  letter-spacing: 0.02em;
}

/* Light mode — comprehensive text readability */
[data-theme="light"] .contact-form__group label {
  color: var(--color-text);
}

[data-theme="light"] .contact-form__group input,
[data-theme="light"] .contact-form__group select,
[data-theme="light"] .contact-form__group textarea {
  color: var(--color-text);
  border-bottom-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .contact-form__group input:focus,
[data-theme="light"] .contact-form__group select:focus,
[data-theme="light"] .contact-form__group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 1px 0 0 var(--color-accent);
}

[data-theme="light"] .contact-form__group input::placeholder,
[data-theme="light"] .contact-form__group textarea::placeholder {
  color: var(--color-text-subtle);
}

[data-theme="light"] .hero__subtitle--italic {
  color: var(--color-accent);
}

[data-theme="light"] .hero__body p {
  color: var(--color-text-muted);
}

[data-theme="light"] .featured__item {
  color: var(--color-text-muted);
}

[data-theme="light"] .motion__body {
  color: var(--color-text-muted);
}

[data-theme="light"] .motion__stat-label {
  color: var(--color-text-subtle);
}

[data-theme="light"] .value-prop__detail {
  color: var(--color-text-muted);
}

[data-theme="light"] .page-header__body p {
  color: var(--color-text-muted);
}

[data-theme="light"] .services-content__text p {
  color: var(--color-text-muted);
}

[data-theme="light"] .eliminate__struck {
  color: var(--color-text-muted);
}

[data-theme="light"] .eliminate__replace {
  color: var(--color-text);
}

[data-theme="light"] .offerings__card-desc {
  color: var(--color-text-muted);
}

[data-theme="light"] .offerings__card-includes li {
  color: var(--color-text-muted);
}

[data-theme="light"] .about-overview__body {
  color: var(--color-text-muted);
}

[data-theme="light"] .about-licensing__detail {
  color: var(--color-text-muted);
}

[data-theme="light"] .about-principles__desc {
  color: var(--color-text-muted);
}

[data-theme="light"] .contact-form-info__text {
  color: var(--color-text-muted);
}

[data-theme="light"] .contact-hero__intro {
  color: var(--color-text-muted);
}

[data-theme="light"] .footer__email {
  color: var(--color-text-muted);
}

[data-theme="light"] .footer__link {
  color: var(--color-text-subtle);
}

[data-theme="light"] .footer__copy {
  color: var(--color-text-subtle);
}

[data-theme="light"] .nav__link {
  color: var(--color-text);
}

[data-theme="light"] .text-label {
  color: var(--color-text-subtle);
}

[data-theme="light"] .stills__name {
  color: var(--color-text-subtle);
}

[data-theme="light"] .stills__item:hover .stills__name {
  color: var(--color-text);
}

[data-theme="light"] .stills__insta {
  opacity: 0.3;
}

/* Light mode — Featured In section depth */
[data-theme="light"] .featured--marquee {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

[data-theme="light"] .featured__item {
  color: var(--color-text);
  font-weight: 500;
}

/* Light mode — Value Prop warmer */
[data-theme="light"] .value-prop {
  background: var(--color-bg-subtle);
  border-color: rgba(0, 0, 0, 0.06);
}

/* Light mode — Stills section subtle warmth */
[data-theme="light"] .stills {
  background: var(--color-bg);
}

/* Light mode — CTA section presence */
[data-theme="light"] .cta-section {
  background: var(--color-bg-elevated);
}

/* Light mode — Footer depth */
[data-theme="light"] .footer {
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
}

/* Light mode — Hero headline stronger shadow for depth */
[data-theme="light"] .heading-display {
  color: var(--color-text);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
}

/* Light mode — Hero body text stronger */
[data-theme="light"] .hero__body p {
  color: var(--color-text-subtle);
}

/* Light mode — Motion section background */
[data-theme="light"] .motion {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-hero {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
  }
}

/* --- Legal Pages (Imprint / Privacy) --- */
.legal {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
}

.legal__title {
  margin-bottom: var(--space-xl);
}

.legal__section {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-md);
  border-left: 1px solid var(--color-border);
  transition: border-color var(--duration-normal) var(--ease-out);
}

.legal__section:hover {
  border-left-color: var(--color-accent);
}

.legal__section-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-md);
}

.legal__text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal__text p + p {
  margin-top: var(--space-sm);
}

.legal__text a {
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--duration-fast), border-color var(--duration-fast);
}

.legal__text a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.legal__text ul {
  margin-top: var(--space-sm);
}

.legal__text ul li {
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}

.legal__text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

/* --- Footer --- */
.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--color-border);
  position: relative;
  background: var(--color-bg);
}

.footer::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 185, 154, 0.1), transparent);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  color: var(--color-text-subtle);
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
}

.footer__social-link:hover {
  color: var(--color-accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.footer__email {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
}

.footer__email:hover {
  color: var(--color-accent);
}

.footer__links {
  display: flex;
  gap: var(--space-md);
}

.footer__link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--color-text-subtle);
}

/* --- Scroll Animations (GSAP-driven only, no CSS reveal delays) --- */

/* Line reveal animation */
.line-reveal {
  width: 0;
  height: 1px;
  background: var(--color-border);
  transition: width 1s var(--ease-out);
}

.line-reveal.visible {
  width: 100%;
}

.line-reveal--accent {
  background: linear-gradient(to right, var(--color-accent), transparent);
}

/* Page transition overlay — branded loading */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-transition__logo {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  opacity: 0;
  animation: loaderFade 0.6s ease forwards;
}

@keyframes loaderFade {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.page-transition.loaded {
  opacity: 0;
}

.page-transition.loaded .page-transition__logo {
  opacity: 0;
}

/* --- Featured In Marquee (GSAP-powered infinite scroll) --- */
.featured--marquee {
  overflow: hidden;
  position: relative;
  padding: var(--space-lg) 0;
}

.featured--marquee .featured__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.featured--marquee .featured__track-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.featured--marquee .featured__item {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
}

.featured--marquee .featured__item + .featured__item::before {
  margin: 0 clamp(1.5rem, 2.5vw, 2.5rem);
}

.featured--marquee .featured__item:first-child::before {
  content: '\00B7';
  display: inline-block;
  margin: 0 clamp(1.5rem, 2.5vw, 2.5rem);
  color: var(--color-border-hover);
  font-style: normal;
  font-size: 1.2em;
}

.featured--marquee .featured__label {
  text-align: center;
  margin-bottom: var(--space-sm);
  display: block;
}

/* Fade edges — wider for cinematic feel */
.featured--marquee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: clamp(80px, 12vw, 180px);
  height: 100%;
  background: linear-gradient(to right, var(--color-bg-elevated), transparent);
  pointer-events: none;
}

.featured--marquee::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: clamp(80px, 12vw, 180px);
  height: 100%;
  background: linear-gradient(to left, var(--color-bg-elevated), transparent);
  pointer-events: none;
}

/* --- Process Page — Premium Editorial --- */
/* Process Hero — compact */
.process-hero {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  position: relative;
}

.process-hero__label {
  margin-bottom: var(--space-md);
}

.process-hero__line {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.4;
  margin-bottom: var(--space-xl);
}

.process-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.process-hero__title--accent {
  color: var(--color-accent);
  font-style: italic;
}

/* ── Process Phases ── */
.proc {
  padding: var(--space-lg) 0 var(--space-2xl);
}

.proc__phase {
  display: grid;
  grid-template-columns: clamp(5rem, 12vw, 9rem) 1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  align-items: start;
}

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

/* Left — large number */
.proc__phase-left {
  position: relative;
}

.proc__phase-num {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--color-accent);
  opacity: 0.12;
  line-height: 1;
  transition: opacity 0.6s var(--ease-out);
}

.proc__phase:hover .proc__phase-num {
  opacity: 0.3;
}

/* Right — content */
.proc__phase-right {
  padding-top: 0.5rem;
}

.proc__phase-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: color 0.4s var(--ease-out);
}

.proc__phase:hover .proc__phase-title {
  color: var(--color-accent);
}

.proc__phase-desc {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: var(--space-md);
}

.proc__phase-gate {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-style: italic;
  color: var(--color-accent);
  opacity: 0.55;
}

@media (max-width: 768px) {
  .proc__phase {
    grid-template-columns: 3.5rem 1fr;
    gap: var(--space-md);
    padding: var(--space-xl) 0;
  }

  .proc__phase-num {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }
}

/* --- Section Number Accent (editorial page numbering) --- */
.section-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--color-accent);
  opacity: 0.4;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-sm);
}

/* --- Horizontal Divider --- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--space-lg);
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .stills__image-wrapper img {
    filter: none;
  }
}

/* ═══════════════════════════════════════════════
   Services Page — Redesigned Layout
   ═══════════════════════════════════════════════ */

/* Hero with magazine image */
.svc-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.svc-hero__image {
  width: 100%;
  max-height: 65vh;
  overflow: hidden;
  margin-top: var(--nav-height);
  position: relative;
}

/* Subtle bottom gradient — image bleeds into text section */
.svc-hero__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
}

.svc-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  max-height: 65vh;
}

.svc-hero__text {
  padding: var(--space-lg) 0 var(--space-sm);
  max-width: 680px;
  position: relative;
}

/* Accent line above title — editorial anchor detail */
.svc-hero__text::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: var(--space-lg);
  opacity: 0.6;
}

.svc-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  /* Layered text-shadow — subtle depth, not glow */
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.03);
}

.svc-hero__sub {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  max-width: 540px;
}

/* Light mode — warmer text shadow, stronger accent line */
[data-theme="light"] .svc-hero__title {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 20px rgba(125, 104, 67, 0.06);
}

[data-theme="light"] .svc-hero__text::before {
  background: var(--color-accent);
  opacity: 0.5;
}

/* Dark mode — image subtle warm tint for depth */
.svc-hero__image img {
  filter: brightness(0.95) contrast(1.02);
}

[data-theme="light"] .svc-hero__image img {
  filter: brightness(1.0) contrast(1.0) saturate(0.95);
}

/* ── Services Page — Premium Editorial Redesign ── */

/* Eliminate section — generous spacing */
.eliminate {
  padding: var(--space-xl) 0 var(--space-2xl);
}

/* Eliminate — editorial numbers */
.eliminate__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-accent);
  opacity: 0.12;
  line-height: 1;
  transition: opacity 0.6s var(--ease-out);
}

.eliminate__row {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.eliminate__row:last-child {
  border-bottom: none;
}

/* Offerings — Editorial strips, no background hover */
.offerings {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.offerings__header {
  margin-bottom: var(--space-xl);
  text-align: left;
}

.offerings__strips {
  border-top: 1px solid var(--color-border);
}

.offerings__strip {
  display: grid;
  grid-template-columns: clamp(6rem, 18vw, 14rem) 1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.offerings__strip:hover {
  border-bottom-color: rgba(201, 185, 154, 0.25);
}

.offerings__strip-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--color-accent);
  opacity: 0.1;
  line-height: 1;
  transition: opacity 0.6s var(--ease-out);
}

.offerings__strip:hover .offerings__strip-num {
  opacity: 0.25;
}

.offerings__strip-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  transition: color 0.4s var(--ease-out);
}

.offerings__strip:hover .offerings__strip-title {
  color: var(--color-accent);
}

.offerings__strip-desc {
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: var(--space-lg);
}

.offerings__strip-includes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

.offerings__strip-includes span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  transition: color 0.3s var(--ease-out);
}

.offerings__strip:hover .offerings__strip-includes span {
  color: var(--color-text-muted);
}

/* Light mode — no background changes, only subtle accents */
[data-theme="light"] .offerings__strip-includes span {
  color: var(--color-text-subtle);
}

[data-theme="light"] .svc-hero__sub {
  color: var(--color-text-muted);
}

[data-theme="light"] .eliminate {
  background: var(--color-bg);
}

[data-theme="light"] .offerings {
  background: var(--color-bg);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .offerings__strips .offerings__strip {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .offerings__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .eliminate__content {
    gap: var(--space-sm);
  }

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

  .about-principles__item:nth-child(2),
  .about-principles__item:nth-child(4) {
    border-right: none;
  }

  .process-phases .container::before {
    display: none;
  }

  .phase {
    padding-left: 0;
  }

  .phase::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 6rem;
    --space-2xl: 4.5rem;
    --space-xl: 3.5rem;
  }

  .nav {
    padding: 0 var(--space-sm);
  }

  .nav__logo {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  .nav__links {
    display: none;
  }

  .nav__right {
    gap: var(--space-xs);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }

  .heading-display {
    letter-spacing: 0.06em;
  }

  .stills__grid,
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  .motion__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .motion__video-wrapper {
    max-width: 300px;
  }

  .motion__stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .press-item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .press-item__number {
    display: none;
  }

  .press-item__link {
    padding-top: 0;
  }

  .phase__header {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .services-image__wrapper {
    aspect-ratio: 16 / 9;
  }

  .eliminate__row {
    grid-template-columns: 2.5rem 1fr;
  }

  .eliminate__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .eliminate__arrow {
    display: none;
  }

  .offerings__grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .cta-section::before {
    display: none;
  }

  .contact-hero {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }

  .featured__list {
    flex-direction: column;
    gap: 0;
  }

  .featured__item + .featured__item::before {
    display: none;
  }

  .featured__item {
    padding: 0.35rem 0;
  }
}
