:root {
  --navy: #0D1B2A;
  --navy-mid: #1A2E45;
  --navy-light: #243B55;
  --gold: #C8922A;
  --gold-light: #E8AE4A;
  --gold-pale: #FDF4E3;
  --cream: #FAFAF8;
  --ink: #1A1A1A;
  --ink-muted: #5C5C5C;
  --border: #E0DDD8;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}

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

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
  text-align: center;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,42,0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  text-align: center;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.hero-nav-logo span {
  color: var(--gold);
}

.hero-nav-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 96px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* decorative orb */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 70%);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
  line-height: 1.1;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* founder image panel */
.hero-image-panel {
  position: relative;
}

.hero-founder-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  border: 2px solid rgba(200,146,42,0.25);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

.hero-founder-badge {
  position: absolute;
  bottom: -24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero-founder-badge .badge-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.hero-founder-badge .badge-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  opacity: 0.85;
}

/* ── SECTION BASE ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-inner.narrow {
  max-width: 800px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header.light h2 {
  color: var(--white);
}

.section-body {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 620px;
}

.section-header.centered .section-body {
  margin-left: auto;
  margin-right: auto;
}

/* ── FOUNDER STRIP ── */
.founder {
  background: var(--navy-mid);
  color: var(--white);
}

.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}

.founder-portrait {
  position: relative;
}

.founder-portrait-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  border: 2px solid rgba(200,146,42,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.founder-portrait-caption {
  margin-top: 16px;
  text-align: center;
}

.founder-portrait-caption .founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.founder-portrait-caption .founder-creds {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.founder-content .founder-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.founder-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.founder-quote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}

.founder-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.founder-bio {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.founder-credentials {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.founder-credential {
  display: flex;
  flex-direction: column;
}

.founder-credential .cred-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.founder-credential .cred-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── GUDMD FRAMEWORK ── */
.framework {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.framework-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}

.framework-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border-color: rgba(200,146,42,0.3);
}

.framework-card-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.07;
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 20px;
}

.framework-card-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.framework-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.framework-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ── PROBLEM SECTION ── */
.problem {
  background: var(--navy);
  color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-list {
  list-style: none;
  margin-top: 8px;
}

.problem-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}

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

.problem-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.problem-callout {
  background: rgba(200,146,42,0.1);
  border: 1px solid rgba(200,146,42,0.25);
  border-radius: 8px;
  padding: 40px;
}

.problem-callout h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
}

.problem-callout p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

/* ── SERVICES ── */
.services {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.service-card-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ── AUDIT PROCESS ── */
.audit {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.audit-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.audit-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.audit-step:last-child {
  border-bottom: none;
}

.audit-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.18;
  line-height: 1;
}

.audit-step-content h4 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.audit-step-content p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.audit-step-content .step-detail {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── CLOSING CTA ── */
.closing {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 100px 48px;
}

.closing h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
}

.closing p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: #080E16;
  color: rgba(255,255,255,0.45);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 220px;
}

.footer-compliance {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  max-width: 700px;
}

.footer-compliance strong {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}

.footer-address {
  color: rgba(255,255,255,0.35);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-body {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 60px 24px 80px;
  }

  .hero-nav {
    padding: 20px 24px;
  }

  .hero-nav-cta {
    display: none;
  }

  .hero-image-panel {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-founder-badge {
    bottom: -20px;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }

  .founder-portrait {
    max-width: 280px;
    margin: 0 auto;
  }

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

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .section-inner {
    padding: 64px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }

  .audit-step {
    grid-template-columns: 56px 1fr;
    gap: 24px;
  }

  .closing {
    padding: 72px 24px;
  }

  .founder-credentials {
    gap: 24px;
  }
}

@media (max-width: 540px) {
  .framework-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .closing-actions {
    flex-direction: column;
    align-items: center;
  }
}
