:root {
  --forest-950: #0a2a23;
  --forest-900: #123d32;
  --forest-800: #1b5544;
  --teal-600: #198779;
  --gold-500: #e5b83d;
  --gold-300: #f3d77b;
  --ink-900: #17211e;
  --ink-700: #3f4d48;
  --ink-500: #68746f;
  --paper: #f6f4ee;
  --white: #ffffff;
  --line: #d6d8d2;
  --focus: #00a89a;
  --content: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--forest-950);
  background: var(--gold-300);
  border: 2px solid var(--forest-950);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px max(24px, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: var(--forest-950);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--forest-950);
  background: var(--gold-300);
  border-radius: 50%;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 650;
}

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

.site-nav a:not(.nav-cta):hover {
  color: var(--gold-300);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--forest-950);
  background: var(--gold-300);
  border: 1px solid var(--gold-300);
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--white);
  border-color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 4px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(650px, calc(100svh - var(--header-height) - 88px));
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgb(4 29 24 / 66%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(88px, 13vh, 142px) 0 86px;
}

.hero-inner > * {
  max-width: 680px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--forest-800);
}

.hero h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.6rem);
  font-weight: 500;
}

.hero-copy {
  margin-bottom: 32px;
  font-size: clamp(1.1rem, 2.1vw, 1.42rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--forest-950);
  background: var(--gold-300);
}

.button-primary:hover {
  background: var(--white);
}

.button-light {
  color: var(--forest-950);
  background: var(--white);
}

.button-light:hover {
  background: var(--gold-300);
}

.text-link {
  font-weight: 750;
  text-underline-offset: 5px;
}

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

.checkout-note {
  margin-top: 20px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 0.86rem;
}

.section-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.offer-band {
  padding: 70px 0;
  background: var(--gold-300);
  border-bottom: 1px solid rgb(10 42 35 / 18%);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  align-items: end;
  gap: 64px;
}

.offer-layout h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.price-block {
  padding-left: 28px;
  border-left: 1px solid rgb(10 42 35 / 36%);
}

.price {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 9vw, 7rem);
  line-height: 0.9;
}

.price-note {
  display: block;
  margin-top: 16px;
  color: var(--ink-700);
  font-size: 0.88rem;
  font-weight: 750;
}

.included-section,
.faq-section {
  padding: clamp(84px, 12vw, 150px) 0;
}

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

.section-heading > p:last-child {
  max-width: 660px;
  color: var(--ink-700);
  font-size: 1.08rem;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.deliverables li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.deliverables li:nth-child(odd) {
  padding-right: 48px;
}

.deliverables li:nth-child(even) {
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.deliverables li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  padding-right: 28px;
}

.deliverable-number {
  color: var(--teal-600);
  font-size: 0.75rem;
  font-weight: 850;
}

.deliverables p {
  margin-bottom: 0;
  color: var(--ink-700);
}

.principle-band {
  padding: 82px 0;
  color: var(--white);
  background: var(--teal-600);
}

.principle-layout {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 42px;
}

.principle-layout h2 {
  max-width: 760px;
  margin-bottom: 14px;
}

.principle-layout p:not(.principle-kicker) {
  max-width: 640px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 84%);
  font-size: 1.1rem;
}

.principle-kicker {
  margin: 0;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-style: italic;
}

.principle-kicker-right {
  text-align: right;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 82px;
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--ink-900);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  content: "+";
  color: var(--teal-600);
  font-size: 1.45rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 640px;
  padding: 0 44px 24px 0;
  margin-bottom: 0;
  color: var(--ink-700);
}

.closing-section {
  padding: 76px 0;
  color: var(--white);
  background: var(--forest-900);
}

.closing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  align-items: end;
  gap: 64px;
}

.closing-layout h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.closing-action {
  justify-self: end;
}

.closing-action p {
  margin-top: 14px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 0.82rem;
}

.site-footer {
  padding: 28px 0;
  color: rgb(255 255 255 / 72%);
  background: var(--forest-950);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  width: min(var(--content), calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
}

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

@media (max-width: 820px) {
  .site-header {
    padding-inline: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: var(--forest-950);
    border-bottom: 1px solid rgb(255 255 255 / 20%);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    padding: 12px 16px;
    text-align: center;
    border-bottom: 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-inner {
    width: min(100% - 40px, var(--content));
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 17vw, 6.4rem);
  }

  .offer-layout,
  .faq-layout,
  .closing-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .price-block {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgb(10 42 35 / 36%);
    border-left: 0;
  }

  .principle-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .principle-kicker-right {
    display: none;
  }

  .closing-action {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .section-inner {
    width: calc(100% - 40px);
  }

  .brand {
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

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

  .deliverables li,
  .deliverables li:nth-child(odd),
  .deliverables li:nth-child(even) {
    padding: 24px 0;
    border-left: 0;
  }

  .footer-inner {
    width: calc(100% - 40px);
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
