/* ══════════════════════════════════════════
   THERON DIGITAL — style.css
   Shared across all pages
   Version: 2.0
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --white:     #FFFFFF;
  --off-white: #F5F5F3;
  --black:     #0A0A0A;
  --dark:      #111111;
  --dark2:     #161616;
  --dark3:     #1A1A1A;
  --gray:      #D4D4D0;
  --mid-gray:  #888884;
  --gold:      #B8A88A;
  --gold-dim:  rgba(184,168,138,0.15);
  --gold-glow: rgba(184,168,138,0.07);

  --text-secondary: rgba(245,245,243,0.55);
  --text-tertiary:  rgba(245,245,243,0.22);

  --display: 'Cormorant Garamond', serif;
  --subhead: 'Instrument Serif', serif;
  --logo:    'Syne', sans-serif;
  --body:    'DM Sans', sans-serif;
  --pad-x:   clamp(20px, 5vw, 80px);

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-mid:  400ms;
  --dur-slow: 900ms;
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--off-white);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--body); border: none; background: none; }

/* Global grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  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)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

::selection { background: var(--gold); color: var(--dark); }

h1, h2 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; overflow-wrap: break-word; }
h3 { font-family: var(--body); font-weight: 600; line-height: 1.4; letter-spacing: -0.01em; }
p  { font-family: var(--body); line-height: 1.72; font-size: clamp(15px, 1.15vw, 17px); }
h1 { font-size: clamp(46px, 6.5vw, 84px); }
h2 { font-size: clamp(30px, 4vw, 54px); }

.label {
  display: inline-block;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.link-underline {
  position: relative;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease);
}
.link-underline:hover::after { width: 100%; }

.gold-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 18px 0 0;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL SYSTEM
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 200ms; }
.reveal[data-delay="3"] { transition-delay: 320ms; }
.reveal[data-delay="4"] { transition-delay: 440ms; }
.reveal[data-delay="5"] { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-location, .hero h1, .hero-sub, .hero-ctas, .hero-scroll-indicator { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-mid) var(--ease),
              height var(--dur-mid) var(--ease),
              border-color var(--dur-mid) var(--ease),
              transform var(--dur-mid) var(--ease);
}
nav.scrolled {
  height: 64px;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
}
nav.nav-hidden { transform: translateY(-100%); }

.nav-logo {
  font-family: var(--logo);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; }
.nav-cta {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 1px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  transition: background 0.25s, border-color 0.25s;
}
.nav-cta:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mob-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 var(--pad-x);
  gap: 4px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 450ms var(--ease), opacity 280ms ease, visibility 450ms ease;
}
.mob-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mob-menu a {
  font-family: var(--display);
  font-size: clamp(34px, 8vw, 62px);
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.02em;
  line-height: 1.25;
  transition: color 0.2s, padding-left 0.2s;
}
.mob-menu a:hover { color: var(--white); padding-left: 10px; }
.mob-menu-cta {
  margin-top: 32px;
  font-family: var(--body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--black) !important;
  background: var(--white);
  padding: 14px 28px !important;
  border-radius: 1px;
}
.mob-menu-cta:hover { padding-left: 28px !important; color: var(--black) !important; background: #EBEBEB !important; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 32px;
  border-radius: 1px;
  transition: all 0.28s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn .arr { transition: transform 0.28s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: #EBEBEB; box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.22); color: var(--white); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.04); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;       /* FIXED: was flex-end, causing top dead space */
  align-items: flex-start;
  padding: 140px var(--pad-x) 96px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,168,138,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,168,138,0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 85% 75% at 12% 58%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 12% 58%, black 15%, transparent 75%);
  pointer-events: none;
}

/* Ambient warm orb */
.hero-orb {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,168,138,0.1) 0%, transparent 65%);
  filter: blur(70px);
  animation: orbFloat 16s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(-22px,16px) scale(1.02); }
  66%  { transform: translate(14px,-10px) scale(0.98); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 22% 65%, rgba(184,168,138,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Staggered entrance animations */
.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 900ms var(--ease) 150ms forwards;
}
.hero-location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.75); }
}

/* Hero headline — two lines animate independently */
.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
}
.hero-line-1,
.hero-line-2 {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1000ms var(--ease) forwards;
}
.hero-line-1 { animation-delay: 380ms; }
.hero-line-2 { animation-delay: 560ms; }

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 48px;
  opacity: 0;
  animation: heroFadeUp 1000ms var(--ease) 720ms forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1000ms var(--ease) 900ms forwards;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  opacity: 0;
  animation: heroFadeIn 700ms ease 1600ms forwards;
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.hero-scroll-label {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.hero-rule {
  position: absolute;
  right: var(--pad-x);
  bottom: 80px;
  writing-mode: vertical-rl;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.13);
  z-index: 2;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
section { padding: 100px var(--pad-x); }
.section-label  { margin-bottom: 14px; }
.section-header { margin-bottom: 56px; }
.section-header h2 { color: var(--white); }
.section-header p  { color: rgba(255,255,255,0.45); margin-top: 16px; max-width: 520px; }

/* ══════════════════════════════════════════
   PILLARS / SERVICES
══════════════════════════════════════════ */
.pillars {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pillars-intro { max-width: 600px; margin-bottom: 72px; }
.pillars-intro h2 { color: var(--white); margin-bottom: 16px; }
.pillars-intro p  { color: rgba(255,255,255,0.45); font-size: clamp(15px,1.2vw,17px); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--dark3);
  border: 1px solid var(--gold-dim);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.28s var(--ease), border-color 0.28s ease,
              transform 0.32s var(--ease), box-shadow 0.32s ease;
}
.pillar-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.55);
}
.pillar-card.coming { opacity: 0.62; }
.pillar-card.coming:hover { transform: none; border-color: var(--gold-dim); box-shadow: none; }
.pillar-num {
  font-family: var(--display);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--text-tertiary);
  line-height: 1;
  margin-bottom: 24px;
}
.pillar-card h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pillar-card p {
  color: rgba(255,255,255,0.38);
  font-size: 14.5px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 32px;
}
.pillar-link {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s var(--ease), color 0.2s;
  margin-top: auto;
}
.pillar-link:hover { gap: 14px; }
.pillar-coming-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,168,138,0.3);
  padding: 4px 10px;
}

/* ══════════════════════════════════════════
   FLOW / THE LOGIC
══════════════════════════════════════════ */
.flow { background: var(--dark); }
.flow-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.flow-left h2 { color: var(--white); margin-bottom: 20px; }
.flow-left p  { color: rgba(255,255,255,0.45); line-height: 1.75; }
.flow-steps { display: flex; flex-direction: column; }
.flow-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}
.flow-step:hover { border-color: var(--gold-dim); }
.flow-step:first-child { padding-top: 0; }
.flow-step:last-child { border-bottom: none; }
.flow-step-num {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 28px;
  padding-top: 3px;
}
.flow-step-text h4 {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.flow-step-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   CLIENTS / WHO WE WORK WITH
══════════════════════════════════════════ */
.clients {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.clients-header { margin-bottom: 56px; }
.clients-header h2 { color: var(--white); margin-bottom: 14px; }
.clients-header p  { color: rgba(255,255,255,0.4); max-width: 480px; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.client-type {
  background: var(--dark3);
  border: 1px solid var(--gold-dim);
  padding: 36px 28px;
  transition: border-color 0.25s ease, transform 0.3s var(--ease);
}
.client-type:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.client-icon {
  margin-bottom: 18px;
  line-height: 1;
}
.client-icon svg { display: block; }
.client-type h4 {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.client-type p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   INSIGHTS PREVIEW
══════════════════════════════════════════ */
.insights-preview {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 88px var(--pad-x);
}
.insights-preview-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.insights-preview-label h2 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 48px);
  margin-top: 12px;
  margin-bottom: 6px;
}
.insights-preview-label .view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  transition: gap 0.25s var(--ease);
}
.insights-preview-label .view-all:hover { gap: 14px; }
.insight-card {
  display: block;
  padding: 36px;
  background: var(--dark3);
  border: 1px solid var(--gold-dim);
  transition: border-color 0.25s, transform 0.3s var(--ease);
  text-decoration: none;
}
.insight-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.insight-date {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.insight-tag {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px;
}
.insight-card h3 {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.insight-card:hover h3 { color: var(--gold); }
.insight-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-bottom: 20px;
}
.insight-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  transition: gap 0.25s var(--ease);
}
.insight-card:hover .insight-read-more { gap: 14px; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: var(--dark);
  text-align: center;
  padding: 120px var(--pad-x);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,168,138,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(184,168,138,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section h2 { color: var(--white); margin-bottom: 18px; }
.cta-section > .cta-inner > p {
  color: rgba(255,255,255,0.42);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.72;
  margin-bottom: 14px;
}
.cta-what-you-get {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px auto 40px;
  text-align: left;
  max-width: 400px;
}
.cta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.cta-check {
  flex-shrink: 0;
  margin-top: 1px;
}
.cta-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-family: var(--body);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-dim);
  padding: 56px var(--pad-x) 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.ft-logo {
  font-family: var(--logo);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.ft-tagline {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 14px;
}
.ft-desc {
  font-family: var(--body);
  font-size: 12.5px;
  color: rgba(255,255,255,0.2);
  line-height: 1.65;
  max-width: 240px;
}
.ft-col h5 {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.ft-col a {
  display: block;
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 9px;
  transition: color 0.2s;
}
.ft-col a:hover { color: var(--white); }
.ft-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ft-copy {
  font-family: var(--body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.2);
}
.ft-bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ft-email {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.ft-email:hover { color: var(--white); }
.ft-back-top {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.ft-back-top:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
  .ft-desc { max-width: 400px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; gap: 12px; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .flow-inner { grid-template-columns: 1fr; gap: 48px; }
  .insights-preview-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
  .hero-rule { display: none; }
}
@media (max-width: 600px) {
  section { padding: 72px var(--pad-x); }
  .clients-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ft-bottom-right { flex-direction: column; align-items: flex-start; gap: 8px; }
}
