/* ---------- CORE ENERGY VENTURES — SHARED STYLES ---------- */

:root {
  --navy:        #1B2A4A;
  --navy-deep:  #0F1B33;
  --navy-card:  #22345A;
  --navy-line:  #2D4170;
  --gold:        #D4B483;
  --gold-soft:  #E8D2A8;
  --green:       #5DB075;
  --ivory:       #F7F4EE;
  --paper:       #FBFAF6;
  --ink:         #1B2A4A;
  --muted:       #6B7280;
  --rule:        #E5E1D8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.1em; }

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

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

.eyebrow {
  font-family: 'Inter Tight', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.eyebrow.on-light { color: var(--navy); opacity: 0.7; }

/* ---------- LAYOUT ---------- */

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 0; }

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 2rem;
}

.divider.center { margin-left: auto; margin-right: auto; }

/* ---------- HEADER / NAV ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: inline-block;
  line-height: 0;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-brand .logo img { height: 56px; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  position: relative;
}

.nav-links a.current::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  background: var(--navy);
  color: var(--ivory) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 2px;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  transition: background .25s ease;
}

.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  margin: 5px 0;
  transition: all .3s ease;
}

/* ---------- HERO ---------- */

.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-card) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 7rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 180, 131, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 180, 131, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.4;
}

.hero-inner { position: relative; z-index: 2; }

.hero h1 {
  color: var(--ivory);
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}

.hero-lede {
  font-size: 1.2rem;
  max-width: 58ch;
  color: rgba(247, 244, 238, 0.8);
  margin-bottom: 2.5rem;
}

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

.btn {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover { background: var(--gold-soft); color: var(--navy); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(247, 244, 238, 0.35);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  background: var(--navy);
  color: var(--ivory);
}

.btn-dark:hover { background: var(--gold); color: var(--navy); }

/* ---------- TWO-AUDIENCE SPLIT ---------- */

.audience {
  background: var(--paper);
  padding-top: 0;
  margin-top: -3.5rem;
  position: relative;
  z-index: 3;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px rgba(15, 27, 51, 0.12);
}

.audience-card {
  padding: 3rem 2.5rem;
  background: var(--paper);
  position: relative;
}

.audience-card:first-child { border-right: 1px solid var(--rule); }

.audience-card h3 { color: var(--navy); margin-bottom: 0.5rem; }

.audience-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.audience-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.audience-link:hover { color: var(--gold); }

/* ---------- SECTION INTRO ---------- */

.section-intro {
  max-width: 720px;
  margin-bottom: 4rem;
}

.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-intro p {
  font-size: 1.1rem;
  color: var(--muted);
}

/* ---------- COMPANY CARDS (HOME) ---------- */

.companies {
  background: var(--ivory);
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.company-card {
  background: var(--paper);
  padding: 3rem 2.75rem;
  border: 1px solid var(--rule);
  position: relative;
  transition: all .35s ease;
}

.company-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 27, 51, 0.1);
}

.company-card .tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.company-card h3 { color: var(--navy); margin-bottom: 0.4rem; }

.company-card .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.company-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.company-card .arrow-link {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.company-card .arrow-link:hover { color: var(--gold); }

/* ---------- STATS ---------- */

.stats {
  background: var(--navy);
  color: var(--ivory);
  padding: 5rem 0;
  border-top: 1px solid rgba(212, 180, 131, 0.2);
  border-bottom: 1px solid rgba(212, 180, 131, 0.2);
}

.stats .eyebrow { color: var(--gold); }

.stats h2 { color: var(--ivory); max-width: 26ch; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(212, 180, 131, 0.25);
}

.stat {
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(212, 180, 131, 0.25);
  border-right: 1px solid rgba(212, 180, 131, 0.25);
  text-align: left;
}

.stat:nth-child(3n) { border-right: none; }
.stats-grid > .stat:nth-last-child(-n+3) { border-bottom: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 500;
}

.stat-label {
  font-size: 0.92rem;
  color: rgba(247, 244, 238, 0.75);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* ---------- ADVANTAGES ---------- */

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

.advantage h4 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.advantage .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  font-style: italic;
  display: block;
  margin-bottom: 0.5rem;
}

.advantage p {
  font-size: 0.98rem;
  color: var(--muted);
}

/* ---------- CTA BAND ---------- */

.cta-band {
  background: var(--ivory);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.cta-band h2 { color: var(--navy); margin-bottom: 1rem; }

.cta-band p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}

/* ---------- FOOTER ---------- */

footer {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(247, 244, 238, 0.6);
  font-size: 0.92rem;
  max-width: 38ch;
  margin-top: 1rem;
}

.footer-col h5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
  color: rgba(247, 244, 238, 0.75);
  font-size: 0.92rem;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(247, 244, 238, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(247, 244, 238, 0.5);
}

/* ---------- INNER PAGE HEADER ---------- */

.page-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--ivory);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(212, 180, 131, 0.08) 0%, transparent 50%);
}

.page-header-inner { position: relative; z-index: 2; max-width: 800px; }

.page-header h1 {
  color: var(--ivory);
  margin-bottom: 1rem;
}

.page-header .lede {
  color: rgba(247, 244, 238, 0.8);
  font-size: 1.2rem;
  max-width: 56ch;
}

/* ---------- INNER PAGE CONTENT ---------- */

.content-block {
  padding: 5rem 0;
}

.content-block + .content-block { padding-top: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.two-col h2 { color: var(--navy); }

.two-col p {
  color: #3a4555;
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.feature-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: baseline;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.5rem;
  min-width: 2.5rem;
}

.feature-list strong {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.25rem;
}

.feature-list p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

/* ---------- DEAL TERMS BOX ---------- */

.terms-box {
  background: var(--navy);
  color: var(--ivory);
  padding: 3rem 2.5rem;
  border-left: 3px solid var(--gold);
  margin: 2.5rem 0;
}

.terms-box h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.terms-box dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.terms-box dt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin-bottom: 0.3rem;
  font-style: italic;
}

.terms-box dd {
  color: rgba(247, 244, 238, 0.85);
  font-size: 0.95rem;
}

/* ---------- TEAM ---------- */

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

.team-card {
  border: 1px solid var(--rule);
  padding: 2.5rem;
  background: var(--paper);
}

.team-card .photo-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-card) 100%);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  color: var(--gold);
  font-weight: 500;
}

.team-card h3 { color: var(--navy); margin-bottom: 0.25rem; }

.team-card .role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.team-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}

/* ---------- CONTACT ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 { color: var(--navy); margin-bottom: 0.5rem; }

.contact-info .info-block {
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.contact-info .info-block:last-child { border-bottom: none; }

.contact-info .label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-info p, .contact-info a {
  color: var(--ink);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.5;
}

.contact-info a:hover { color: var(--gold); }

/* ---------- FORM ---------- */

.contact-form {
  background: var(--paper);
  padding: 3rem;
  border: 1px solid var(--rule);
}

.contact-form h3 { color: var(--navy); margin-bottom: 0.5rem; }

.contact-form .form-intro {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 2rem;
}

.field { margin-bottom: 1.5rem; }

.field label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  background: white;
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea { min-height: 120px; resize: vertical; }

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

.contact-form button {
  background: var(--navy);
  color: var(--ivory);
  border: none;
  padding: 1rem 2.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s ease;
  font-family: 'Inter Tight', sans-serif;
}

.contact-form button:hover { background: var(--gold); color: var(--navy); }

/* ---------- PRICING TIERS ---------- */

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

.tier-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 27, 51, 0.08);
}

.tier-card.featured {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(15, 27, 51, 0.18);
}

.tier-card.featured::before {
  content: 'Most Common';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif;
}

.tier-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.tier-range {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.tier-card.featured .tier-range { color: var(--gold-soft); }

.tier-rate {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.tier-card.featured .tier-rate {
  border-top-color: rgba(212, 180, 131, 0.3);
  border-bottom-color: rgba(212, 180, 131, 0.3);
}

.tier-rate .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.tier-card.featured .tier-rate .big { color: var(--gold); }

.tier-rate .rate-label {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-weight: 500;
}

.tier-card.featured .tier-rate .rate-label { color: rgba(247, 244, 238, 0.7); }

.tier-detail {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.tier-card.featured .tier-detail { color: var(--gold-soft); }

.tier-detail em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--muted);
  display: block;
  margin-top: 0.2rem;
}

.tier-card.featured .tier-detail em { color: rgba(247, 244, 238, 0.65); }

.tier-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  margin-top: auto;
}

.tier-card.featured .tier-desc { color: rgba(247, 244, 238, 0.75); }

.pricing-note {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  text-align: center;
}

.pricing-note p {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- FAQ ---------- */

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--rule);
}

.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color .2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  transition: transform .25s ease;
  font-family: 'Inter Tight', sans-serif;
}

.faq-item[open] summary::after {
  content: '\2013';
}

.faq-item summary:hover { color: var(--gold); }

.faq-item p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  padding-right: 2.5rem;
}

/* ---------- ANIMATIONS ---------- */

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

.hero h1, .hero-lede, .hero-cta-row, .page-header h1, .page-header .lede {
  animation: fadeUp 0.9s ease forwards;
}

.hero-lede { animation-delay: 0.15s; opacity: 0; }
.hero-cta-row { animation-delay: 0.3s; opacity: 0; }
.page-header .lede { animation-delay: 0.15s; opacity: 0; }

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  section { padding: 4rem 0; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--rule);
  }
  .audience-grid,
  .company-grid,
  .stats-grid,
  .advantages-grid,
  .two-col,
  .team-grid,
  .contact-grid,
  .terms-box dl,
  .row-2,
  .tier-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; }
  .audience-card:first-child { border-right: none; border-bottom: 1px solid var(--rule); }
  .stats-grid { border-top: none; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero { padding: 5rem 0 4rem; }
  .terms-box { padding: 2rem 1.5rem; }
  .contact-form { padding: 2rem 1.5rem; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap, .wrap-narrow { padding: 0 1.25rem; }
  .nav { padding: 1rem 1.25rem; }
}
