:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f625d;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --line: #dedbd0;
  --accent: #d7332f;
  --accent-dark: #9f211e;
  --green: #244a3b;
  --gold: #c99b3f;
  --shadow: 0 20px 50px rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 5vw;
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(222, 219, 208, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(86svh - 68px);
  overflow: hidden;
  background: #161616;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0.62) 46%, rgba(10, 10, 10, 0.2) 100%),
    url("https://images.unsplash.com/photo-1599058917212-d750089bc07e?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 90vw);
  align-self: center;
  padding: 8vh 0 12vh 5vw;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.18;
  font-weight: 900;
}

.hero h1 {
  max-width: 12em;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.lead {
  max-width: 720px;
  margin: 1.4rem 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 760px;
  margin-top: 1.3rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.34rem 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-proof span:first-child {
  color: #ffd46b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.35;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(215, 51, 47, 0.28);
}

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

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button.large {
  min-width: 260px;
  min-height: 56px;
}

.section {
  padding: 88px 5vw;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  text-align: center;
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.section-heading p,
.text-panel p,
.cta p {
  color: var(--muted);
  font-size: 1rem;
}

.worry-grid,
.program-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.worry-grid article,
.program-card,
.review-card {
  min-height: 230px;
  padding: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.worry-grid span {
  color: var(--accent);
  font-weight: 900;
}

.worry-grid h3,
.program-card h3 {
  margin: 0.7rem 0 0.4rem;
  font-size: 1.18rem;
  line-height: 1.35;
}

.worry-grid p,
.program-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 3rem;
  align-items: center;
  background: #f1eee4;
}

.photo-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-panel {
  max-width: 640px;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 0.9rem 1rem;
  background: rgba(36, 74, 59, 0.08);
  border-left: 4px solid var(--green);
  border-radius: 4px;
  font-weight: 800;
}

.program {
  background: var(--green);
  color: #fff;
}

.program .section-heading p,
.program-card p {
  color: rgba(255, 255, 255, 0.78);
}

.program-grid {
  margin-top: 2rem;
}

.program-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.program-card.featured {
  background: #fff;
  color: var(--ink);
  transform: translateY(-14px);
  box-shadow: var(--shadow);
}

.program-card.featured p {
  color: var(--muted);
}

.price {
  margin: 0.6rem 0 0.75rem !important;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold) !important;
}

.program-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.program-detail article {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.program-detail span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.18rem 0.6rem;
  background: rgba(201, 155, 63, 0.16);
  border: 1px solid rgba(201, 155, 63, 0.36);
  border-radius: 999px;
  color: #f3cd78;
  font-size: 0.78rem;
  font-weight: 900;
}

.program-detail h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.1rem;
  line-height: 1.35;
}

.program-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.proof-heading {
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
  max-width: none;
}

.proof-heading > div:first-child {
  max-width: 820px;
}

.rating-card {
  flex: 0 0 230px;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rating-card .stars {
  margin: 0;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.rating-card strong {
  display: block;
  margin: 0.1rem 0 0;
  color: var(--accent);
  font-size: 3.2rem;
  line-height: 1;
}

.rating-card span {
  color: var(--muted);
  font-weight: 800;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.review-label {
  width: fit-content;
  padding: 0.18rem 0.65rem;
  background: rgba(215, 51, 47, 0.1);
  border-radius: 999px;
  color: var(--accent) !important;
  font-size: 0.82rem;
  font-weight: 900;
}

.review-card h3 {
  margin: 1rem 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.38;
}

.review-card strong {
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1.2;
}

.cta {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  background: #171717;
  color: #fff;
}

.cta div {
  max-width: 820px;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 28px 5vw;
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 62px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: calc(86svh - 62px);
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.58) 0%, rgba(10, 10, 10, 0.88) 78%),
      url("https://images.unsplash.com/photo-1599058917212-d750089bc07e?auto=format&fit=crop&w=1000&q=80") center / cover;
  }

  .hero-content {
    align-self: center;
    width: 100%;
    padding: 8vh 5vw 5vh;
  }

  .hero-actions,
  .cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 5vw;
  }

  .worry-grid,
  .program-grid,
  .program-detail,
  .review-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .proof-heading {
    display: grid;
    gap: 1.4rem;
  }

  .rating-card {
    width: 100%;
    flex-basis: auto;
  }

  .program-card.featured {
    transform: none;
  }

  .worry-grid article,
  .program-card,
  .review-card {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.24rem;
  }

  .hero-content {
    padding-bottom: 4vh;
  }

  .section h2 {
    font-size: 1.82rem;
  }
}
