:root {
  --bg: #0f1115;
  --bg-soft: #171a21;
  --paper: #f2efe8;
  --text: #111;
  --text-light: #f2f2f2;
  --muted: #b5b7bd;
  --accent: #ff5a1f;
  --accent-strong: #e73d00;
  --line: #2b2f39;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-light);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80vw 80vw at 80% -10%, rgba(255, 90, 31, 0.28), transparent 60%),
    linear-gradient(130deg, #0f1115 25%, #181c25 100%);
  z-index: -1;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.brand {
  text-decoration: none;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.4px;
  font-size: 1.7rem;
}

.nav-cta {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: .65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  font-weight: 700;
  font-size: .8rem;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .6px;
  line-height: 1;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.lead {
  font-size: 1.05rem;
  color: #e8e8ea;
}

.strong {
  font-weight: 700;
}

.hero-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid rgba(255, 90, 31, 0.4);
}

.section {
  padding: 4.2rem 0;
}

.section-dark {
  background: var(--bg-soft);
}

.section-light {
  background: var(--paper);
  color: var(--text);
}

.section-accent {
  background: linear-gradient(160deg, #1e222c, #11141b);
}

.pain-list,
.check-list {
  padding-left: 1.2rem;
}

.pain-list li,
.check-list li {
  margin-bottom: .6rem;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.photo-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.bio-grid .photo-stack {
  max-width: 380px;
  margin-inline: auto;
}

.photo-stack img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.photo-stack .photo-vertical {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 22%;
}

.photo-stack .photo-horizontal {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.book-cover img {
  max-width: 360px;
  margin-inline: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.card {
  background: #20252f;
  border: 1px solid var(--line);
  padding: 1.2rem;
  border-radius: var(--radius);
}

.pricing {
  margin-top: 1.6rem;
  padding: 1.3rem;
  border: 1px solid rgba(255, 90, 31, 0.4);
  border-radius: var(--radius);
  background: #171a20;
}

.price-label {
  color: var(--muted);
  margin-bottom: .1rem;
}

.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin: .1rem 0 .7rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: .9rem 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-small {
  padding: .55rem 1rem;
  font-size: .82rem;
}

.mini-note {
  font-size: .9rem;
  color: var(--muted);
}

.section-contact {
  background: #131720;
}

.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: #1b202a;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a,
.section-contact a {
  color: #ffe0d2;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  color: #111;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  padding: .9rem;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: .5rem;
}

@media (max-width: 920px) {
  .hero-content,
  .grid-two,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 480px;
    margin-inline: auto;
  }

  .photo-stack .photo-vertical {
    aspect-ratio: 4 / 5;
    object-position: 50% 18%;
  }

  .photo-stack .photo-horizontal {
    aspect-ratio: 16 / 10;
  }

  .bio-grid .photo-stack {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .top-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: .7rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
