:root {
  --ink: #241a12;
  --ink-soft: #5f4937;
  --paper: #fffdf8;
  --cream: #fff5e7;
  --cream-deep: #f6dfbd;
  --bronze: #b87822;
  --bronze-dark: #7a4514;
  --gold: #d79a2b;
  --gold-light: #ffe0a1;
  --red-bronze: #a63220;
  --line: rgba(122, 69, 20, 0.22);
  --shadow: 0 24px 70px rgba(67, 38, 15, 0.16);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.centre {
  text-align: center;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--bronze-dark);
}

.nav-cta {
  background: var(--bronze);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(184, 120, 34, 0.25);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 74px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 224, 161, 0.65), transparent 32%),
    linear-gradient(135deg, var(--cream), #fffaf1 58%, #ffffff);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% 44%;
  height: 520px;
  background: radial-gradient(circle, rgba(184, 120, 34, 0.17), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--bronze-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

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

h3 {
  font-size: 1.35rem;
}

.hero-text,
.section-intro {
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.hero-text {
  max-width: 710px;
  margin: 24px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  box-shadow: 0 14px 28px rgba(122, 69, 20, 0.24);
}

.button-secondary {
  color: var(--bronze-dark);
  background: #fff;
  border-color: var(--line);
}

.button-outline {
  color: var(--bronze-dark);
  background: transparent;
  border-color: var(--bronze);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 42px 0 0;
}

.proof-list div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.proof-list dt {
  color: var(--bronze-dark);
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 900;
}

.proof-list dd {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-card {
  position: relative;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-ribbon {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  color: var(--bronze-dark);
  background: var(--gold-light);
  border-radius: 999px;
  font-weight: 900;
}

.hero-card h2 {
  font-size: 1.6rem;
}

.hero-card p {
  color: var(--ink-soft);
}

.hero-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.hero-card li {
  margin: 10px 0;
}

.section {
  padding: 86px 0;
}

.section-warm {
  background: linear-gradient(180deg, #fffaf1, var(--cream));
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(215, 154, 43, 0.34), transparent 30%),
    linear-gradient(135deg, #2f1f13, #5f3514);
}

.steps-grid,
.pricing-grid,
.split-grid,
.sample-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.step-card,
.price-card,
.feature-panel,
.contact-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(67, 38, 15, 0.08);
}

.step-card {
  padding: 28px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: white;
  background: var(--bronze);
  border-radius: 50%;
  font-weight: 900;
}

.step-card p,
.price-summary,
.split-grid p,
.faq-list p,
.contact-card p {
  color: var(--ink-soft);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 44px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.price-card.featured {
  border-width: 2px;
  border-color: var(--bronze);
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(122, 69, 20, 0.22);
}

.featured-label {
  position: absolute;
  top: -15px;
  right: 24px;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.pack-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
}

.pack-badge.bronze {
  color: #5a310f;
  background: #f0c492;
}

.pack-badge.silver {
  color: #4d3513;
  background: #ffd587;
}

.pack-badge.gold {
  color: #412a08;
  background: linear-gradient(135deg, #ffe0a1, var(--gold));
}

.price {
  margin: 18px 0 8px;
  color: var(--bronze-dark);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.tick-list {
  padding-left: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.tick-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 28px;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 900;
}

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

.split-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: start;
}

.feature-panel {
  padding: 30px;
  background: linear-gradient(135deg, #ffffff, #fff5e7);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--bronze-dark);
  font-weight: 800;
}

.sample-grid {
  grid-template-columns: minmax(0, 0.65fr) minmax(340px, 1fr);
  align-items: start;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.prompt-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 224, 161, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.prompt-box pre {
  margin: 0;
  padding: 66px 24px 24px;
  overflow-x: auto;
  white-space: pre-wrap;
  font: 0.95rem/1.55 "Courier New", monospace;
}

.copy-button {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--gold-light);
  font-weight: 900;
  cursor: pointer;
}

.faq-list {
  max-width: 860px;
  margin-top: 34px;
}

.faq-list details {
  padding: 0;
  margin: 14px 0;
  overflow: hidden;
}

.faq-list summary {
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
}

.contact-section {
  padding-top: 30px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 38px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 224, 161, 0.72), transparent 35%),
    linear-gradient(135deg, #fff, var(--cream));
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.small-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 34px 0;
  color: #fff;
  background: #241a12;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    inset: 78px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 8px;
  }

  .hero-grid,
  .steps-grid,
  .pricing-grid,
  .split-grid,
  .sample-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-actions,
  .footer-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    padding: 62px 0 52px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .price-card,
  .hero-card,
  .contact-card {
    padding: 24px;
  }
}
