/* ══════════════════════════════════════════
   Innovative Development — style.css
   Built for What's Next.
   ══════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0B1D33;
  --navy-mid: #162E4D;
  --brass: #B8935A;
  --brass-light: #D4AF82;
  --cream: #F7F2EC;
  --cream-dark: #EDE7DC;
  --slate: #4A5E72;
  --slate-light: #8A9BAD;
  --charcoal: #1E2832;
  --off-white: #FDFAF6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
}

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

ul {
  list-style: none;
}

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

/* ── UTILITY ── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ── NAVIGATION ── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: 64px;
  transition: box-shadow 0.2s;
}

.site-nav.scrolled {
  box-shadow: 0 1px 0 rgba(184,147,90,0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0px;
  text-decoration: none;
  line-height: 1;
}

.nav-logo-icon {
  height: 42px;
  width: auto;
  display: block;
  margin-right: 4px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--cream);
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--brass);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-light);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--brass-light);
}

.nav-links a.active {
  color: var(--brass);
}

.nav-cta {
  display: inline-block;
  background: var(--brass);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--brass-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brass);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem) 2rem;
}

.mobile-menu a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(184,147,90,0.1);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--brass-light);
}

.mobile-menu a.active {
  color: var(--brass);
}

.mobile-menu .nav-cta {
  display: block;
  text-align: center;
  margin-top: 1rem;
}

/* Nav open state */
.site-nav.nav-open .mobile-menu {
  display: block;
}

.site-nav.nav-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.site-nav.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.site-nav.nav-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .nav-cta.desktop-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ── BUTTONS ── */

.btn-primary {
  display: inline-block;
  background: var(--brass);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--brass-light);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--brass);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--brass);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-ghost:hover {
  background: rgba(184,147,90,0.1);
}

.text-cta {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  transition: color 0.2s;
}

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

/* ── EYEBROW ── */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}

/* ── NAVY HERO SECTIONS ── */

.hero-navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,147,90,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,90,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-navy .container {
  position: relative;
  z-index: 1;
}

/* ── PROJECT IMAGE PLACEHOLDER ── */

.project-img-placeholder {
  background: var(--navy);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.6;
}

.placeholder-square {
  background: var(--navy);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-square svg {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

/* ── I-BEAM SVG MARK ── */

.ibeam-mark {
  fill: var(--brass);
}

/* ── CARDS ── */

.card {
  background: var(--off-white);
  padding: 2rem;
  border-top: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  border-top-color: var(--brass);
}

/* ── SECTION BACKGROUNDS ── */

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--off-white);
}

.section-navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.section-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,147,90,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,90,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.section-navy .container {
  position: relative;
  z-index: 1;
}

.section-charcoal {
  background: var(--charcoal);
}

/* ── HOMEPAGE HERO ── */

.home-hero {
  padding-top: 120px;
  padding-bottom: 80px;
}

.home-hero .container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
}

.home-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.home-hero h1 em {
  font-style: italic;
  color: var(--brass-light);
}

.home-hero .hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--slate-light);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Stats panel */
.stats-panel {
  background: rgba(184,147,90,0.05);
  border: 1px solid rgba(184,147,90,0.15);
  padding: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-box .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--brass);
  line-height: 1.1;
}

.stat-box .stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 4px;
}

.project-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid rgba(184,147,90,0.1);
}

.project-strip:last-child {
  background: rgba(184,147,90,0.03);
}

.project-strip-thumb {
  width: 48px;
  height: 48px;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-strip-thumb svg {
  width: 20px;
  height: 20px;
}

.project-strip-info {
  flex: 1;
}

.project-strip-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
}

.project-strip-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--slate-light);
  letter-spacing: 0.05em;
}

.badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
}

.badge-active {
  background: rgba(184,147,90,0.15);
  color: var(--brass);
}

.badge-complete {
  background: rgba(138,155,173,0.15);
  color: var(--slate-light);
}

/* ── WHAT WE BUILD (HOMEPAGE) ── */

.services-section {
  padding: 2.5rem 0 5rem;
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-section .section-header .eyebrow {
  justify-content: center;
}

.services-section .section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
}

.services-section .section-header p {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--navy);
}

.service-card {
  background: var(--off-white);
  padding: 2.5rem;
  border-top: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--brass);
}

.service-card .icon-area {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
}

.service-card .icon-area svg {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.brass-bar {
  width: 32px;
  height: 2px;
  background: var(--brass);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ── FEATURED PROJECTS (HOMEPAGE) ── */

.featured-section {
  padding: 5rem 0;
}

.featured-section .section-header {
  margin-bottom: 3rem;
}

.featured-section .section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--navy);
}

.featured-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 2px;
  background: var(--navy);
  margin-bottom: 3rem;
}

.featured-card {
  background: var(--off-white);
  transition: transform 0.2s;
}

.featured-card:hover {
  transform: translateY(-3px);
}

.featured-card-content {
  padding: 1.5rem 2rem 2rem;
}

.featured-card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.25rem;
}

.featured-card-status {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--slate-light);
  margin-bottom: 0.5rem;
}

.featured-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.featured-card-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--slate-light);
  margin-bottom: 0.75rem;
}

.featured-card-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.featured-cta {
  text-align: center;
}

/* ── PHILOSOPHY STRIPE ── */

.philosophy-section {
  padding: 6rem 2rem;
  text-align: center;
}

.philosophy-section .eyebrow {
  justify-content: center;
}

.philosophy-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.philosophy-section blockquote em {
  color: var(--brass);
  font-style: italic;
}

.philosophy-section .attribution {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--slate-light);
  letter-spacing: 0.08em;
}

/* ── ABOUT TEASER (HOMEPAGE) ── */

.about-teaser {
  padding: 5rem 0;
}

.about-teaser .container {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 3rem;
  align-items: center;
}

.about-teaser-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.about-teaser-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-teaser-content .btn-ghost {
  margin-top: 1rem;
}

/* ── CLOSING CTA ── */

.closing-cta {
  padding: 5rem 0;
  text-align: center;
}

.closing-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.closing-cta .sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--brass-light);
  margin-bottom: 2rem;
}

.closing-cta .note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--slate-light);
  margin-top: 1rem;
}

/* ── PAGE HEROES (INNER PAGES) ── */

.page-hero {
  padding: 7rem 0 4rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--brass-light);
}

.page-hero .hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--slate-light);
  max-width: 560px;
  line-height: 1.8;
}

/* ── FILTER BAR (PROJECTS) ── */

.filter-bar {
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.filter-tabs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.filter-tab:hover {
  color: var(--brass);
}

.filter-tab.active {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

/* ── PROJECT GRID ── */

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--cream-dark);
  padding: 4rem 0;
}

.project-grid .container {
  display: contents;
}

.project-card {
  background: var(--off-white);
  border-top: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
}

.project-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--brass);
}

.project-card-content {
  padding: 1.5rem 2rem 2rem;
}

.project-card .badge {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.badge-development {
  background: rgba(184,147,90,0.15);
  color: var(--brass);
}

.badge-completed {
  background: rgba(22,46,77,0.1);
  color: var(--slate-light);
}

.badge-soon {
  background: rgba(184,147,90,0.1);
  color: var(--brass);
}

.project-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.project-card .location {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--slate-light);
  margin-bottom: 0.75rem;
}

.project-card p.desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.project-card-dashed {
  border: 1px dashed rgba(184,147,90,0.3);
}

/* ── PROJECTS PAGE CTA ── */

.page-cta-strip {
  padding: 5rem 0;
  text-align: center;
}

.page-cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-cta-strip p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--slate-light);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ── ABOUT PAGE — STORY ── */

.story-section {
  padding: 5rem 0;
}

.story-section .container {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 3rem;
  align-items: start;
}

.story-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.story-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── HOW WE WORK ── */

.process-section {
  padding: 5rem 0;
}

.process-section .section-header {
  margin-bottom: 3rem;
}

.process-section .section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.process-section .section-header p {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
}

.process-card {
  background: var(--off-white);
  padding: 2rem;
}

.process-card .step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--brass);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
}

/* ── VALUES ── */

.values-section {
  padding: 5rem 0;
}

.values-section .section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  margin-bottom: 2rem;
}

.value-card {
  background: var(--cream);
  padding: 2rem;
}

.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
}

.value-pullquote {
  background: var(--navy);
  padding: 2.5rem;
  position: relative;
}

.value-pullquote h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.value-pullquote p {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate-light);
  line-height: 1.8;
}

/* ── INVESTORS PAGE ── */

.opportunity-section {
  padding: 5rem 0;
}

.opportunity-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.opportunity-section > .container > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 720px;
}

.investor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--navy);
  margin-top: 3rem;
}

.investor-stat {
  background: var(--navy-mid);
  padding: 2rem;
  text-align: center;
}

.investor-stat .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--brass);
  line-height: 1.1;
}

.investor-stat .stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 6px;
}

/* How we work with investors */
.investor-how {
  padding: 5rem 0;
}

.investor-how h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.investor-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.investor-how-grid p {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
}

.investor-how-grid strong {
  color: var(--navy);
  font-weight: 500;
}

.arrow-list {
  list-style: none;
  padding: 0;
}

.arrow-list li {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.arrow-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--brass);
}

/* Deal criteria */
.criteria-section {
  padding: 5rem 0;
}

.criteria-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.criteria-section > .container > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 700px;
}

.criteria-list li {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
  padding: 1rem 0 1rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}

.criteria-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--brass);
  font-size: 16px;
}

.criteria-list li strong {
  color: var(--navy);
  font-weight: 500;
}

/* Investor CTA */
.investor-cta {
  padding: 5rem 0;
  text-align: center;
}

.investor-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.investor-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--slate-light);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.investor-cta .cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── CONTACT PAGE ── */

.contact-body {
  padding: 5rem 0;
}

.contact-body .container {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
}

.contact-form label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--cream-dark);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brass);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 12px;
}

.contact-form .form-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--slate-light);
  margin-top: 0.75rem;
  text-align: center;
}

.contact-info-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-info-panel .quote-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--slate-light);
  margin-bottom: 1.25rem;
}

.contact-info-panel .personal-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-info-panel .personal-note strong {
  color: var(--charcoal);
}

.contact-detail {
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.contact-detail-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--charcoal);
}

.contact-detail-value a {
  color: var(--charcoal);
  transition: color 0.2s;
}

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

/* ── FAQ ── */

.faq-section {
  padding: 5rem 0;
}

.faq-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  gap: 1rem;
}

.faq-question h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--brass);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
}

/* ── FOOTER ── */

.footer-rule {
  height: 1px;
  background: var(--brass);
  opacity: 0.3;
}

.site-footer {
  background: var(--navy);
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--brass-light);
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-light);
  line-height: 1.6;
}

.footer-col-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--brass);
}

.footer-links a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-light);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

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

.footer-contact-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-light);
  margin-bottom: 0.5rem;
}

.footer-contact-item a {
  color: var(--slate-light);
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--brass);
}

.footer-cta-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.footer-legal {
  background: #060E18;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
}

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

.footer-legal span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
}

/* ── PROJECT GRID WRAPPER ── */

.project-grid-wrapper {
  padding: 4rem 0;
}

.project-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--cream-dark);
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .home-hero .container {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    max-width: 480px;
  }

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

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

  .about-teaser .container {
    grid-template-columns: 1fr;
  }

  .story-section .container {
    grid-template-columns: 1fr;
  }

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

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

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

  .investor-stats {
    grid-template-columns: 1fr;
  }

  .investor-how-grid {
    grid-template-columns: 1fr;
  }

  .contact-body .container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .home-hero {
    padding-top: 80px;
    min-height: auto;
  }

  .home-hero h1 {
    font-size: 48px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .philosophy-section blockquote {
    font-size: 32px;
  }

  .services-section .section-header h2,
  .featured-section .section-header h2,
  .about-teaser-content h2,
  .story-content h2,
  .process-section .section-header h2,
  .values-section .section-header h2,
  .opportunity-section h2,
  .investor-how h2,
  .criteria-section h2,
  .page-cta-strip h2,
  .closing-cta h2,
  .investor-cta h2,
  .faq-section h2 {
    font-size: 32px;
  }

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

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

  .footer-legal-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .filter-tabs {
    gap: 1rem;
  }

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