/* ============================================================
   HOLKAM ADVISORY — STYLES v2
   Greensward + Emerald Fairways inspired, multi-page
   Black & White palette exclusively
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --color-black:       #000000;
  --color-white:       #FFFFFF;
  --color-dark:        #1A1A1A;
  --color-dark-medium: #2D2D2D;
  --color-mid:         #888888;
  --color-subtle:      #AAAAAA;
  --color-light:       #DEDEDE;
  --color-off-white:   #F5F3F0;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui:      'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Crimson Text', Georgia, serif;

  /* Type scale */
  --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.75rem;
  --text-5xl:  3.5rem;
  --text-6xl:  5rem;
  --text-hero: 6rem;

  /* Spacing */
  --space-4:   0.25rem;
  --space-8:   0.5rem;
  --space-12:  0.75rem;
  --space-16:  1rem;
  --space-24:  1.5rem;
  --space-32:  2rem;
  --space-48:  3rem;
  --space-64:  4rem;
  --space-80:  5rem;
  --space-120: 7.5rem;
  --space-160: 10rem;

  /* Layout */
  --container-max: 1400px;
  --nav-height:    80px;

  /* Motion */
  --transition-fast: 150ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm:      0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md:      0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg:      0 24px 64px rgba(0, 0, 0, 0.14);
  --shadow-collage: 0 16px 48px rgba(0, 0, 0, 0.22);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.7;
  animation: pageReveal 0.45s ease forwards;
}

@keyframes pageReveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

img, video { display: block; max-width: 100%; }
ul, ol     { list-style: none; }
a          { color: inherit; text-decoration: none; }
button     { cursor: pointer; border: none; background: transparent; font-family: inherit; }

a, button  { -webkit-tap-highlight-color: transparent; }

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


/* ============================================================
   3. UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-48);
}

.container--narrow {
  max-width: 900px;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-subtle);
  margin-bottom: var(--space-24);
  display: block;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.4);
}

.section-headline {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: var(--space-24);
  letter-spacing: -0.01em;
}

.section-headline--italic { font-style: italic; }
.section-headline--light  { color: var(--color-white); }

.section-subhead {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-mid);
  line-height: 1.65;
  margin-bottom: var(--space-48);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-16) var(--space-48);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-fast);
}

.btn:hover { transform: translateY(-2px); }

.btn--white {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}
.btn--white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.btn--dark:hover {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border-color: rgba(0, 0, 0, 0.35);
}
.btn--outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-black);
}


/* ============================================================
   4. IMAGE PLACEHOLDER SYSTEM
   USER: Replace .img-ph divs with actual <img> tags or set
         background-image on the element when assets are ready.
   ============================================================ */
.img-ph {
  background-color: #1C1C1C;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.img-ph::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.10);
  pointer-events: none;
  z-index: 1;
}

.img-ph__label {
  position: relative;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  text-align: center;
  padding-inline: var(--space-24);
  line-height: 2.2;
}

/* Full-coverage image — use wherever img-ph is replaced with a real photo */
.fill-img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

/* Light placeholder for dark-background sections */
.img-ph--light {
  background-color: var(--color-off-white);
}
.img-ph--light::before {
  border-color: rgba(0, 0, 0, 0.08);
}
.img-ph--light .img-ph__label {
  color: rgba(0, 0, 0, 0.18);
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding-inline: var(--space-48);
  transition:
    background-color var(--transition-slow),
    box-shadow var(--transition-slow);
}

/* Default: dark text (home page has light hero) */
.site-nav .nav-links a,
.site-nav .nav-logo__text,
.site-nav .nav-logo__sub {
  color: var(--color-dark);
  transition: color var(--transition-slow), opacity var(--transition-fast);
}
.site-nav .hamburger__bar {
  background-color: var(--color-dark);
}
.site-nav .btn--outline {
  color: var(--color-dark);
  border-color: rgba(0, 0, 0, 0.35);
}

/* Inverted modifier: white text (inner pages with dark hero) */
.site-nav--inverted .nav-links a,
.site-nav--inverted .nav-logo__text,
.site-nav--inverted .nav-logo__sub {
  color: var(--color-white);
}
.site-nav--inverted .hamburger__bar {
  background-color: var(--color-white);
}
.site-nav--inverted .btn--outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}
.site-nav--inverted .btn--outline:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* Scrolled: always white background, dark text */
.site-nav.scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.site-nav.scrolled .nav-links a,
.site-nav.scrolled .nav-logo__text,
.site-nav.scrolled .nav-logo__sub {
  color: var(--color-dark) !important;
}
.site-nav.scrolled .hamburger__bar {
  background-color: var(--color-dark) !important;
}
.site-nav.scrolled .btn--outline {
  color: var(--color-dark) !important;
  border-color: rgba(0, 0, 0, 0.35) !important;
}
.site-nav.scrolled .btn--outline:hover {
  background: var(--color-dark) !important;
  color: var(--color-white) !important;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  gap: var(--space-32);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-48);
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.nav-links a:hover { opacity: 1; }

.nav-links a.active {
  opacity: 1;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.nav-links--right {
  justify-content: flex-end;
}

.nav-logo {
  text-align: center;
  display: block;
}

.nav-logo__text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.nav-logo__sub {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 4px;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-32);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
}

.hamburger__bar {
  display: block;
  height: 1px;
  transition:
    background-color var(--transition-slow),
    transform var(--transition-base),
    opacity var(--transition-base);
}

.hamburger.is-active .hamburger__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .hamburger__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* ============================================================
   6. MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.mobile-menu.is-open { pointer-events: all; }

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }

.mobile-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 88vw);
  background-color: var(--color-white);
  padding: var(--space-80) var(--space-48) var(--space-64);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.mobile-menu.is-open .mobile-menu__drawer { transform: translateX(0); }

.mobile-menu__close {
  position: absolute;
  top: var(--space-24);
  right: var(--space-32);
  font-size: 2rem;
  color: var(--color-dark);
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-dark);
  display: block;
  padding-block: var(--space-16);
  border-bottom: 1px solid var(--color-light);
  transition: padding-left var(--transition-base);
}
.mobile-link:hover { padding-left: var(--space-16); }

.mobile-cta {
  align-self: flex-start;
  margin-top: auto;
}


/* ============================================================
   7. MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background-color: var(--color-dark);
  padding-block: 14px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee__track {
  display: inline-flex;
  gap: var(--space-48);
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}

.marquee-strip:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-48);
  white-space: nowrap;
}

.marquee__dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   8. ROTATING BADGE
   ============================================================ */
.rotating-badge {
  width: 84px;
  height: 84px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rotating-badge__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateBadge 12s linear infinite;
}

.rotating-badge__icon {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: var(--color-dark);
  transition: transform var(--transition-base);
}

.rotating-badge:hover .rotating-badge__icon {
  transform: scale(1.2);
}

.rotating-badge--light .rotating-badge__icon {
  color: var(--color-white);
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* ============================================================
   9. HOME — HERO (Full-screen video, Greensward style)
   ============================================================ */
.hero-video {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient: subtle at top, heavy at bottom so text is always legible */
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.60) 75%,
    rgba(0, 0, 0, 0.82) 100%
  );
  z-index: 1;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-80) var(--space-80);
  max-width: 860px;
  color: var(--color-white);
}

.hero-video__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  font-style: italic;
  line-height: 1.0;
  color: var(--color-white);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-24);
}

.hero-video__subhead {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: var(--space-48);
  max-width: 520px;
}

/* Scroll indicator — bottom-right */
.hero-video__scroll {
  position: absolute;
  bottom: var(--space-48);
  right: var(--space-80);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
}

.hero-video__scroll-label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-video__scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 0.7;  transform: scaleY(0.6); }
}



/* ============================================================
   10. EDITORIAL SPLIT — "Why Holkam?" (Emerald Fairways style)
   Left: large italic headline + thin rule + numbered features
   Right: portrait image placeholder
   ============================================================ */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-off-white);
  overflow: hidden;
}

.editorial-split__text {
  padding: var(--space-120) var(--space-80);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Large italic headline — Emerald Fairways signature style */
.editorial-split__headline {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.0;
  color: var(--color-dark);
  padding-left: var(--space-32);
  border-left: 1px solid var(--color-light);
  margin-bottom: var(--space-64);
  letter-spacing: -0.02em;
}

/* Numbered feature list, same left border rule as headline */
.editorial-split__features {
  padding-left: var(--space-32);
  border-left: 1px solid var(--color-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-48);
}

.editorial-feature__number {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-subtle);
  display: block;
  margin-bottom: var(--space-8);
  letter-spacing: 0.05em;
}

.editorial-feature__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: var(--space-12);
  line-height: 1.25;
}

.editorial-feature__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-mid);
  line-height: 1.85;
}

.editorial-split__image {
  min-height: 720px;
  overflow: hidden;
}

.editorial-split__image .img-ph {
  width: 100%;
  height: 100%;
  min-height: 720px;
}


/* ============================================================
   11. VISION / QUOTE SECTION (Greensward scattered photo style)
   ============================================================ */
.vision-section {
  position: relative;
  background-color: var(--color-white);
  padding-block: 180px;
  overflow: hidden;
}

.vision-section__scattered {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vision-scattered__item {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.vision-scattered__item .img-ph,
.vision-scattered__item .fill-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* 6 scattered positions — 3 per side, never crossing the center content column */
.vision-scattered__item--1 { top: 5%;    left: 2%;   width: 165px; height: 215px; transform: rotate(-3deg); }
.vision-scattered__item--2 { top: 38%;   left: 3%;   width: 130px; height: 170px; transform: rotate(2deg);  }
.vision-scattered__item--3 { bottom: 5%; left: 1%;   width: 168px; height: 218px; transform: rotate(-2deg); }
.vision-scattered__item--4 { top: 8%;    right: 4%;  width: 148px; height: 108px; transform: rotate(-1.5deg); }
.vision-scattered__item--5 { top: 36%;   right: 3%;  width: 118px; height: 158px; transform: rotate(2.5deg); }
.vision-scattered__item--6 { bottom: 6%; right: 5%;  width: 133px; height: 95px;  transform: rotate(3deg);  }

.vision-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: var(--space-24);
}

.vision-section__quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-dark);
  margin-bottom: var(--space-32);
}

.vision-section__signature {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-subtle);
  display: block;
  margin-bottom: var(--space-48);
}

.vision-section__link {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mid);
  border-bottom: 1px solid var(--color-light);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  display: inline-block;
}
.vision-section__link:hover {
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.vision-badge-wrap {
  position: absolute;
  bottom: var(--space-48);
  right: var(--space-48);
  z-index: 2;
}


/* ============================================================
   12. SERVICES PREVIEW (Home page — dark cards)
   ============================================================ */
.services-preview {
  background-color: var(--color-dark);
  padding-block: var(--space-120);
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: var(--space-64);
}

.services-preview__card {
  background-color: var(--color-dark);
  padding: var(--space-64) var(--space-48);
  transition: background-color var(--transition-base);
  display: flex;
  flex-direction: column;
}

.services-preview__card:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.services-preview__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.07);
  display: block;
  margin-bottom: var(--space-24);
  line-height: 1;
}

.services-preview__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--space-16);
  line-height: 1.25;
}

.services-preview__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.85;
  flex: 1;
}

.services-preview__link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--space-32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.services-preview__link:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}


/* ============================================================
   13. PANORAMIC STRIP (Home)
   ============================================================ */
.panoramic-strip {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.panoramic-strip__bg {
  width: 100%;
  height: 100%;
  display: block;
}

.panoramic-strip__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.panoramic-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-32);
}

.panoramic-strip__headline {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  font-style: italic;
  color: var(--color-white);
  letter-spacing: -0.01em;
  max-width: 820px;
  padding-inline: var(--space-24);
  line-height: 1.15;
}


/* ============================================================
   14. INNER PAGES — Page Hero
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-80);
  padding-top: var(--nav-height);
  background-color: var(--color-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Video background */
.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Image placeholder fills the entire page hero */
.page-hero > .img-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.75) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-inline: var(--space-80);
  width: 100%;
}

.page-hero__eyebrow {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: var(--space-16);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: -0.03em;
}


/* ============================================================
   15. SERVICES PAGE — Alternating Editorial Split
   ============================================================ */
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 65vh;
  align-items: stretch;
}

.service-section:nth-child(even) {
  direction: rtl;
}
.service-section:nth-child(even) .service-section__text {
  direction: ltr;
}

.service-section:nth-child(odd) {
  background-color: var(--color-white);
}
.service-section:nth-child(even) {
  background-color: var(--color-off-white);
}

.service-section__text {
  padding: var(--space-120) var(--space-80);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-section__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-light);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-24);
}

.service-section__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.1;
  margin-bottom: var(--space-24);
  letter-spacing: -0.01em;
}

.service-section__body {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: var(--color-mid);
  line-height: 1.8;
  margin-bottom: var(--space-48);
}

.service-section__detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  margin-bottom: var(--space-48);
  padding-left: var(--space-24);
  border-left: 1px solid var(--color-light);
}

.service-section__detail li {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-mid);
  line-height: 1.6;
}

.service-section__image {
  overflow: hidden;
}

.service-section__image .img-ph {
  width: 100%;
  height: 100%;
  min-height: 500px;
}


/* ============================================================
   16. ABOUT PAGE — Sections
   ============================================================ */
.about-narrative {
  background-color: var(--color-white);
  padding-block: var(--space-120);
}

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

.about-narrative__lead {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

.about-narrative__body {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: var(--color-mid);
  line-height: 1.85;
}

.about-narrative__body p + p {
  margin-top: var(--space-24);
}

/* Values Grid */
.about-values {
  background-color: var(--color-off-white);
  padding-block: var(--space-120);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--color-light);
  border: 1px solid var(--color-light);
  margin-top: var(--space-64);
}

.about-value {
  background-color: var(--color-off-white);
  padding: var(--space-64) var(--space-48);
  transition: background-color var(--transition-base);
}

.about-value:hover {
  background-color: var(--color-white);
}

.about-value__number {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--color-subtle);
  display: block;
  margin-bottom: var(--space-24);
}

.about-value__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: var(--space-16);
  line-height: 1.2;
}

.about-value__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-mid);
  line-height: 1.85;
}


/* ============================================================
   17. APPROACH PAGE — Numbered Process
   ============================================================ */
.approach-process {
  background-color: var(--color-white);
  padding-block: var(--space-120);
}

.approach-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: var(--space-64);
  padding-block: var(--space-64);
  border-bottom: 1px solid var(--color-light);
  align-items: start;
}

.approach-step:first-child { border-top: 1px solid var(--color-light); }

.approach-step__numeral {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  font-style: italic;
  color: var(--color-light);
  line-height: 1;
  padding-top: 6px;
}

.approach-step__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.approach-step__body {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: var(--color-mid);
  line-height: 1.8;
}

/* Dark quote band (Approach) */
.approach-quote {
  background-color: var(--color-dark);
  padding-block: var(--space-160);
  text-align: center;
}

.approach-quote__text {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.4;
  max-width: 820px;
  margin-inline: auto;
  letter-spacing: -0.01em;
}


/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-dark);
  text-align: center;
  padding: var(--nav-height) var(--space-24) var(--space-80);
  position: relative;
  overflow: hidden;
}

.contact-section > .img-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

.contact-section__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.contact-section__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-32);
}

.contact-section__sub {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: var(--space-64);
  max-width: 560px;
  margin-inline: auto;
}

.contact-email {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 6px;
  display: inline-block;
  transition: border-color var(--transition-fast);
  margin-bottom: var(--space-64);
}

.contact-email:hover { border-color: var(--color-white); }

.contact-section__detail {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  line-height: 2.2;
}


/* ============================================================
   19. CTA BAND (shared across pages)
   ============================================================ */
.cta-band {
  position: relative;
  background-color: var(--color-dark);
  padding-block: var(--space-120);
  text-align: center;
  overflow: hidden;
}

.cta-band > .img-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-band__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.82);
  z-index: 1;
}

.cta-band__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-inline: auto;
  padding-inline: var(--space-24);
}

.cta-band__headline {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-24);
  letter-spacing: -0.01em;
}

.cta-band__sub {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-48);
}


/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: var(--space-48);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-24);
}

.footer__copy {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  white-space: nowrap;
}

.footer__email {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
  text-align: right;
  transition: color var(--transition-fast);
}
.footer__email:hover { color: var(--color-white); }


/* ============================================================
   21. SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.animate-on-scroll.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.animate-on-scroll-left.fade-in {
  opacity: 1;
  transform: translateX(0);
}


/* Hero text stagger */
.animate-hero {
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   19. NAV LOGO IMAGE
   ============================================================ */
.nav-logo__img {
  height: 52px;
  width: auto;
  display: block;
}

/* Scrolled state: swap to dark logo if needed */
.site-nav.scrolled .nav-logo__img {
  filter: invert(1); /* white logo → black when nav turns white */
}


/* ============================================================
   20. ABOUT STORY SECTION
   ============================================================ */
.about-story {
  background-color: var(--color-black);
  padding-block: var(--space-160);
  padding-inline: var(--space-48);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-80);
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
}

.about-story__headline {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.02;
  color: var(--color-white);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-24);
}

.about-story__sub {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: var(--space-32);
}

.about-story__body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: var(--space-24);
}

.about-story__cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--space-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 4px;
  transition: color var(--transition-base), border-color var(--transition-base);
}

.about-story__cta:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

.about-story__image {
  height: 580px;
  overflow: hidden;
}

.about-story__image .img-ph {
  width: 100%;
  height: 100%;
}


/* ============================================================
   21. INSIGHTS & ARTICLES
   ============================================================ */
.insights-section {
  background-color: #0c0c0f;
  padding-block: var(--space-120);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-48);
  margin-top: var(--space-64);
}

.article-card {
  background: #13131a;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

/* Image area */
.article-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.article-card:hover .article-card__img img {
  transform: scale(1.04);
}

.article-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 30%, #13131a 100%);
}

/* Category pill */
.article-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Card body */
.article-card__body {
  padding: var(--space-24);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-12);
}

.article-card__title {
  font-family: var(--font-ui);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.article-card__excerpt {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  flex: 1;
}

/* Footer row */
.article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-16);
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: var(--space-8);
}

.article-card__meta {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.28);
}

.article-card__dot { display: none; }

.article-card__link {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  color: #a78bfa;
  transition: color var(--transition-fast);
}

.article-card:hover .article-card__link { color: #c4b5fd; }


/* ============================================================
   22. FOUNDER SECTION — Horizontal split (photo left, text right)
   ============================================================ */
.founder-section {
  background-color: var(--color-black);
  padding-block: var(--space-120);
}

.founder-section__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-80);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-80);
  align-items: center;
}

.founder-section__photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  width: 100%;
}

.founder-section__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  background-color: var(--color-black);
}

.founder-section__img-ph {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
}

.founder-section__text {
  display: flex;
  flex-direction: column;
}

.founder-section__headline {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-32);
}

.founder-section__headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

.founder-section__bio p {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: var(--space-24);
}

.founder-section__bio p:last-child { margin-bottom: 0; }

.founder-section__signature {
  margin-top: var(--space-48);
}

.founder-section__sig-img {
  height: 64px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.founder-section__sig-text {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.founder-section__email {
  display: inline-block;
  margin-top: var(--space-24);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  transition: color var(--transition-base);
}

.founder-section__email:hover { color: rgba(255, 255, 255, 0.75); }


/* ============================================================
   23. OUR TEAM SECTION
   ============================================================ */
.team-section {
  background-color: var(--color-white);
  padding-block: var(--space-120);
}

.team-section .section-headline {
  margin-bottom: var(--space-80);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-64);
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  max-width: 360px;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: var(--space-8);
}

.team-card__role {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: var(--space-24);
}

.team-card__bio {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: var(--color-dark-medium);
  line-height: 1.8;
  margin-bottom: var(--space-24);
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.team-card__linkedin:hover {
  color: var(--color-mid);
  border-color: rgba(0,0,0,0.3);
}

/* ============================================================
   24. ENHANCED FOOTER
   ============================================================ */
.site-footer-enhanced {
  background-color: var(--color-black);
  color: var(--color-white);
}

.footer-main {
  padding-block: var(--space-80);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-64);
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-24);
}

.footer-logo__img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.footer-logo__text {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-white);
}

.footer-logo__sub {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-top: var(--space-8);
}

.footer-col__heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-24);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.footer-links-list a {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

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

.footer-email-link {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-16);
  transition: color var(--transition-fast);
  word-break: break-all;
}

.footer-email-link:hover { color: var(--color-white); }

.footer-location {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-24);
}

.footer-social {
  display: flex;
  gap: var(--space-16);
}

.footer-social__link {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-base);
}

.footer-social__link:hover { color: var(--color-white); }

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-24);
}

.footer-bar__copy {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}

.footer-bar__legal {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer-bar__legal a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition-fast);
}

.footer-bar__legal a:hover { color: var(--color-white); }


/* ============================================================
   22. RESPONSIVE — 1280px
   ============================================================ */
@media (max-width: 1280px) {
  :root {
    --text-hero: 4.75rem;
    --text-6xl:  4rem;
  }

  .container { padding-inline: var(--space-32); }
  .site-nav  { padding-inline: var(--space-32); }

  .editorial-split__headline { font-size: var(--text-5xl); }
  .hero-video__headline { font-size: var(--text-6xl); }
}


/* ============================================================
   22. RESPONSIVE — 1024px (Tablet)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --text-hero: 4rem;
    --text-6xl:  3.5rem;
    --text-5xl:  2.75rem;
  }

  /* About story: stack */
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__image { height: 420px; }

  /* Insights: 2-col */
  .insights-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer: 2×2 grid */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-48); }

  /* Editorial split: stack */
  .editorial-split {
    grid-template-columns: 1fr;
  }
  .editorial-split__image { min-height: 500px; }
  .editorial-split__image .img-ph { min-height: 500px; }

  /* Service sections: stack */
  .service-section {
    grid-template-columns: 1fr;
  }
  .service-section:nth-child(even) { direction: ltr; }

  /* Approach steps */
  .approach-step {
    grid-template-columns: 60px 1fr;
    gap: var(--space-32);
  }
  .approach-step__body { grid-column: 2; }

  /* About narrative */
  .about-narrative__grid { grid-template-columns: 1fr; gap: var(--space-48); }

  /* About values */
  .about-values__grid { grid-template-columns: 1fr; }

  /* Services preview */
  .services-preview__grid { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero__title { font-size: var(--text-6xl); }
}


/* ============================================================
   22. RESPONSIVE — 768px (Mobile)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --text-hero: 3.25rem;
    --text-6xl:  2.75rem;
    --text-5xl:  2.25rem;
    --text-4xl:  2rem;
  }

  /* Nav: hamburger only */
  .nav-links,
  .nav-cta  { display: none !important; }
  .hamburger { display: flex; }

  .site-nav  { padding-inline: var(--space-24); }
  .nav-inner { grid-template-columns: auto 1fr auto; }

  /* About story */
  .about-story { padding-block: var(--space-80); padding-inline: var(--space-24); }
  .about-story__image { height: 340px; }

  /* Insights: 1-col */
  .insights-grid { grid-template-columns: 1fr; gap: var(--space-32); }

  /* Founder */
  .founder-section { padding-block: var(--space-80); }
  .founder-section__inner {
    grid-template-columns: 1fr;
    padding-inline: var(--space-24);
    gap: var(--space-48);
  }
  .founder-section__photo { max-width: 320px; aspect-ratio: 3/4; }
  .founder-section__headline { font-size: var(--text-4xl); }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-48);
  }
  .footer-bar__inner {
    flex-direction: column;
    gap: var(--space-12);
    text-align: center;
  }
  .footer-bar__legal { flex-wrap: wrap; justify-content: center; }
  .nav-logo  { text-align: center; padding-left: 0; }

  /* Container */
  .container { padding-inline: var(--space-24); }

  /* Hero video */
  .hero-video__content { padding: 0 var(--space-24) var(--space-64); }
  .hero-video__subhead  { display: none; }
  .hero-video__scroll   { right: var(--space-24); }

  /* Editorial split */
  .editorial-split__text { padding: var(--space-64) var(--space-24); }
  .editorial-split__headline { font-size: var(--text-4xl); }

  /* Approach steps: simplified */
  .approach-step {
    grid-template-columns: 1fr;
    gap: var(--space-16);
    padding-block: var(--space-48);
  }

  /* Service section text */
  .service-section__text { padding: var(--space-64) var(--space-24); }
  .service-section__title { font-size: var(--text-4xl); }

  /* Vision scattered — hide 2 on mobile, keep 4 */
  .vision-scattered__item--2,
  .vision-scattered__item--5 { display: none; }

  /* Vision section */
  .vision-section { padding-block: var(--space-120); }

  /* Contact */
  .contact-section__headline { font-size: var(--text-5xl); }
  .contact-email             { font-size: var(--text-2xl); }

  /* Page hero */
  .page-hero__title { font-size: var(--text-5xl); }
  .page-hero__content { padding-inline: var(--space-24); }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-16);
  }
  .footer__email { text-align: center; }

  /* Panoramic strip */
  .panoramic-strip { height: 380px; }
  .panoramic-strip__headline { font-size: var(--text-4xl); }

  /* Sections */
  .about-narrative,
  .about-values,
  .approach-process {
    padding-block: var(--space-80);
  }

  /* About values */
  .about-value { padding: var(--space-48) var(--space-24); }

  /* Services preview cards */
  .services-preview__card { padding: var(--space-48) var(--space-24); }

  /* Reduce oversized vertical padding on mobile */
  .cta-band               { padding-block: var(--space-80); }
  .approach-quote         { padding-block: var(--space-80); }
  .services-preview       { padding-block: var(--space-80); }
  .insights-section       { padding-block: var(--space-80); }
  .news-sources           { padding-top: var(--space-80); padding-bottom: var(--space-64); }
  .team-section           { padding-block: var(--space-80); }
  .why-holkam             { padding-block: var(--space-80); }

  /* Founder photo: center when stacked */
  .founder-section__photo { margin-inline: auto; }

  /* Buttons: less horizontal padding on mobile */
  .btn { padding-inline: var(--space-32); }

  /* Page hero: less height on small screens */
  .page-hero { min-height: 60vh; }
}


/* ============================================================
   22. RESPONSIVE — 480px (Small mobile)
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --text-hero: 2.5rem;
    --text-5xl:  2rem;
  }

  /* Hide all scattered photos — too crowded on small phones */
  .vision-scattered__item--1,
  .vision-scattered__item--3,
  .vision-scattered__item--4,
  .vision-scattered__item--6 { display: none; }
  .vision-section { padding-block: var(--space-80); }

  /* Hide scroll indicator */
  .hero-video__scroll { display: none; }

  /* Contact page headline */
  .contact-section__headline { font-size: var(--text-4xl); }
  .contact-email { font-size: var(--text-xl); }

  /* Mobile menu links: tighter on very small screens */
  .mobile-link { font-size: var(--text-2xl); }

  /* Approach quote */
  .approach-quote__text { font-size: var(--text-3xl); }

  /* Hero content */
  .hero-video__headline { font-size: 2.5rem; }
}


/* ============================================================
   23. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  body { animation: none; }

  .animate-hero,
  .animate-on-scroll,
  .animate-on-scroll-left {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-video__scroll-line { animation: none; }

  .marquee__track { animation: none; }

  .rotating-badge__svg { animation: none; }

  .btn:hover { transform: none; }

  .page-hero,
  .panoramic-strip__bg {
    background-attachment: scroll;
  }
}


/* ============================================================
   24. WHY CHOOSE HOLKAM — trust-building section
   ============================================================ */
.why-holkam {
  background-color: var(--color-off-white);
  padding-block: var(--space-120);
}

.why-holkam__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-48);
}

.why-holkam__headline {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.2;
  margin-top: var(--space-16);
  margin-bottom: var(--space-64);
}

.why-holkam__headline em {
  font-style: italic;
  color: var(--color-mid);
}

.why-holkam__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32);
}

.why-holkam__grid .why-card:nth-child(4),
.why-holkam__grid .why-card:nth-child(5) {
  /* bottom row: center the 2 cards in a 3-col grid */
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-light);
  border-radius: 4px;
  padding: var(--space-48) var(--space-32);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-dark);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  flex-shrink: 0;
}

.why-card__title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-dark);
}

.why-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-mid);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .why-holkam__grid { grid-template-columns: repeat(2, 1fr); }
  .why-holkam__inner { padding-inline: var(--space-48); }
}

@media (max-width: 768px) {
  .why-holkam__grid { grid-template-columns: 1fr; }
  .why-holkam__inner { padding-inline: var(--space-24); }
  .why-holkam__headline { font-size: var(--text-3xl); }
}


/* ============================================================
   25. VERIFIED NEWS SOURCES — auto-scrolling carousel
   ============================================================ */
.news-sources {
  background-color: var(--color-black);
  padding-top: var(--space-120);
  padding-bottom: var(--space-80);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.news-sources__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-48);
  margin-bottom: var(--space-64);
}

.news-sources__headline {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-top: var(--space-16);
  margin-bottom: var(--space-24);
}

.news-sources__headline em {
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

.news-sources__sub {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  line-height: 1.75;
}

/* Carousel */
.news-carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.news-carousel__track {
  display: flex;
  align-items: center;
  /* Fixed gap so both sets are byte-identical in spacing */
  gap: 80px;
  width: max-content;
  padding-block: 48px;
  /* GPU-composited — no layout recalc on every frame */
  will-change: transform;
  animation: news-scroll 30s linear infinite;
}

.news-carousel__track:hover {
  animation-play-state: paused;
}

@keyframes news-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.news-carousel__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fixed width keeps every gap identical, including the wrap-around gap */
  width: 160px;
}

.news-carousel__item img {
  max-height: 42px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity 200ms ease;
  display: block;
  /* Prevent sub-pixel jitter on fractional sizes */
  image-rendering: -webkit-optimize-contrast;
}

.news-carousel__track:hover .news-carousel__item img {
  opacity: 0.75;
}

/* Images with white/opaque backgrounds — invert maps white→black (disappears into dark bg),
   dark logo→white. No brightness(0) needed since the bg isn't transparent. */
.news-carousel__item img.logo--on-white {
  filter: grayscale(1) invert(1);
  opacity: 0.5;
}

.news-carousel__track:hover .news-carousel__item img.logo--on-white {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .news-sources__inner { padding-inline: var(--space-24); }
  .news-sources__headline { font-size: var(--text-3xl); }
  .news-carousel__track { gap: 48px; animation-duration: 20s; }
  .news-carousel__item { width: 120px; }
  .news-carousel__item img { max-height: 32px; max-width: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  .news-carousel__track { animation: none; }
}
