@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --navy: #102A43;
  --navy-deep: #0D1B2A;
  --forest: #1F3A2E;
  --slate: #334E68;
  --muted: #637381;
  --copper: #B87333;
  --warm-white: #F7F3EA;
  --paper: #FFFDF8;
  --line: rgba(16, 42, 67, 0.12);
  --shadow: 0 24px 70px rgba(16, 42, 67, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(184, 115, 51, 0.11), transparent 30rem),
    radial-gradient(circle at top right, rgba(31, 58, 46, 0.08), transparent 34rem),
    var(--warm-white);
  color: var(--navy);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.site-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0 46px;
}

.logo-wrap {
  display: block;
  width: min(430px, 58vw);
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
}

.top-nav a {
  text-decoration: none;
}

.nav-button {
  color: white !important;
  background: var(--copper);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(184, 115, 51, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: 62vh;
  padding: 18px 0 72px;
}

.hero-copy {
  max-width: 830px;
}

.eyebrow {
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  font-size: 13px;
  margin: 0 0 18px;
}

.eyebrow.light {
  color: #D9A66A;
}

h1, h2, h3 {
  margin: 0;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 9vw, 106px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: var(--navy-deep);
}

.intro {
  max-width: 730px;
  color: var(--slate);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  margin: 28px 0 34px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.16);
}

.primary {
  background: var(--copper);
  color: #ffffff;
}

.secondary {
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
  border-color: rgba(16, 42, 67, 0.16);
}

.hero-card {
  background: var(--paper);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-card img {
  display: block;
  width: min(220px, 70%);
  aspect-ratio: 1 / 1;
  margin: 0 auto 22px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 28px rgba(16, 42, 67, 0.15);
}

.hero-card p {
  color: var(--forest);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
}

.section {
  padding: 46px 0;
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 12px 0 26px;
}

.intro-band p {
  max-width: 940px;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

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

.service-grid article {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 58px rgba(16, 42, 67, 0.07);
}

.service-grid h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.service-grid p,
.about-panel p {
  color: var(--slate);
  line-height: 1.62;
  margin: 0;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(31, 58, 46, 0.96));
  color: white;
  border-radius: 36px;
  padding: clamp(34px, 6vw, 66px);
  margin-top: 34px;
  box-shadow: var(--shadow);
}

.about-panel h2 {
  color: white;
  margin-bottom: 20px;
}

.about-panel p {
  color: #D9E2EC;
  font-size: 17px;
}

.proof-points {
  display: grid;
  gap: 12px;
  align-self: center;
}

.proof-points span {
  display: block;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 15px 16px;
  font-weight: 800;
}

.final-cta {
  text-align: center;
  padding: 86px 0;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto 26px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 26px 0 36px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 930px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-card {
    max-width: 440px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding-top: 18px;
  }

  .logo-wrap {
    width: 100%;
  }

  .top-nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(50px, 17vw, 76px);
  }

  .button {
    width: 100%;
  }

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

  .footer {
    flex-direction: column;
    gap: 14px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cta-actions .button {
    width: 100%;
    justify-content: center;
  }

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

  .process-steps::before {
    display: none;
  }

  .process-step {
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
  }

  .process-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ─── Audience Grid ──────────────────────────────────── */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.audience-card {
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-left: 4px solid var(--copper);
  border-radius: 26px;
  padding: 30px 30px 28px;
  box-shadow: 0 18px 58px rgba(16, 42, 67, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 72px rgba(16, 42, 67, 0.12);
}

.audience-card--alt {
  border-left-color: var(--forest);
}

.card-tag {
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  font-size: 11px;
  margin: 0 0 12px;
}

.audience-card--alt .card-tag {
  color: var(--forest);
}

.audience-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--navy-deep);
}

.audience-card p {
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
  font-size: 15px;
}

/* ─── How It Works ───────────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 52px;
  right: 52px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  padding: 0 40px 0 0;
  position: relative;
  z-index: 1;
}

.process-step:last-child {
  padding-right: 0;
}

.step-num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  background: var(--warm-white);
  width: fit-content;
  padding-right: 14px;
}

.process-step h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--navy-deep);
}

.process-step p {
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
  font-size: 15px;
}

/* ─── Final CTA enhancements ─────────────────────────── */

.final-cta h2 {
  margin-bottom: 18px;
}

.cta-sub {
  max-width: 580px;
  margin: 0 auto 32px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer links ───────────────────────────────────── */

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
  font-size: 14px;
}

.footer-linkedin:hover {
  color: var(--navy);
}

/* ─── Responsive additions ──────────────────────────── */

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    padding-right: 0;
  }

  .step-num {
    padding-right: 0;
  }
}
