:root {
  --bg: #f6f1e8;
  --paper: #fffdf9;
  --ink: #17201d;
  --muted: #5a665f;
  --line: #d8d0c4;
  --accent: #29463d;
  --accent-soft: #dde7e0;
  --warm: #ead9bf;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 18px 50px rgba(33, 33, 33, 0.08);
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(234,217,191,.5), transparent 32%),
    linear-gradient(180deg, #f8f4ed 0%, #f2ece1 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
img { max-width: 100%; display: block; }

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

.site-header {
  padding: 20px 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(41,70,61,.14);
  border-radius: 999px;
  background: rgba(255,253,249,.72);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .9rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(41,70,61,.18);
  display: grid;
  place-items: center;
  font-size: .88rem;
  background: linear-gradient(135deg, #fefaf2, #e7dfcf);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: .95rem;
}

.topnav a:hover,
.footer-links a:hover { color: var(--accent); }

.hero {
  padding: 16px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-card,
.sidebar-card,
.legal-shell,
.thankyou-shell {
  background: rgba(255,253,249,.92);
  border: 1px solid rgba(41,70,61,.12);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 42px;
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .84rem;
  letter-spacing: .03em;
  width: fit-content;
}

.hero-copy h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  line-height: .94;
  letter-spacing: -.04em;
  margin: 22px 0 18px;
  max-width: 10ch;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 56ch;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.meta-box {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(221,231,224,.9), rgba(255,253,249,.95));
  border: 1px solid rgba(41,70,61,.08);
}

.meta-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.meta-box span {
  color: var(--muted);
  font-size: .94rem;
}

.hero-panel {
  border-radius: 32px;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.stack-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.stack-title h2,
.section-heading h2,
.sidebar-card h3,
.legal-shell h1,
.thankyou-shell h1 {
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -.03em;
  margin: 0;
}

.stack-title h2 { font-size: 2rem; }
.stack-title span,
.small-note,
.contact-list li,
.timeline-item p,
.faq-item p,
.legal-shell p,
.legal-shell li,
.form-note,
.footer-meta { color: var(--muted); }

.guide-list {
  display: grid;
  gap: 14px;
}

.guide-card {
  border: 1px solid rgba(41,70,61,.1);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,244,237,.95));
}

.guide-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.guide-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.price-tag {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 12px;
  background: var(--warm);
  border-radius: 999px;
}

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

.badges span {
  font-size: .84rem;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(41,70,61,.1);
  color: var(--accent);
  background: rgba(221,231,224,.5);
}

.disclaimer-banner {
  margin-top: 10px;
  border-radius: 20px;
  padding: 16px 18px;
  background: #fbf6ec;
  border: 1px dashed rgba(41,70,61,.2);
  font-size: .96rem;
}

.content-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
  padding-bottom: 70px;
}

.sidebar {
  display: grid;
  gap: 22px;
  align-content: start;
}

.sidebar-card,
.section-card {
  border-radius: 30px;
  padding: clamp(22px, 3vw, 34px);
}

.contact-list,
.clean-list,
.timeline,
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li,
.clean-list li,
.timeline-item,
.faq-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(41,70,61,.09);
}

.contact-list li:last-child,
.clean-list li:last-child,
.timeline-item:last-child,
.faq-item:last-child { border-bottom: none; }

.contact-list strong,
.timeline-item strong,
.faq-item strong,
.clean-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.main-sections {
  display: grid;
  gap: 22px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 18px;
}

.section-heading h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section-heading p { max-width: 44ch; }

.benefits-grid,
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit,
.delivery-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(221,231,224,.62), rgba(255,253,249,.95));
  border: 1px solid rgba(41,70,61,.08);
}

.benefit strong,
.delivery-card strong { display: block; margin-bottom: 8px; }

.timeline-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.step-no {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  margin-top: 2px;
}

.faq-item strong { font-size: 1.03rem; }

.form-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field,
.field-full {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full { grid-column: 1 / -1; }

label {
  font-size: .92rem;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(41,70,61,.16);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

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

.site-footer {
  padding: 0 0 34px;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 28px;
  border: 1px solid rgba(41,70,61,.1);
  background: rgba(255,253,249,.85);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.legal-page,
.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 0;
}

.legal-shell,
.thankyou-shell {
  width: min(900px, calc(100% - 40px));
  border-radius: 36px;
  padding: clamp(26px, 5vw, 54px);
}

.legal-shell h1,
.thankyou-shell h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 14px;
}

.legal-shell h2 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
}

.legal-shell ul {
  padding-left: 20px;
}

.legal-top,
.thankyou-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.back-link {
  color: var(--accent);
  font-weight: 600;
}

.thankyou-shell {
  max-width: 760px;
}

.thankyou-panel {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(221,231,224,.7), rgba(255,253,249,.95));
  border: 1px solid rgba(41,70,61,.1);
  margin: 22px 0;
}

@media (max-width: 960px) {
  .hero-grid,
  .content-grid,
  .form-shell,
  .benefits-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy { min-height: auto; }
  .hero-meta { grid-template-columns: 1fr; }
  .footer-box,
  .legal-top,
  .thankyou-top,
  .section-heading,
  .topbar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .wrapper { width: min(var(--content), calc(100% - 24px)); }
  .hero-copy,
  .hero-panel,
  .sidebar-card,
  .section-card,
  .legal-shell,
  .thankyou-shell { border-radius: 24px; }
  .topbar { border-radius: 26px; }
}
