:root {
  color-scheme: light;
  --ink: #24201d;
  --muted: #6d625b;
  --line: #e3d8cf;
  --paper: #fffaf5;
  --soft: #f3ebe3;
  --rose: #b84d62;
  --rose-dark: #8e3144;
  --green: #60745f;
  --gold: #b3823f;
  --shadow: 0 20px 50px rgba(49, 38, 28, 0.16);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(36, 32, 29, 0.72);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.header-cta {
  background: #fff;
  color: var(--rose-dark);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(18px, 5vw, 72px) 56px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(25, 18, 14, 0.9) 0%,
      rgba(25, 18, 14, 0.72) 35%,
      rgba(25, 18, 14, 0.28) 68%,
      rgba(25, 18, 14, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(25, 18, 14, 0.58) 0%, rgba(25, 18, 14, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(710px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #f2c875;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button.primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 14px 34px rgba(142, 49, 68, 0.32);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button.large {
  min-height: 54px;
  padding: 0 26px;
  font-size: 17px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(680px, 100%);
  margin: 42px 0 0;
}

.hero-facts div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-facts dt {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.section {
  padding: clamp(72px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.section-kicker {
  color: var(--rose);
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0;
}

p {
  line-height: 1.9;
}

.lead-block p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.soft-band {
  background: var(--soft);
}

.split-band {
  background: #2f352e;
  color: #fff;
}

.split-band .section-kicker {
  color: #f2c875;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.compact {
  margin-bottom: 26px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.timeline article,
.rules-grid article,
.question-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.9);
  box-shadow: var(--shadow);
}

.timeline article {
  min-height: 250px;
  padding: 22px;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.timeline p,
.rules-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rules-grid article {
  min-height: 184px;
  padding: 28px;
}

.price-line {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.8;
}

.price-line span {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-line strong {
  color: #f2c875;
  font-size: clamp(32px, 5vw, 54px);
}

.offer-list {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.offer-list p {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.2em;
}

li {
  margin: 10px 0;
  line-height: 1.8;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 190px;
  margin: 0;
  padding: 22px;
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  background: #fffaf5;
}

.flow-list strong,
.flow-list span {
  display: block;
}

.flow-list strong {
  font-size: 18px;
}

.flow-list span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.question-box {
  padding: 30px;
}

.question-box h3 {
  margin-bottom: 14px;
}

.entry {
  padding: clamp(76px, 10vw, 126px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #7c3040 0%, #b84d62 54%, #b3823f 100%);
  color: #fff;
}

.entry-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.entry .section-kicker,
.entry p {
  color: rgba(255, 255, 255, 0.9);
}

.entry p {
  margin: 20px auto 0;
}

.entry .button {
  margin-top: 30px;
  background: #fff;
  color: var(--rose-dark);
  box-shadow: 0 16px 40px rgba(49, 38, 28, 0.22);
}

.entry-note {
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #211d1a;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .two-column,
  .timeline,
  .rules-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .flow-list li {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 62px;
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    font-size: 14px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 96svh;
    padding: 92px 18px 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(25, 18, 14, 0.9) 0%,
        rgba(25, 18, 14, 0.7) 72%,
        rgba(25, 18, 14, 0.5) 100%
      ),
      linear-gradient(
        0deg,
        rgba(25, 18, 14, 0.72) 0%,
        rgba(25, 18, 14, 0.1) 58%
      );
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-facts div {
    min-height: 74px;
    padding: 14px;
  }

  .section {
    padding: 66px 18px;
  }

  h2 {
    font-size: 30px;
  }

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