:root {
  --ink: #1d2727;
  --muted: #566363;
  --paper: #f5f1e9;
  --cream: #fffdf8;
  --wash: #e6ece7;
  --line: #c9d2cc;
  --accent: #2b665b;
  --accent-dark: #1e4d45;
  --warm: #d98d5f;
  --shadow: 0 16px 45px rgba(29, 39, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(201, 210, 204, 0.8);
  background: rgba(245, 241, 233, 0.92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 3;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 20px;
}

nav a,
footer a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
footer a:hover {
  color: var(--accent);
}

.hero {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 2%;
  width: min(32vw, 350px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 0 35px var(--paper), inset 0 0 0 37px var(--warm);
  opacity: 0.78;
  z-index: -1;
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 7.5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

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

.hero-copy {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 18px;
}

.button {
  padding: 12px 17px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

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

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

.button-secondary {
  color: var(--accent);
}

.button-secondary:hover {
  background: var(--wash);
}

.hero-note,
.fine-print,
.best-for,
.footer-status {
  color: var(--muted);
  font-size: 0.84rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 100px 0;
}

.split-section p,
.split-section li {
  color: var(--muted);
}

.deliverables,
.process,
.about,
.sample-section {
  background: var(--cream);
}

.deliverables .section-shell,
.process .section-shell {
  padding: 100px 0;
}

.feature-grid,
.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-grid article,
.kit-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.feature-grid span,
.process-list span {
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.feature-grid p,
.kit-card p,
.process-list p {
  color: var(--muted);
  font-size: 0.93rem;
}

.kits-section {
  padding: 110px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
}

.kit-card {
  min-height: 275px;
  display: flex;
  flex-direction: column;
}

.kit-card.featured {
  border-color: var(--accent);
  background: var(--wash);
  box-shadow: var(--shadow);
}

.kit-name {
  margin-bottom: 2px;
  color: var(--ink) !important;
  font-weight: 800;
}

.price {
  margin-bottom: 16px;
  color: var(--accent) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem !important;
  line-height: 1;
}

.best-for {
  margin-top: auto;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
}

.boundaries ul {
  margin: 0;
  padding-left: 20px;
}

.boundaries li {
  margin-bottom: 10px;
}

.prelaunch {
  padding: 12px 14px;
  border-left: 3px solid var(--warm);
  background: rgba(217, 141, 95, 0.1);
}

footer {
  color: white;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 36px 0;
}

footer div div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer a,
.footer-status {
  color: #b8c7c2;
}

.legal {
  min-height: calc(100vh - 80px);
  padding: 80px 0;
}

.legal article {
  max-width: 760px;
}

.legal h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.legal h2 {
  margin-top: 32px;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
}

.sample-disclaimer {
  padding: 14px 16px;
  border-left: 3px solid var(--warm);
  background: rgba(217, 141, 95, 0.1);
}

.sample-block {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.sample-block h2 {
  margin-top: 0;
}

.sample-block ul,
.sample-block ol {
  padding-left: 22px;
}

.sample-block li {
  margin-bottom: 8px;
}

.draft-text {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: var(--wash);
}

.back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 850px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 560px;
    overflow: hidden;
  }

  .hero::after {
    right: -60px;
    width: 245px;
  }

  .split-section,
  .feature-grid,
  .kit-grid,
  .process-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .split-section,
  .deliverables .section-shell,
  .process .section-shell,
  .kits-section {
    padding: 72px 0;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.25rem, 15vw, 4rem);
    overflow-wrap: anywhere;
  }

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

  .hero-actions {
    gap: 9px;
  }

  .button {
    padding: 11px 14px;
    font-size: 0.8rem;
  }
}
