:root {
  --bg: #0f0d0b;
  --paper: #f4eee5;
  --muted: #c9b9a7;
  --text: #fff8ef;
  --ink: #1a1410;
  --accent: #d7b47a;
  --line: rgba(255, 248, 239, .16);
  --soft: rgba(244, 238, 229, .08);
  --shadow: 0 30px 80px rgba(0,0,0,.34);
  --radius: 28px;
}

body {
  background: var(--bg);
  color: var(--text);
}

.serif {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -.075em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  background: rgba(255, 255, 255, .04);
  transition: .25s ease;
  font-weight: 700;
}

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

.btn.gold {
  background: var(--accent);
  color: #17100c;
  border-color: var(--accent);
}

.btn.gold:hover {
  background: var(--paper);
  border-color: var(--paper);
}

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

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 64px;
  isolation: isolate;
}

.hero .wrap {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 184px);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 13, 11, .94) 0%, rgba(15, 13, 11, .58) 43%, rgba(15, 13, 11, .2) 100%), url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=2200&q=82') center/cover;
  z-index: -2;
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: -1;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(62px, 12vw, 172px);
  line-height: .82;
  margin: 0;
  max-width: 980px;
}

.hero p {
  max-width: 540px;
  color: #eadfce;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  margin: clamp(28px, 4.5vw, 54px) 0 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  right: 0;
  bottom: 6px;
  max-width: 250px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

section {
  padding: clamp(72px, 10vw, 140px) 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(38px, 6vw, 92px);
  line-height: .9;
  margin: 0;
  max-width: 760px;
}

.section-head p {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.plan {
  background: #100d0c;
  padding: 34px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan.featured {
  background: var(--paper);
  color: var(--ink);
}

.tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 22px;
}

.featured .tag {
  color: #8e6732;
}

.plan h3 {
  font-size: 32px;
  margin: 0 0 16px;
}

.price {
  font-family: Georgia, serif;
  font-size: 48px;
  letter-spacing: -.06em;
  margin: 0 0 4px;
}

.price span {
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: inherit;
  opacity: .58;
}

.desc {
  color: var(--muted);
  line-height: 1.55;
  margin: 16px 0 28px;
}

.featured .desc {
  color: #5c5045;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: #eee1d1;
}

.featured ul {
  color: #2b211a;
}

.plan li {
  display: flex;
  gap: 10px;
  line-height: 1.45;
}

.plan li:before {
  content: "•";
  color: var(--accent);
  font-size: 22px;
  line-height: 18px;
}

.plan .btn {
  margin-top: auto;
  width: 100%;
}

.compare {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.cell {
  background: #100d0c;
  padding: 22px;
  color: var(--muted);
  min-height: 72px;
}

.cell.head {
  background: #1b1614;
  color: var(--text);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cell strong {
  color: var(--text);
}

.spotlight .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.spotlight-img {
  height: 720px;
  border-radius: var(--radius);
  overflow: hidden;
}

.spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-copy h2 {
  font-size: clamp(44px, 7vw, 106px);
  line-height: .86;
  margin: 0 0 30px;
}

.spotlight-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.mini-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.mini-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #f4e8d8;
}

.mini-item span:last-child {
  color: var(--muted);
  text-align: right;
}

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

.addon {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: var(--soft);
}

.addon h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.addon p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq .wrap {
  max-width: 800px;
  margin: auto;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.faq summary {
  cursor: pointer;
  font-size: 22px;
}

.faq p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
}

.cta {
  min-height: 70svh;
  text-align: center;
  display: grid;
  place-items: center;
  background: linear-gradient(rgba(15, 13, 11, .3), rgba(15, 13, 11, .92)), url('https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=2200&q=82') center/cover;
}

.cta h2 {
  font-size: clamp(48px, 9vw, 128px);
  line-height: .85;
  margin: 0 auto 26px;
  max-width: 900px;
}

.cta p {
  color: #eadfce;
  max-width: 560px;
  margin: 0 auto 34px;
  line-height: 1.6;
}

@media(max-width: 1100px) {
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-meta {
    position: static;
    margin-top: 42px;
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .cell.head:nth-child(n+2) {
    display: none;
  }
  .spotlight .wrap {
    grid-template-columns: 1fr;
  }
  .spotlight-img {
    height: 520px;
  }
  .addons {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 680px) {
  .hero {
    padding: 108px 0 48px;
    align-items: end;
  }
  .hero .wrap {
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(50px, 16vw, 76px);
  }
  .hero p {
    font-size: 16px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 18px;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .plan {
    min-height: auto;
    padding: 28px;
  }
  .price {
    font-size: 42px;
  }
  .addons {
    grid-template-columns: 1fr;
  }
  .spotlight-img {
    height: 420px;
  }
  .mini-item {
    display: block;
  }
  .mini-item span:last-child {
    text-align: left;
    display: block;
    margin-top: 6px;
  }
  .cta {
    min-height: 62svh;
  }
}
