
:root {
  --bg: #f8f5ef;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #5f5a52;
  --line: #ded7cc;
  --dark: #151515;
  --dark2: #25211b;
  --accent: #b72d22;
  --accent2: #8f2119;
  --gold: #c8944d;
  --soft: #fff8ec;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248,245,239,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 18px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}
.nav a {
  text-decoration: none;
}
.nav a:hover { color: var(--ink); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(183,45,34,0.18);
}
.btn:hover { background: var(--accent2); }
.btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.hero {
  background:
    linear-gradient(135deg, rgba(15,15,15,0.92), rgba(34,27,20,0.72)),
    radial-gradient(circle at 15% 20%, rgba(200,148,77,0.35), transparent 34%),
    radial-gradient(circle at 85% 30%, rgba(183,45,34,0.28), transparent 34%),
    linear-gradient(45deg, #1d1a16, #28231c);
  color: white;
  padding: 86px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}
.kicker {
  color: #f1d3a2;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.96;
  margin: 0 0 18px;
  letter-spacing: -0.07em;
}
.hero-sub {
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.22;
  font-weight: 800;
  margin: 0 0 18px;
}
.hero-copy {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  max-width: 720px;
  margin: 0 0 26px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.price-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.price-card .label {
  color: #f1d3a2;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price {
  font-size: 56px;
  line-height: 1;
  margin: 12px 0 8px;
  font-weight: 900;
  letter-spacing: -0.06em;
}
.deposit {
  font-size: 20px;
  color: rgba(255,255,255,0.86);
}
.note {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.section {
  padding: 66px 0;
}
.section.alt { background: var(--paper); }
.section.dark {
  background: var(--dark);
  color: white;
}
.section-header {
  max-width: 760px;
  margin-bottom: 30px;
}
.eyebrow {
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 13px;
  margin-bottom: 10px;
}
h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin: 0 0 18px;
}
h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
p { margin: 0 0 16px; }
ul, ol { margin: 0; padding-left: 22px; }
li { margin: 8px 0; }
.grid {
  display: grid;
  gap: 18px;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.card.soft { background: var(--soft); }
.dark .card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.program {
  counter-reset: day;
}
.day {
  position: relative;
  padding-left: 74px;
}
.day::before {
  counter-increment: day;
  content: counter(day);
  position: absolute;
  left: 22px;
  top: 24px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.day.zero::before {
  content: "0";
  background: var(--gold);
}
.inclusion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.check-card h3::before {
  content: "✓ ";
  color: var(--accent);
}
.cross-card h3::before {
  content: "× ";
  color: var(--accent);
}
.faq {
  display: grid;
  gap: 10px;
}
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
}
summary {
  cursor: pointer;
  font-weight: 800;
  padding: 18px 20px;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
}
details[open] summary::after { content: "−"; }
details p {
  padding: 0 20px 18px;
  color: var(--muted);
}
.cta-panel {
  background: var(--dark);
  color: white;
  border-radius: 30px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer a { color: var(--ink); }
.conditions-page {
  padding: 54px 0 78px;
}
.legal {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
}
.legal h1 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}
.legal h2 {
  font-size: 28px;
  margin-top: 34px;
}
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  text-decoration: none;
}
.back-link:hover { color: var(--ink); }
@media (max-width: 850px) {
  .nav a:not(.btn) { display: none; }
  .hero-grid, .grid.two, .grid.three, .inclusion, .cta-panel {
    grid-template-columns: 1fr;
  }
  .hero { padding: 62px 0 46px; }
  .section { padding: 48px 0; }
  .price-card { padding: 22px; }
  .price { font-size: 46px; }
  .day { padding-left: 24px; padding-top: 72px; }
  .day::before { left: 24px; top: 24px; }
  .cta-panel { padding: 28px; }
}
@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .brand { font-size: 15px; }
  .header-inner { min-height: 62px; }
  .btn { width: 100%; min-height: 48px; }
  .nav .btn { width: auto; padding: 10px 13px; min-height: 40px; font-size: 13px; }
  .hero-actions .btn { width: 100%; }
  .legal { padding: 22px; }
}
