:root {
  --cream: #fbf4e8;
  --tan: #f3e9d8;
  --ink: #2b2118;
  --ink-soft: #4a3f32;
  --muted: #6b5d4b;
  --muted-light: #8a7a62;
  --green: #2f6b5e;
  --orange: #e8804f;
  --yellow: #e0b23a;
  --white: #ffffff;
  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--green);
  margin: 0 0 10px;
}

.eyebrow-orange {
  color: var(--orange);
}

.eyebrow-yellow {
  color: var(--yellow);
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 999px;
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: #fff8ef;
  padding: 16px 30px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn-small {
  padding: 12px 22px;
  font-size: 14px;
}

.btn-full {
  display: block;
  width: 100%;
  padding: 16px;
}

.btn-link {
  background: none;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  padding: 6px 0;
}

/* Header */
.site-header {
  padding: 20px 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}

/* Hero */
.hero-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 8px 24px 56px;
}

.hero-copy h1 {
  font-size: 32px;
  line-height: 1.18;
  font-weight: 700;
  margin: 0 0 16px;
}

.hero-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 20px;
}

.hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-art {
  position: relative;
}

.hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 32px 16px 32px 16px;
  border: 7px solid #ffffff;
  box-shadow: 0 16px 36px rgba(43, 33, 24, 0.15);
  transform: rotate(-1.5deg);
}

.hero-narrator {
  position: absolute;
  bottom: -20px;
  left: -14px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #dceae3;
  border: 5px solid var(--cream);
  box-shadow: 0 8px 18px rgba(43, 33, 24, 0.12);
  transform: rotate(4deg);
  overflow: hidden;
}

.hero-narrator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Why / comparisons */
.why {
  padding: 56px 0;
}

.why h2 {
  font-size: 24px;
  margin: 0 0 28px;
}

.comparisons {
  background: var(--ink);
  border-radius: 22px;
  overflow: hidden;
}

.comparison {
  padding: 22px 24px;
  border-top: 1px solid rgba(251, 244, 232, 0.15);
  font-size: 14.5px;
  line-height: 1.5;
  color: #efe6d6;
}

.comparison:first-child {
  border-top: none;
}

.comparison-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--yellow);
}

/* How it works */
.how {
  background: var(--green);
  padding: 56px 0;
}

.how h2.light {
  color: var(--cream);
  font-size: 26px;
  margin: 0 0 32px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 10px 24px rgba(23, 49, 42, 0.18);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff8ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
}

.step-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Experience */
.experience {
  padding: 56px 0;
}

.experience-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.experience-copy .eyebrow {
  text-align: left;
}

.experience-copy h2 {
  font-size: 24px;
  margin: 0 0 14px;
}

.experience-copy p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tan);
  border-radius: 999px;
  padding: 10px 16px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.pill span:last-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.checkpoint-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(43, 33, 24, 0.08);
}

.checkpoint-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.checkpoint-beat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--tan);
}

.checkpoint-beat-last {
  border-bottom: none;
}

.checkpoint-beat-number {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tan);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}

.checkpoint-beat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}

.checkpoint-beat-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Recap */
.recap {
  background: var(--orange);
  padding: 56px 0;
}

.recap-intro {
  max-width: 640px;
  margin: 0 auto 32px;
}

.recap-intro .eyebrow {
  color: var(--ink);
}

.recap-intro h2 {
  color: #fff8ef;
  font-size: 24px;
  margin: 0 0 14px;
}

.recap-intro p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffefe1;
  margin: 0;
}

.slides {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 24px 14px;
  margin: 0 -24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slide {
  flex: none;
  scroll-snap-align: center;
  width: 200px;
  height: 355px;
  border-radius: 30px;
  background: var(--ink);
  padding: 8px;
  box-shadow: 0 16px 36px rgba(43, 33, 24, 0.25);
}

.slide-screen {
  width: 100%;
  height: 100%;
  border-radius: 21px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.slide-map {
  background: linear-gradient(rgba(43, 33, 24, 0.09) 1px, transparent 1px) 0 0 / 20px 20px,
    linear-gradient(90deg, rgba(43, 33, 24, 0.09) 1px, transparent 1px) 0 0 / 20px 20px, #f3e4c4;
}

.slide-photo {
  background: repeating-linear-gradient(135deg, #efe6d3, #efe6d3 10px, #e4d7b8 10px, #e4d7b8 20px);
}

.slide-stat {
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.slide-progress {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 4px;
}

.slide-progress span {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(43, 33, 24, 0.2);
}

.slide-stat .slide-progress span {
  background: rgba(251, 244, 232, 0.25);
}

.slide-progress span.on {
  background: rgba(43, 33, 24, 0.85);
}

.slide-stat .slide-progress span.on {
  background: rgba(251, 244, 232, 0.9);
}

.slide-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff8ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
}

.slide-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(43, 33, 24, 0.8);
  color: #fbf4e8;
  font-size: 11px;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 11px;
  text-align: center;
}

.slide-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
  color: #9c8a68;
  text-align: center;
  padding: 0 24px;
}

.slide-stat-brand {
  position: absolute;
  top: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.05em;
}

.slide-stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  color: #fbf4e8;
}

.slide-stat-caption {
  font-size: 12px;
  color: #d8e8e1;
  text-align: center;
  padding: 0 24px;
}

/* Pricing */
.pricing {
  padding: 56px 0;
}

.pricing h2 {
  font-size: 26px;
  margin: 0 0 28px;
}

.price-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(43, 33, 24, 0.1);
  text-align: left;
  max-width: 440px;
  margin: 0 auto;
}

.price-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.price-city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
}

.badge {
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin: 14px 0 4px;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-includes li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.price-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.price-fineprint {
  text-align: center;
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 12px;
}

/* FAQ */
.faq {
  background: var(--tan);
  padding: 56px 0;
}

.faq h2 {
  font-size: 22px;
  margin: 0 0 32px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 6px;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Coming soon */
.coming-soon {
  background: var(--green);
  padding: 56px 0;
  text-align: center;
}

.coming-soon h2.light {
  color: var(--cream);
  font-size: 24px;
  margin: 0 0 12px;
}

.coming-soon-lede {
  font-size: 14.5px;
  color: #d8e8e1;
  margin: 0 0 28px;
}

.cities {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
}

.city-card {
  background: rgba(251, 244, 232, 0.1);
  border: 2px dashed rgba(251, 244, 232, 0.4);
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.city-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
}

.city-tag {
  font-size: 11px;
  color: var(--yellow);
  font-weight: 700;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notify-form input {
  border-radius: 999px;
  border: none;
  padding: 13px 18px;
  font-size: 14px;
  font-family: var(--font-body);
}

.notify-thanks {
  margin-top: 14px;
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  text-align: center;
}

.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}

.footer-copyright {
  font-size: 11.5px;
  color: var(--muted-light);
}

/* Desktop breakpoint */
@media (min-width: 860px) {
  .wrap {
    padding: 0 80px;
  }

  .site-header {
    padding: 28px 0;
  }

  .logo {
    font-size: 26px;
  }

  .btn-primary {
    padding: 16px 30px;
  }

  .btn-small {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero-row {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding: 40px 80px 100px;
  }

  .hero-copy,
  .hero-art {
    flex: 1;
  }

  .hero-copy h1 {
    font-size: 56px;
    line-height: 1.12;
    max-width: 640px;
  }

  .hero-lede {
    font-size: 19px;
    max-width: 520px;
  }

  .hero-ctas {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .hero-meta {
    font-size: 13px;
    gap: 20px;
  }

  .hero-photo {
    border-radius: 42px 20px 42px 20px;
    border-width: 8px;
    transform: rotate(-2deg);
  }

  .hero-narrator {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    border-width: 6px;
  }

  .why {
    padding: 100px 0;
  }

  .why h2 {
    font-size: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .comparisons {
    display: flex;
    border-radius: 28px;
    max-width: 1120px;
    margin: 40px auto 0;
  }

  .comparison {
    flex: 1;
    padding: 40px 36px;
    border-top: none;
    border-left: 1px solid rgba(251, 244, 232, 0.15);
    font-size: 16px;
  }

  .comparison:first-child {
    border-left: none;
  }

  .comparison-label {
    font-size: 16px;
  }

  .how {
    padding: 100px 0;
  }

  .how h2.light {
    font-size: 38px;
    margin-bottom: 56px;
  }

  .steps {
    flex-direction: row;
    gap: 28px;
  }

  .step-card {
    flex: 1;
    padding: 36px 30px;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }

  .step-card h3 {
    font-size: 19px;
  }

  .step-card p {
    font-size: 14.5px;
  }

  .experience {
    padding: 110px 0;
  }

  .experience-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 72px;
  }

  .experience-copy {
    flex: 1;
  }

  .experience-copy h2 {
    font-size: 34px;
  }

  .experience-copy p {
    font-size: 17px;
    line-height: 1.7;
  }

  .checkpoint-card {
    flex: none;
    width: 380px;
    padding: 32px;
    border-radius: 32px;
  }

  .recap {
    padding: 110px 0;
  }

  .recap-intro h2 {
    font-size: 34px;
  }

  .recap-intro p {
    font-size: 17px;
    line-height: 1.7;
  }

  .slides {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .slide {
    width: 220px;
    height: 391px;
    border-radius: 32px;
  }

  .slide:nth-child(1) {
    transform: rotate(-4deg);
  }

  .slide:nth-child(3) {
    transform: rotate(4deg);
  }

  .pricing {
    padding: 110px 0;
  }

  .pricing h2 {
    font-size: 36px;
  }

  .price-card {
    margin-top: 48px;
    padding: 48px;
    border-radius: 36px;
  }

  .price-city {
    font-size: 20px;
  }

  .price-amount {
    font-size: 44px;
  }

  .faq {
    padding: 110px 0;
  }

  .faq h2 {
    font-size: 32px;
    margin-bottom: 56px;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-item h3 {
    font-size: 17px;
  }

  .faq-item p {
    font-size: 14.5px;
  }

  .coming-soon {
    padding: 100px 0;
  }

  .coming-soon h2.light {
    font-size: 34px;
  }

  .coming-soon-lede {
    font-size: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .cities {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .city-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 32px;
  }

  .notify-form {
    flex-direction: row;
    justify-content: center;
  }

  .notify-form input {
    width: 260px;
  }

  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
