:root {
  --bg: #f3efe7;
  --paper: rgba(255, 252, 246, 0.86);
  --paper-strong: #fffaf1;
  --ink: #1f2430;
  --muted: #5c6473;
  --line: rgba(31, 36, 48, 0.12);
  --accent: #b5652a;
  --accent-deep: #8a491c;
  --shadow: 0 24px 60px rgba(54, 40, 22, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(181, 101, 42, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(69, 93, 74, 0.16), transparent 28%),
    linear-gradient(180deg, #f6f1e8 0%, #efe8dd 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.92rem;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 12px 18px;
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid var(--line);
  font-weight: 700;
}

.button {
  padding: 15px 24px;
  font-weight: 800;
}

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

.button-primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 18px 32px rgba(138, 73, 28, 0.22);
}

.section {
  margin-bottom: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.panel,
.step,
.fit-card,
.cta-panel {
  background: var(--paper);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 40px;
  padding: 48px;
}

.hero-card,
.panel,
.step,
.fit-card,
.cta-panel {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Fraunces", serif;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 12ch;
}

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

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

.hero-lead,
.section-heading,
.panel p,
.step p,
.fit-list,
.hero-card p,
.cta-panel p {
  color: var(--muted);
}

.hero-lead {
  margin: 22px 0 28px;
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.hero-note {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.card-label {
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.price {
  margin: 16px 0 18px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
}

.checklist,
.fit-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  line-height: 1.55;
}

.section-heading {
  padding: 12px 6px 20px;
}

.section-heading h2 {
  max-width: 14ch;
}

.offer-grid,
.steps,
.fit-grid {
  display: grid;
  gap: 20px;
}

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

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fit-card-alt {
  background: rgba(245, 238, 228, 0.9);
}

.cta-section {
  padding-top: 8px;
}

.cta-panel {
  padding: 40px;
  text-align: left;
}

.cta-panel h2 {
  max-width: 16ch;
  margin-bottom: 14px;
}

.cta-panel p {
  max-width: 58ch;
  margin: 0 0 22px;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .hero,
  .offer-grid,
  .steps,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 36px 28px;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 18px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .step,
  .fit-card,
  .cta-panel {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-actions {
    align-items: flex-start;
  }

  .button,
  .header-cta {
    width: 100%;
  }
}
