:root {
  color-scheme: light;
  --ink: #191713;
  --muted: #5f5a51;
  --paper: #fbf8f1;
  --white: #fffdf8;
  --line: #dfd6c8;
  --pine: #1f5d4d;
  --pine-dark: #163f36;
  --coral: #c94f38;
  --gold: #d9a23b;
  --sky: #dcebf1;
  --shadow: 0 20px 55px rgba(44, 35, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(31, 93, 77, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(31, 93, 77, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(31, 93, 77, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 34px rgba(52, 42, 29, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--pine);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--sky);
  color: var(--ink);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(600px, 78svh, 780px);
  margin-top: -66px;
  padding: 128px 16px 34px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(25, 23, 19, 0.84), rgba(25, 23, 19, 0.52) 44%, rgba(25, 23, 19, 0.18)),
    url("https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  content: "";
  background: linear-gradient(transparent, var(--paper));
}

.hero-content {
  display: grid;
  align-content: center;
  width: min(1180px, 100%);
  min-height: clamp(430px, 58svh, 570px);
  margin: 0 auto;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  width: min(900px, 100%);
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  width: min(680px, 100%);
  margin-bottom: 32px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.hero-actions,
.calculator-row,
.field-pair {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(217, 162, 59, 0.55);
  outline-offset: 2px;
}

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

.button.primary:hover {
  background: #aa3e2b;
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.56);
  background: rgba(255, 253, 248, 0.13);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 253, 248, 0.22);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(980px, calc(100% - 32px));
  margin: -28px auto 84px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-strip strong {
  color: var(--pine);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 96px;
}

.split,
.pricing-section,
.intake-section,
.acquisition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

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

.offer-card,
.calculator,
.process-steps article,
.intake-form,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(52, 42, 29, 0.08);
}

.offer-card {
  min-height: 260px;
  padding: 26px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 800;
}

.offer-card p,
.process-steps p,
.faq p,
.pricing-copy p,
.intake-copy p {
  color: var(--muted);
}

.genres {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 44px;
  align-items: center;
  padding: clamp(28px, 6vw, 56px);
  border-radius: 8px;
  background: var(--pine-dark);
  color: var(--white);
}

.genres h2 {
  font-size: clamp(2rem, 3.7vw, 4rem);
}

.genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.genre-list span {
  padding: 11px 13px;
  border: 1px solid rgba(255, 253, 248, 0.25);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.92);
  font-weight: 800;
}

.calculator {
  padding: 26px;
}

.calculator label,
.intake-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.calculator-row {
  align-items: stretch;
  margin-top: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9beae;
  border-radius: 8px;
  background: #fffefd;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

output {
  display: grid;
  min-width: 128px;
  place-items: center;
  border-radius: 8px;
  background: var(--pine);
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 900;
}

.formula {
  margin: 14px 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.example-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sky);
  color: var(--pine-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.example-button:hover {
  background: #c7dfe7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-steps article {
  padding: 24px;
}

.process-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.intake-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.field-pair > label {
  flex: 1;
}

.full-width {
  width: 100%;
  border: 0;
  font: inherit;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

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

.outreach-list p {
  margin: 0;
  padding: 18px 20px;
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(52, 42, 29, 0.07);
  color: var(--muted);
  font-weight: 700;
}

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

.faq details {
  padding: 0 20px;
}

.faq summary {
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin-bottom: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.site-footer a {
  color: var(--pine);
  text-decoration: none;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: clamp(560px, 78svh, 680px);
    padding-top: 118px;
  }

  .hero-content {
    min-height: 0;
  }

  .hero-actions,
  .calculator-row,
  .field-pair,
  .site-footer {
    flex-direction: column;
  }

  .proof-strip,
  .offer-grid,
  .process-steps,
  .pricing-section,
  .intake-section,
  .acquisition,
  .split,
  .genres {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  output {
    min-height: 58px;
  }
}

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

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: clamp(560px, 82svh, 660px);
    margin-top: -62px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(25, 23, 19, 0.76), rgba(25, 23, 19, 0.5) 55%, rgba(25, 23, 19, 0.2)),
      url("https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=1000&q=82") 55% center / cover;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .section,
  .proof-strip {
    margin-bottom: 68px;
  }

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

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