:root {
  --navy: #0b1e3f;
  --navy-2: #102b56;
  --gold: #c9a352;
  --gold-2: #9f7f36;
  --ivory: #f7f3eb;
  --paper: #fffaf1;
  --charcoal: #1c1c1e;
  --slate: #5a6b7b;
  --mist: #e9e1d3;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(11, 30, 63, 0.12);
  --radius: 8px;
  --container: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), var(--container));
  height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(11, 30, 63, 0.54);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.12);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--navy);
  background: rgba(247, 243, 235, 0.92);
  border-color: rgba(11, 30, 63, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 700;
}

.brand-logo {
  width: 36px;
  height: 40px;
  object-fit: contain;
}

.brand-word {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.brand-word span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: currentColor;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(201, 163, 82, 0.8);
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 144px max(24px, calc((100vw - var(--container)) / 2)) 96px;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 30, 63, 0.92) 0%, rgba(11, 30, 63, 0.74) 36%, rgba(11, 30, 63, 0.24) 74%, rgba(11, 30, 63, 0.08) 100%),
    linear-gradient(0deg, rgba(11, 30, 63, 0.34), rgba(11, 30, 63, 0.04) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  font-size: clamp(52px, 9vw, 104px);
}

h2 {
  color: var(--navy);
  font-size: clamp(34px, 5.4vw, 68px);
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: #d7b96d;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  width: min(330px, calc(100% - 48px));
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: rgba(247, 243, 235, 0.94);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 4px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.intro-band,
.closing-band,
.site-footer {
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
}

.intro-band {
  margin-top: -1px;
  background: var(--navy);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 34px 0;
}

.intro-grid p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(20px, 2.4vw, 30px);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.18;
}

.intro-grid dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.15);
}

.intro-grid div {
  min-width: 0;
  padding: 18px;
  background: var(--navy-2);
}

.intro-grid dt {
  color: var(--gold);
  font-weight: 850;
}

.intro-grid dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 100px max(24px, calc((100vw - var(--container)) / 2));
}

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

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

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.center p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.service-section {
  background: var(--ivory);
}

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

.service-card,
.price-card,
.timeline li,
details {
  border: 1px solid rgba(11, 30, 63, 0.12);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(11, 30, 63, 0.06);
}

.service-card {
  min-height: 280px;
  padding: 26px;
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--slate);
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
  background: var(--white);
}

.proof-strip h2 {
  font-size: clamp(34px, 4.8vw, 58px);
}

.never-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.never-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border-bottom: 1px solid var(--mist);
  color: var(--navy);
  font-weight: 700;
}

.never-list li::before {
  position: absolute;
  top: 20px;
  left: 16px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, transparent 42%, var(--gold) 43% 55%, transparent 56%);
  content: "";
}

.reach-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(201, 163, 82, 0.2), transparent 28%),
    linear-gradient(135deg, #07152d 0%, var(--navy) 50%, #12315c 100%);
  color: var(--white);
}

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

.reach-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.reach-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0;
  background: rgba(255, 255, 255, 0.13);
}

.reach-stats div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.reach-stats strong {
  display: block;
  color: var(--gold);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  white-space: nowrap;
}

.reach-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.reach-media {
  position: relative;
  min-height: 640px;
}

.reach-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.reach-card img {
  width: 100%;
  height: auto;
}

.reach-card figcaption {
  padding: 14px 16px;
  background: var(--paper);
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.search-proof {
  z-index: 1;
  top: 36px;
  right: 0;
  width: min(70%, 410px);
}

.newsletter-proof {
  z-index: 2;
  top: 166px;
  left: 0;
  width: min(92%, 620px);
}

.pricing-section {
  background:
    linear-gradient(180deg, var(--ivory), #efe7d9);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(201, 163, 82, 0.82);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-18px);
}

.badge {
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 7px 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.price-top {
  min-height: 112px;
}

.featured h3,
.featured .price,
.featured .price small {
  color: var(--white);
}

.price-card p {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 14px;
}

.featured p,
.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.price {
  margin: 26px 0 20px;
  color: var(--navy);
  font-size: 56px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.price span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
}

.price small {
  color: var(--slate);
  font-size: 16px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--slate);
  font-size: 14px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.button-plan {
  border-color: rgba(11, 30, 63, 0.18);
  background: transparent;
  color: var(--navy);
}

.button-plan:hover {
  border-color: var(--gold);
  background: rgba(201, 163, 82, 0.14);
}

.add-on-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 1fr);
  gap: 56px;
  background: var(--navy);
  color: var(--white);
}

.add-on-section h2 {
  color: var(--white);
}

.addon-table {
  display: grid;
  align-self: start;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.addon-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px 100px;
  gap: 16px;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.addon-table span {
  min-width: 0;
  font-weight: 700;
}

.addon-table strong {
  color: var(--gold);
}

.addon-table small {
  color: rgba(255, 255, 255, 0.68);
}

.journey-section {
  background: var(--ivory);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  min-height: 244px;
  padding: 26px;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--gold-2);
  font-weight: 850;
}

.timeline p {
  margin: 14px 0 0;
  color: var(--slate);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(360px, 1fr);
  gap: 56px;
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 18px;
  font-weight: 850;
}

details p {
  margin: 14px 0 0;
  color: var(--slate);
}

.closing-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--navy);
  color: var(--white);
}

.closing-band h2 {
  max-width: 780px;
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  padding-top: 52px;
  padding-bottom: 52px;
  background: #07152d;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  max-width: 400px;
  margin: 14px 0 0;
}

.footer-brand {
  color: var(--white);
}

.footer-meta {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(150px, 0.7fr) minmax(120px, 0.46fr);
  gap: 34px;
  max-width: 760px;
  justify-self: end;
  text-align: left;
}

.footer-meta div,
.footer-links {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-meta p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.footer-meta a {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.footer-label {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-main {
  min-height: 100svh;
  background: var(--ivory);
}

.legal-hero {
  padding: 154px max(24px, calc((100vw - var(--container)) / 2)) 74px;
  background: var(--navy);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 860px;
  font-size: clamp(46px, 7vw, 86px);
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
  gap: 54px;
  padding: 76px max(24px, calc((100vw - var(--container)) / 2)) 96px;
}

.legal-toc {
  position: sticky;
  top: 98px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(11, 30, 63, 0.06);
}

.legal-toc a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.legal-copy {
  display: grid;
  gap: 26px;
  max-width: 820px;
}

.legal-copy section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--mist);
}

.legal-copy h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.legal-copy h3 {
  margin-top: 24px;
}

.legal-copy p,
.legal-copy li {
  color: var(--slate);
  font-size: 16px;
}

.legal-copy ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-copy a {
  color: var(--gold-2);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .service-grid,
  .pricing-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    transform: none;
  }

}

@media (max-width: 820px) {
  .site-header {
    top: 0;
    width: 100%;
    height: auto;
    min-height: 64px;
    padding: 12px 16px;
    transform: translateX(-50%);
    border-right: 0;
    border-left: 0;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 30, 63, 0.95), rgba(11, 30, 63, 0.74)),
      linear-gradient(0deg, rgba(11, 30, 63, 0.48), rgba(11, 30, 63, 0.16));
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(330px, 100%);
    margin-top: 30px;
  }

  .intro-grid,
  .proof-strip,
  .reach-section,
  .add-on-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .intro-grid dl {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .price-card {
    min-height: auto;
  }

  .reach-media {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .reach-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .newsletter-proof {
    width: min(100%, 520px);
  }

  .addon-table div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 18px 0;
  }

  .closing-band,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    justify-self: stretch;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 520px) {
  .brand-word {
    font-size: 21px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions,
  .hero-actions .button,
  .closing-band .button {
    width: 100%;
  }

  .hero-panel {
    width: 100%;
    right: auto;
    bottom: auto;
    padding: 18px;
  }

  .hero-panel strong {
    font-size: 28px;
  }

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

  .intro-band,
  .closing-band,
  .site-footer,
  .legal-hero,
  .legal-content,
  .section {
    padding-right: 18px;
    padding-left: 18px;
  }
}
