:root {
  --espresso: #120f0d;
  --charcoal: #161211;
  --deep: #090706;
  --cream: #f3e7dc;
  --ivory: #e8d3c4;
  --rose: #d39a8e;
  --rose-dark: #b98278;
  --taupe: #9f847f;
  --line: rgba(211, 154, 142, 0.24);
  --soft: rgba(255,255,255,0.035);
  --shadow: rgba(0,0,0,0.34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 8%, rgba(211, 154, 142, 0.13), transparent 28rem),
    radial-gradient(circle at 85% 12%, rgba(74, 48, 39, 0.62), transparent 34rem),
    linear-gradient(180deg, var(--espresso) 0%, #191411 52%, var(--deep) 100%);
  color: var(--cream);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

.shell {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 15, 13, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand,
.nav-note,
.eyebrow {
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-note { color: var(--taupe); }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 1.25rem;
  padding: 2rem 0;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.cards article,
.belief,
.steps article,
.offer-card,
.price-card,
.final,
.footer {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 154, 142, 0.08), transparent 18rem),
    rgba(18, 15, 13, 0.74);
  border-radius: 1.4rem;
  box-shadow: 0 28px 80px var(--shadow);
}

.hero-copy {
  padding: clamp(2.4rem, 6vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1,
h2,
h3,
.statement {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.88;
}

h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
  line-height: 0.92;
  color: var(--rose);
}

h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1;
  color: var(--cream);
}

.lead {
  max-width: 760px;
  color: var(--ivory);
  font-size: clamp(1.05rem, 1.85vw, 1.34rem);
  line-height: 1.75;
}

.cta-block {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
  align-items: start;
}

.cta-block p,
.price-card p {
  color: var(--taupe);
  font-size: 0.92rem;
  margin: 0;
}

.btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--rose-dark);
  padding: 1rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.22s ease;
}

.btn.primary {
  background: var(--rose-dark);
  color: #120f0d;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--rose);
  border-color: var(--rose);
}

.hero-panel {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  background:
    radial-gradient(circle at 60% 18%, rgba(246, 220, 176, 0.16), transparent 12rem),
    linear-gradient(145deg, #4a3027, #161110 60%, #090807);
}

.panel-label {
  color: var(--rose);
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.thoughts {
  display: grid;
  gap: 0.75rem;
}

.thoughts span {
  border: 1px solid rgba(211, 154, 142, 0.24);
  border-radius: 1rem;
  padding: 1rem;
  color: var(--ivory);
  background: rgba(18, 15, 13, 0.5);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 1px solid var(--line);
}

.split,
.belief-grid,
.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.copy p,
.copy li,
.offer-card p,
.final p {
  color: var(--ivory);
  font-size: 1.04rem;
}

.copy ul {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.cards article {
  min-height: 300px;
  padding: 1.3rem;
}

.cards span,
.steps strong,
.price-card span {
  display: block;
  margin-bottom: 1rem;
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cards p,
.steps span {
  color: var(--ivory);
}

.belief {
  box-shadow: none;
}

.statement {
  color: var(--cream);
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
}

.statement em {
  color: var(--rose);
  font-style: italic;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.steps article {
  min-height: 180px;
  padding: 1.2rem;
  box-shadow: none;
}

.offer-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.price-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  text-align: center;
}

.price-card strong {
  display: block;
  margin: 0.5rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--rose);
}

.price-card .btn {
  width: 100%;
}

.final {
  padding: clamp(2rem, 5vw, 4rem);
}

.footer {
  margin: 2rem auto;
  width: min(1180px, calc(100% - 42px));
  box-shadow: none;
}

.footer-inner {
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--taupe);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .hero-grid,
  .split,
  .belief-grid,
  .offer-card,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 420px;
  }

  .cards article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .shell,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .hero-grid {
    padding: 1rem 0;
  }

  .hero-copy,
  .hero-panel {
    padding: 1.4rem;
  }

  .hero-panel {
    min-height: 320px;
  }

  .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }
}
