/* ═══════════════════════════════════════════════════════════════════════════
   Spanish Founders Platform — Main Stylesheet
   Brand: Midnight Navy · Champagne Gold · Slate Grey · Cream
   ═══════════════════════════════════════════════════════════════════════════ */

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

:root {
  --navy:           #0D1F3C;
  --navy-dark:      #071429;
  --navy-mid:       #122844;
  --navy-light:     #1C3560;
  --champagne:      #C8A96A;
  --champagne-dark: #B8924E;
  --champagne-light:#D9BF8E;
  --champagne-pale: #F0E6D0;
  --slate:          #5D6B82;
  --slate-light:    #8696AD;
  --cream:          #F8F3EC;
  --cream-dark:     #EFE7D8;
  --white:          #FFFFFF;
  --border:         #E2D8CC;
  --text-dark:      #1C2433;
  --text-mid:       #4A5568;
  --text-light:     #718096;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container:  1200px;
  --section-py: 6rem;
  --nav-h:      80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

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

h1 { font-size: clamp(2.8rem, 5.5vw, 5.2rem); }
h2 { font-size: clamp(2rem,   3.5vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw,   1.55rem); }

p  { font-size: 1rem; line-height: 1.72; color: var(--text-mid); }

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Eyebrow ────────────────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
}
.eyebrow-light { color: rgba(200,169,106,.75); }

/* ─── Section Header ────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header h2 { color: var(--navy); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; }
.section-header .btn { margin-top: 2rem; }

.section-header-light h2 { color: var(--white); }
.section-header-light .section-sub { color: rgba(255,255,255,.68); }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-champagne {
  background: var(--champagne);
  color: var(--navy);
  border-color: var(--champagne);
}
.btn-champagne:hover {
  background: var(--champagne-dark);
  border-color: var(--champagne-dark);
  box-shadow: 0 6px 24px rgba(200,169,106,.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.07);
}

.btn-ghost-champagne {
  background: transparent;
  color: var(--white);
  border-color: rgba(200,169,106,.45);
}
.btn-ghost-champagne:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

/* ═══════════════════════════════════════════════════════════════ NAVIGATION */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background .4s ease, box-shadow .4s ease;
}

#nav.scrolled {
  background: rgba(7,20,41,.97);
  box-shadow: 0 1px 0 rgba(200,169,106,.18), 0 4px 32px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  text-decoration: none;
}
.nav-logo-mark {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--champagne);
}
.nav-logo-text {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  align-self: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-private-mobile { display: none; }
.nav-links li { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: .5rem .85rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .07em;
  color: rgba(255,255,255,.78);
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); }

.nav-cta {
  display: inline-block;
  padding: .52rem 1.35rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(200,169,106,.5);
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--champagne);
  color: var(--navy);
  border-color: var(--champagne);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--white);
  transition: all .3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════ HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
}

.hero-slideshow { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 10s ease-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(7,20,41,.42);
}
.hero-overlay-gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(7,20,41,.88) 0%,
    rgba(7,20,41,.65) 38%,
    rgba(7,20,41,.18) 68%,
    transparent 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%; z-index: 1;
  background: linear-gradient(to top, rgba(7,20,41,.75), transparent);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1060px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--champagne);
  flex-shrink: 0;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
.hero-content h1 span { color: var(--champagne-light); }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.68;
  color: rgba(255,255,255,.78);
  max-width: 820px;
  margin-bottom: 2.75rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 2rem; z-index: 2;
  display: flex; align-items: center; gap: 1rem;
}
.scroll-label {
  font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42); font-weight: 500;
}
.scroll-line {
  width: 44px; height: 1px;
  background: rgba(200,169,106,.3);
  overflow: hidden; position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--champagne);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { to { left: 100%; } }

.hero-dots {
  position: absolute;
  bottom: 2.5rem; right: 2rem; z-index: 2;
  display: flex; gap: .5rem;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,.28);
  border: none; cursor: pointer; padding: 0;
  transition: background .3s, width .3s;
}
.hero-dot.active {
  background: var(--champagne);
  width: 44px;
}

/* ════════════════════════════════════════════════════════ PHILOSOPHY PILLARS */
#pillars {
  background: var(--cream);
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}

.pillar {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.pillar:hover {
  border-color: var(--champagne-pale);
  background: rgba(200,169,106,.04);
}

.pillar-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border: 1px solid var(--champagne-pale);
  color: var(--champagne);
  margin: 0 auto 1.35rem;
}

.pillar h3 {
  font-family: var(--sans);
  font-size: 1rem; font-weight: 600;
  letter-spacing: .02em;
  color: var(--navy); margin-bottom: .55rem;
}
.pillar p { font-size: .875rem; color: var(--text-mid); line-height: 1.62; }

/* ═══════════════════════════════════════════════════════════════ STATS BAND */
#stats {
  background: var(--navy);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(200,169,106,.18);
}

.stat-item {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-right: 1px solid rgba(200,169,106,.18);
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200,169,106,.04); }

.stat-value {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}

.stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}

/* ══════════════════════════════════════════════════════ DETAIL SECTIONS */
.service-detail {
  padding: var(--section-py) 0;
  background: var(--white);
}
.service-detail-alt { background: var(--cream); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.detail-img-wrap { position: relative; }
.detail-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.detail-img-accent {
  position: absolute;
  bottom: -1.75rem; right: -1.75rem;
  width: 110px; height: 110px;
  border: 2px solid var(--champagne);
  pointer-events: none;
}
.detail-img-accent-left {
  position: absolute;
  top: -1.75rem; left: -1.75rem;
  width: 110px; height: 110px;
  border: 2px solid var(--champagne);
  pointer-events: none;
}

.detail-content .eyebrow { margin-bottom: .8rem; }
.detail-content h2 { color: var(--navy); margin-bottom: 1.5rem; }

.detail-lead {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.68;
  margin-bottom: 1rem;
}
.detail-body { font-size: .95rem; color: var(--text-mid); margin-bottom: 2rem; }

.detail-features { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }
.detail-feature { display: flex; align-items: flex-start; gap: .9rem; }
.df-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--champagne); flex-shrink: 0; margin-top: .1rem;
}
.detail-feature strong {
  display: block; font-size: .87rem; font-weight: 600;
  color: var(--navy); margin-bottom: .2rem;
}
.detail-feature span { font-size: .84rem; color: var(--text-mid); line-height: 1.52; }

/* ═════════════════════════════════════════════════════ OPPORTUNITY SECTION */
.opportunity-section {
  background: var(--navy-dark);
  padding: var(--section-py) 0;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4.5rem;
}

.opportunity-card {
  padding: 2.75rem 2.25rem;
  border: 1px solid rgba(200,169,106,.18);
  transition: border-color .3s, background .3s;
}
.opportunity-card:hover {
  border-color: rgba(200,169,106,.45);
  background: rgba(200,169,106,.04);
}

.opp-num {
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 300;
  color: rgba(200,169,106,.3);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.opportunity-card h3 {
  font-family: var(--sans);
  font-size: .92rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 1rem;
}
.opportunity-card p { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.72; }

.opportunity-quote {
  text-align: center;
  max-width: 660px;
  margin: 5rem auto 0;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(200,169,106,.18);
}
.opportunity-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: rgba(255,255,255,.88);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.opportunity-quote cite {
  font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--champagne); font-style: normal;
}

/* ══════════════════════════════════════════════════════════════ TEAM SECTION */
#team {
  background: var(--cream);
  padding: var(--section-py) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--champagne);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.team-card:hover {
  box-shadow: 0 14px 52px rgba(13,31,60,.1);
  transform: translateY(-4px);
}

.team-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: var(--navy-mid);
}

.team-body { padding: 1.75rem; }
.team-body h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: .2rem; }
.team-role {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--champagne);
  margin-bottom: .9rem; display: block;
}
.team-body p { font-size: .88rem; line-height: 1.65; color: var(--text-mid); }
.team-linkedin {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--navy);
  transition: color .2s;
}
.team-linkedin:hover { color: var(--champagne-dark); }

/* ═══════════════════════════════════════════════════════════════ CONNECT */
.connect-section {
  background: var(--navy-mid);
  padding: var(--section-py) 0;
  text-align: center;
}
.connect-inner { max-width: 680px; margin: 0 auto; }
.connect-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white); margin-bottom: 1.5rem;
}
.connect-inner > p {
  color: rgba(255,255,255,.68); font-size: 1.02rem; margin-bottom: 2.75rem;
}
.connect-actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2rem;
}

/* ─── Contact Form ──────────────────────────────────────────────────────── */
.contact-form {
  margin: 2.5rem auto 2rem;
  max-width: 680px;
  text-align: left;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form-group {
  display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem;
}
.contact-form-group label {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--champagne);
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,106,.3);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--sans);
  font-size: .95rem;
  padding: .75rem 1rem;
  resize: vertical;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
}
.contact-form-group select option { background: var(--navy-dark); color: var(--white); }
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder { color: rgba(255,255,255,.28); }
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  outline: none;
  border-color: var(--champagne);
  background: rgba(255,255,255,.09);
}
.contact-form-submit { width: 100%; justify-content: center; }
.contact-form-status {
  min-height: 1.4em; margin-top: .9rem;
  font-size: .85rem; text-align: center;
}
.contact-form-status--ok  { color: var(--champagne-light); }
.contact-form-status--err { color: #e07878; }

/* ═══════════════════════════════════════════════════════════════ FOOTER */
#footer {
  background: var(--navy-dark);
  padding: 5rem 0 2.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  padding-bottom: 3rem;
}

.footer-brand { }
.footer-logo {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--champagne);
  display: block;
  margin-bottom: .2rem;
}
.footer-logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 1.25rem;
}
.footer-brand-desc {
  font-size: .83rem;
  color: rgba(255,255,255,.35);
  line-height: 1.72;
}

.footer-tagline-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-tagline-row p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  line-height: 1.72;
  max-width: 105ch;
  margin: 0;
}
.footer-social { display: flex; gap: .65rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.45);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--champagne); color: var(--champagne); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: .65rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.62); margin-bottom: 1.3rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .83rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-col a:hover { color: var(--champagne); }

.footer-bottom { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-legal {
  font-size: .7rem; color: rgba(255,255,255,.25); line-height: 1.72; max-width: 920px;
}
.footer-copy {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.28);
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.06);
}
.footer-copy span + span { color: var(--champagne); opacity: .6; }

/* ════════════════════════════════════════════════════ REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s ease, transform .85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.hero-eyebrow, .hero-content h1, .hero-sub, .hero-actions {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s ease, transform 1s ease;
}
.hero-eyebrow    { transition-delay: .18s; }
.hero-content h1 { transition-delay: .38s; }
.hero-sub        { transition-delay: .58s; }
.hero-actions    { transition-delay: .78s; }

body.loaded .hero-eyebrow,
body.loaded .hero-content h1,
body.loaded .hero-sub,
body.loaded .hero-actions { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: .08s !important; }
.stagger-2 { transition-delay: .16s !important; }
.stagger-3 { transition-delay: .24s !important; }
.stagger-4 { transition-delay: .32s !important; }

/* ══════════════════════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1100px) {
  .detail-grid { gap: 3.5rem; }
  .footer-main { gap: 3rem; }
}

@media (max-width: 960px) {
  :root { --section-py: 4.5rem; }
  .pillars-grid     { grid-template-columns: repeat(2,1fr); }
  .stats-grid       { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(200,169,106,.18); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(200,169,106,.18); }
  .detail-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .detail-img-wrap img { height: 380px; }
  .opportunity-grid { grid-template-columns: 1fr; max-width: 560px; margin: 3.5rem auto 0; }
  .team-grid        { grid-template-columns: repeat(2,1fr); }
  .footer-main      { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav       { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; --nav-h: 68px; }

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

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy-dark);
    padding: 1rem 2rem 2rem; gap: 0;
    border-top: 1px solid rgba(200,169,106,.2);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
  }
  .nav-links.is-open .nav-link {
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.82); font-size: .88rem;
  }
  .nav-links.is-open .nav-private-mobile {
    display: block;
    border-top: 1px solid rgba(200,169,106,.25);
    margin-top: .5rem; padding-top: .5rem;
  }
  .nav-link--cta { color: var(--champagne) !important; font-weight: 600; letter-spacing: .1em; }

  .hero-content h1 { font-size: 2.6rem; }
  .hero-sub        { font-size: .95rem; }

  .detail-img-wrap img { height: 280px; }
  .detail-img-accent, .detail-img-accent-left { display: none; }

  .team-grid     { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-nav    { grid-template-columns: 1fr 1fr; }
  .footer-copy   { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 580px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions    { flex-direction: column; }
  .connect-actions { flex-direction: column; align-items: center; }
  .footer-nav      { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: 1fr; }
  .stat-item       { border-right: none !important; border-top: 1px solid rgba(200,169,106,.18); }
  .stat-item:first-child { border-top: none; }
}
