/* SilverHook Capital — site styles
   Brand palette: dark navy + warm gold + soft silver
   Typography: Cormorant Garamond (display) + Inter (body) */

:root {
  --charcoal: #07111B;
  --navy: #0B1A27;
  --midnight: #122438;
  --slate: #304355;
  --gold: #D5A95F;
  --gold-soft: #E5C087;
  --silver: #ECEFF2;
  --warm-white: #F7F7F3;
  --steel: #6F7A84;
  --line: rgba(236, 239, 242, 0.08);
  --card: rgba(255, 255, 255, 0.03);
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  --max: 1200px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 85px; }

body {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--navy);
  color: var(--silver);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--warm-white);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.08; font-weight: 500; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.3; }

p { margin: 0 0 1em; color: rgba(236, 239, 242, 0.78); }

a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-soft); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* -------- NAV -------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(7, 17, 27, 0.6), rgba(7, 17, 27, 0));
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 17, 27, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 100px; display: block; transition: height .3s ease; }
.nav.scrolled .nav-logo img { height: 82px; }
.nav-links {
  display: flex; gap: 36px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--silver);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--warm-white); }

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 22px;
  letter-spacing: 0.14em;
  transition: all .25s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--silver);
  cursor: pointer;
  width: 36px; height: 36px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--silver);
  margin: 5px auto;
  transition: transform .3s ease, opacity .3s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* -------- HERO -------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-bg video,
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(7,17,27,0.92) 0%, rgba(7,17,27,0.65) 45%, rgba(7,17,27,0.2) 100%),
    linear-gradient(180deg, rgba(7,17,27,0.15) 0%, rgba(7,17,27,0.45) 55%, rgba(7,17,27,0.98) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 180px var(--pad) 64px;
}
.hero-body { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-weight: 400;
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero-line {
  display: block;
  font-style: normal;
  color: var(--warm-white);
}
.hero-line--gold {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  color: rgba(236, 239, 242, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  max-width: 620px;
  margin: 0 auto 18px;
  line-height: 1.75;
}
.hero-sub--secondary {
  color: rgba(236, 239, 242, 0.58);
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  margin-bottom: 40px;
}
/* Desktop: hold the secondary line on a single line */
@media (min-width: 769px) {
  .hero-sub--secondary {
    max-width: none;
    white-space: nowrap;
  }
}
.hero-cta {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Hero stats bar */
.hero-bar {
  position: relative;
  z-index: 1;
  background: rgba(7, 17, 27, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(236, 239, 242, 0.08);
}
.hero-bar-inner {
  display: flex;
  align-items: stretch;
  height: 84px;
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 0 clamp(20px, 3vw, 48px);
}
.hero-stat-num {
  font-family: 'Spectral', 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  color: var(--warm-white);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-variant-numeric: lining-nums tabular-nums;
  /* fixed line box so every stat sits at an identical baseline */
  line-height: 1.1;
}
.hero-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(236, 239, 242, 0.42);
  /* pinned line-height + no wrap keeps the num/label gap equal in all four cells */
  line-height: 1;
  white-space: nowrap;
}
.hero-bar-divider {
  width: 1px;
  background: rgba(236, 239, 242, 0.08);
  align-self: stretch;
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 104px;
  transform: translateX(-50%);
  color: rgba(236, 239, 242, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px; height: 24px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 8px auto 0;
}
@media (max-height: 760px), (max-width: 760px) {
  .scroll-cue { display: none; }
}

/* -------- SECTIONS -------- */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section--alt { background: var(--midnight); }
.section--charcoal { background: var(--charcoal); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.section-head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.section-head h2 {
  margin-bottom: 18px;
  white-space: nowrap;
}
.section-head p {
  color: rgba(236, 239, 242, 0.7);
  font-size: 1.05rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .section-head h2 { white-space: normal; }
  .about-centered h2 { white-space: normal; }
}
.divider {
  display: block;
  width: 56px; height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
}

/* -------- WHAT WE DO -------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  /* divider showing through the 1px gaps between cards */
  background: rgba(15, 28, 43, 0.13);
}
.pillar {
  padding: 52px 44px 56px;
  /* original site's card background: color_36 #F2F5F7 (cool pale blue-gray) */
  background: #F2F5F7;
  position: relative;
  overflow: hidden;
  transition: background .4s ease;
}
/* hover only on pointer devices; touch uses .active toggled by scroll */
@media (hover: hover) {
  .pillar:hover { background: #E9EEF2; }
  .pillar:hover .pillar-rule { width: 64px; }
}
.pillar.active { background: #E9EEF2; }
.pillar.active .pillar-rule { width: 64px; }
.pillar-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  transition: width .5s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Card titles use the SilverHook display serif (Cormorant Garamond) rather
   than the original's Inter. Weight 600 because Cormorant's strokes are light
   at this size. Gold #9C7734 = original color_44 deepened, 3.76:1 on the card. */
.pillar h3 {
  color: #9C7734;
  font-size: clamp(1.6rem, 2.4vw, 2.125rem);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.005em;
}
.pillar p {
  color: #0F1C2B;
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  line-height: 1.6;
}
/* the original has no gold rule above the title */
.pillar-rule { display: none; }

/* -------- APPROACH -------- */
.approach {
  max-width: 900px;
  margin: 0 auto;
}
.approach-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 48px;
  padding: 52px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.approach-item:last-child { border-bottom: 1px solid var(--line); }
.approach-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  opacity: 0.55;
  letter-spacing: -0.02em;
  padding-top: 4px;
}
.approach-content h3 {
  /* original site's gold (color_44) — 7.5:1 on the navy section, so the
     lighter tone is correct here rather than the card's #9C7734 */
  color: #C9A36A;
  font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.125rem);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.005em;
}
.approach-content p { margin: 0; color: rgba(236, 239, 242, 0.7); font-size: 1rem; line-height: 1.7; }

/* -------- ABOUT -------- */
.about-centered {
  /* wider than the text measure so the h2 can hold one line */
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.about-centered .divider { margin: 22px auto 28px; }
.about-centered p {
  font-size: 1.05rem;
  color: rgba(236, 239, 242, 0.78);
  /* keep the paragraphs on a readable measure */
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
/* min-width so it can't override the <=900px white-space: normal rule */
@media (min-width: 901px) {
  .about-centered h2 { white-space: nowrap; }
}

/* -------- FEATURED PROJECT -------- */
.featured {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--charcoal);
  overflow: hidden;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.featured-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.featured-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.featured-media:hover img { transform: scale(1.04); }
.featured-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 17, 27, 0.5) 100%);
  pointer-events: none;
}
.featured-badge {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 2;
  padding: 8px 14px;
  background: rgba(7, 17, 27, 0.7);
  border: 1px solid rgba(213, 169, 95, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.featured-body h2 {
  font-style: italic;
  font-weight: 400;
  margin-bottom: 18px;
}
.featured-body .lede {
  color: rgba(236, 239, 242, 0.8);
  font-size: 1.08rem;
  margin: 22px 0;
}
.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0 36px;
}
.featured-stat {
  padding-left: 16px;
  border-left: 1px solid rgba(213, 169, 95, 0.4);
}
.featured-stat .num {
  font-family: 'Spectral', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  display: block;
}
.featured-stat .label {
  display: block;
  margin-top: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(236, 239, 242, 0.5);
}
.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 32px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
}
.featured-cta:hover {
  background: var(--gold);
  color: var(--navy);
}
.featured-cta svg {
  width: 14px; height: 14px;
  transition: transform .3s ease;
}
.featured-cta:hover svg { transform: translateX(4px); }


/* -------- TAGLINE BAND -------- */
.tagline-band {
  text-align: center;
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tagline-band h2 {
  font-style: italic;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 18px;
}
.tagline-band .sub {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

/* -------- CONTACT -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info p { color: rgba(236, 239, 242, 0.72); }
.contact-meta {
  margin-top: 36px;
  display: grid;
  gap: 18px;
}
.contact-meta div {
  font-size: 0.92rem;
  color: rgba(236, 239, 242, 0.75);
}
.contact-meta strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-form {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  padding: 44px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(236, 239, 242, 0.65);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(236, 239, 242, 0.18);
  color: var(--warm-white);
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 0;
  outline: none;
  transition: border-color .2s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* Native select fix: keep field transparent but give the popup readable colors.
   Custom chevron via background-image, since native arrow can't be themed. */
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23D5A95F' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
}
.field select option {
  background-color: #0B1A27;
  color: #ECEFF2;
  padding: 8px;
}
.field select:invalid { color: rgba(236, 239, 242, 0.55); }
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(236, 239, 242, 0.35);
}
/* Autofill in Chrome shouldn't turn the field white */
.field input:-webkit-autofill,
.field textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--warm-white);
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: var(--warm-white);
}

.btn-submit {
  margin-top: 12px;
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-submit:hover {
  background: transparent;
  color: var(--gold);
}
.form-note {
  font-size: 0.78rem;
  color: rgba(236, 239, 242, 0.5);
  margin-top: 12px;
}
.form-status {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--gold);
  min-height: 1.2em;
}

/* -------- FOOTER -------- */
.footer {
  background: var(--charcoal);
  padding: 24px 0 16px;
  border-top: 1px solid var(--line);
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.footer-logo a { display: inline-block; }
.footer-logo img { height: 96px; display: block; }
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 239, 242, 0.55);
  transition: color .2s ease;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(236, 239, 242, 0.15);
  border-radius: 50%;
  color: rgba(236, 239, 242, 0.6);
  transition: all .25s ease;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-social svg { width: 14px; height: 14px; }
.footer-bottom {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.footer-address {
  font-style: normal; /* <address> defaults to italic */
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  color: rgba(236, 239, 242, 0.42);
}
.footer-address a {
  color: rgba(236, 239, 242, 0.42);
  transition: color .2s ease;
}
.footer-address a:hover { color: var(--gold); }
.footer-copyright {
  font-size: 0.62rem;
  color: rgba(236, 239, 242, 0.38);
}
.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.62rem;
  color: rgba(236, 239, 242, 0.38);
}
.footer-meta a {
  color: rgba(236, 239, 242, 0.38);
  transition: color .2s ease;
}
.footer-meta a:hover { color: var(--gold); }
.footer-meta span.dot { color: rgba(236, 239, 242, 0.18); }
.footer-credit {
  font-size: 0.68rem;
  /* mixed case — the wide uppercase tracking doesn't suit it */
  letter-spacing: 0.02em;
  color: rgba(236, 239, 242, 0.38);
  font-weight: 400;
  transition: color .2s ease;
}
.footer-credit:hover { color: var(--gold); }

/* -------- LEGAL PAGES -------- */
.legal-hero {
  padding: 180px 0 60px;
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  font-weight: 400;
}
.legal-hero p {
  color: rgba(236, 239, 242, 0.55);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px var(--pad);
}
.legal-body h2 {
  font-size: 1.6rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 48px;
  margin-bottom: 14px;
  font-weight: 500;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  color: rgba(236, 239, 242, 0.75);
  font-size: 1rem;
}
.legal-body ul { padding-left: 22px; margin: 0 0 1em; }
.legal-body li { margin-bottom: 6px; }

/* -------- HERO ENTRANCE -------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-eyebrow { animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.hero h1      { animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both; }
.hero-sub     { animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both; }
.hero-sub--secondary { animation-delay: 0.8s; }
.hero-cta     { animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 1s both; }
.hero-bar     { animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 1.0s both; }

/* -------- SCROLL CUE PULSE -------- */
@keyframes scrollBob {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8;  transform: translateX(-50%) translateY(6px); }
}
.scroll-cue { animation: scrollBob 2.6s ease-in-out infinite; }

/* -------- REVEAL -------- */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-social { justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-media { aspect-ratio: 16 / 10; }
  .featured-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .nav-logo img { height: 80px; }
  .nav.scrolled .nav-logo img { height: 68px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }

  /* Nav */
  .nav.open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--charcoal);
  }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
  }
  .nav.open .nav-links { transform: none; }
  .nav-links a { font-size: 1.2rem; letter-spacing: 0.18em; }
  .nav-links a::after { left: 50%; transform: translateX(-50%); }
  .nav-cta { font-size: 0.9rem; padding: 14px 28px; }
  .nav-logo img { height: 96px; }
  .nav.scrolled .nav-logo img { height: 78px; }

  /* Force specific title line breaks on mobile */
  .title-break { display: block; }

  /* Eyebrow */
  .eyebrow { letter-spacing: 0.16em; font-size: 0.82rem; }

  /* Hero — center on mobile, anchored near the top */
  .hero { justify-content: flex-start; }
  .hero-bar { margin-top: auto; }
  .hero-content { padding-top: 168px; padding-bottom: 40px; }
  .hero-body { max-width: 100%; text-align: center; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.13em; margin-bottom: 16px; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 16px; max-width: 100%; }
  .hero-sub--secondary { font-size: 0.98rem; margin-bottom: 36px; }
  .hero-cta { display: block; text-align: center; padding: 17px 28px; font-size: 0.8rem; letter-spacing: 0.2em; }

  /* Hero stats bar — 2×2 grid, number left / label right inside each box */
  .hero-bar-inner { height: auto; flex-wrap: wrap; padding: 0; }
  .hero-stat {
    flex: 1 1 45%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 18px;
    border-right: 1px solid rgba(236,239,242,0.08);
    border-bottom: 1px solid rgba(236,239,242,0.08);
  }
  /* right column — no right border */
  .hero-stat:nth-child(3), .hero-stat:nth-child(7) { border-right: none; }
  /* bottom row — no bottom border */
  .hero-stat:nth-child(5), .hero-stat:nth-child(7) { border-bottom: none; }
  .hero-stat-num { font-size: clamp(1.9rem, 5vw, 2.3rem); flex-shrink: 0; line-height: 1; }
  .hero-stat-label { font-size: 0.72rem; letter-spacing: 0.13em; line-height: 1.4; text-align: center; max-width: 78px; white-space: normal; }
  .hero-bar-divider { display: none; }

  /* Sections */
  .section-head { margin-bottom: clamp(36px, 5vw, 56px); }
  .section-head h2 { font-size: clamp(2rem, 6vw, 2.8rem); }
  .section-head p { font-size: 1.02rem; }
  /* longer dek — hold it to 4 lines on mobile */
  #what-we-do .section-head p { font-size: 0.92rem; line-height: 1.7; }

  /* Pillars — center in single-column layout */
  .pillar { padding: 36px 28px; text-align: center; }
  .pillar-rule { margin-left: auto; margin-right: auto; }
  .pillar h3 { font-size: 1.8rem; }
  .pillar p { font-size: 1rem; }

  /* Approach */
  .approach-item { grid-template-columns: 64px 1fr; gap: 20px; padding: 32px 0; }
  .approach-num { font-size: 3rem; }
  .approach-content h3 { font-size: clamp(1.75rem, 5vw, 2.1rem); }
  .approach-content p { font-size: 1rem; }

  /* About */
  .about-centered h2 { font-size: clamp(2rem, 6vw, 2.8rem); }
  .about-centered p { font-size: 1.02rem; }

  /* Featured — subtitle stays one line, "The Divide" is the hero title */
  .featured .section-head h2 { font-size: 1.05rem; font-style: normal; letter-spacing: 0.04em; font-family: 'Inter', sans-serif; font-weight: 400; }

  /* Featured — center heading block */
  .featured-badge { font-size: 0.66rem; letter-spacing: 0.16em; padding: 8px 13px; }
  .featured-body { text-align: center; }
  .featured-body h2 { font-size: clamp(2.2rem, 6.5vw, 3rem); }
  .featured-body .lede { font-size: 1.02rem; }
  .featured-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .featured-stat { text-align: center; padding-left: 0; border-left: none; border-top: 1px solid rgba(213,169,95,0.35); padding-top: 14px; }
  .featured-stat .num { font-size: clamp(1.55rem, 5.5vw, 2rem); }
  .featured-stat .label { font-size: 0.63rem; letter-spacing: 0.12em; }
  .featured-cta { width: 100%; justify-content: center; padding: 15px 24px; }

  /* Tagline band */
  .tagline-band h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .tagline-band .sub { letter-spacing: 0.12em; font-size: 0.82rem; }

  /* Contact — center heading block */
  .contact-info { text-align: center; }
  .contact-info .divider { margin-left: auto !important; margin-right: auto !important; }
  .contact-meta { text-align: left; }
  .contact-form { padding: 30px 24px; }
  .contact-info h2 { font-size: clamp(2rem, 5.5vw, 2.6rem); }
  .btn-submit { width: 100%; text-align: center; padding: 16px; }

  /* Footer */
  .footer-logo img { height: 112px; }
  /* hold all four links on a single row */
  .footer-nav { gap: 0 28px; flex-wrap: nowrap; }
  .footer-nav a { font-size: 0.66rem; letter-spacing: 0.08em; white-space: nowrap; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-content { padding-top: 158px; }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.11em; margin-bottom: 14px; }
  .hero-stat { padding: 18px 14px; gap: 10px; }
  .hero-stat-num { font-size: clamp(1.7rem, 5vw, 2rem); }
  .hero-stat-label { font-size: 0.68rem; letter-spacing: 0.11em; max-width: 70px; }
  .section-head h2 { font-size: clamp(1.85rem, 7vw, 2.4rem); }
  .about-centered h2 { font-size: clamp(1.85rem, 7vw, 2.4rem); }
  .pillar h3 { font-size: 1.65rem; }
  .approach-content h3 { font-size: clamp(1.6rem, 5.5vw, 1.95rem); }
  .featured-stat .num { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .tagline-band h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .tagline-band .sub { font-size: 0.75rem; letter-spacing: 0.08em; }
  .contact-info h2 { font-size: clamp(1.85rem, 6.5vw, 2.4rem); }
  .footer-bottom { align-items: center; text-align: center; }
  .footer-meta { justify-content: center; }
  /* narrow phones — tighten so the four links still hold one row */
  .footer-nav { gap: 0 18px; }
  .footer-nav a { font-size: 0.6rem; letter-spacing: 0.05em; }
  .approach-item { grid-template-columns: 58px 1fr; gap: 16px; padding: 28px 0; }
  .approach-num { font-size: 2.6rem; }
  .pillar { padding: 30px 22px; }
  .contact-form { padding: 24px 18px; }
}
