:root {
  --navy: #071a33;
  --navy-deep: #041326;
  --gold: #c9973d;
  --ivory: #f7f1e7;
  --paper: #fffaf2;
  --ink: #0c1422;
  --muted: rgba(12, 20, 34, 0.68);
  --line: rgba(12, 20, 34, 0.12);
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(247, 241, 231, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--paper);
  background: var(--navy);
  border: 1px solid rgba(201, 151, 61, 0.55);
  border-radius: 50%;
  font-size: 13px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(12, 20, 34, 0.72);
  font-size: 14px;
  font-weight: 800;
}

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

.hero,
.product-story,
.dual-choice,
.memory-band,
.gift-section,
.future-section,
.editions,
.waitlist,
.statement {
  padding: clamp(70px, 9vw, 132px) clamp(20px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  min-height: calc(106vh - 69px);
}

.hero-copy {
  max-width: 630px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5.2vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.lead,
.story-copy p,
.waitlist p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button,
.waitlist-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.waitlist-form button {
  color: var(--paper);
  background: var(--navy);
}

.hero-media img,
.story-media img,
.choice-grid img,
.gift-section img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.statement {
  min-height: 48vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--paper);
  background: var(--navy);
}

.statement p {
  margin: 0 0 8px;
  color: rgba(255, 250, 242, 0.72);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 800;
}

.statement h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 8vw, 108px);
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.product-story.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  background: var(--paper);
}

.story-copy {
  max-width: 660px;
}

.kit-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(94px, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.kit-icons div {
  display: grid;
  align-content: space-between;
  min-height: 112px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: inset 0 0 0 1px rgba(12, 20, 34, 0.08);
}

.kit-icons span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.kit-icons strong {
  color: rgba(12, 20, 34, 0.82);
  font-size: 15px;
  line-height: 1.15;
}

.dual-choice {
  background: var(--navy-deep);
  color: var(--paper);
}

.choice-copy {
  max-width: 920px;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.choice-grid figure {
  margin: 0;
}

.choice-grid img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.choice-grid figcaption {
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.74);
  font-weight: 850;
}

.mini-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-steps span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  color: rgba(12, 20, 34, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.memory-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.memory-card {
  padding: 26px;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.memory-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.memory-card-header h3 {
  margin: 0;
}

.memory-card-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.flag {
  display: grid;
  place-items: center;
  width: 54px;
  height: 38px;
  color: #fff;
  background:
    linear-gradient(90deg, #087a3d 0 42%, #f2f2f2 42% 58%, #d3392f 58%),
    #087a3d;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(7, 26, 51, 0.2);
  font-size: 0;
}

.memory-card blockquote {
  margin: 0;
  color: rgba(12, 20, 34, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.22;
}

.gift-section {
  position: relative;
  display: grid;
  min-height: 86vh;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
}

.gift-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.gift-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 19, 38, 0.82), rgba(4, 19, 38, 0.18));
}

.gift-copy {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.gift-copy h2 {
  font-size: clamp(38px, 6vw, 82px);
}

.future-section {
  min-height: 72vh;
  display: grid;
  align-items: center;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(4, 19, 38, 0.82), rgba(4, 19, 38, 0.34)),
    url("assets/luggage-passport-suitcase-lifestyle.png") center / cover;
}

.future-section div {
  max-width: 900px;
}

.future-section h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 96px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.editions {
  background: var(--paper);
}

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

.price-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-card.highlighted {
  color: var(--paper);
  background: var(--navy);
  border-color: rgba(201, 151, 61, 0.42);
}

.price-card.highlighted p {
  color: rgba(255, 250, 242, 0.72);
}

.plan {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
}

.price-card p:last-child {
  color: var(--muted);
  line-height: 1.45;
}

.price-card.highlighted p:last-child {
  color: rgba(255, 250, 242, 0.74);
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  color: var(--paper);
  background: var(--navy);
}

.waitlist p {
  color: rgba(255, 250, 242, 0.76);
}

.waitlist-form {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.07);
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 242, 0.8);
  font-size: 14px;
  font-weight: 850;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
}

.waitlist-form button {
  background: var(--gold);
  color: var(--navy);
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(255, 250, 242, 0.74);
  background: #051326;
  font-weight: 850;
}

.footer nav {
  display: flex;
  gap: 16px;
}

.footer a {
  color: rgba(255, 250, 242, 0.74);
}

.footer a:hover {
  color: var(--paper);
}

.legal-page {
  max-width: 920px;
  min-height: calc(100vh - 157px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 4vw, 56px);
}

.legal-page h1 {
  font-size: clamp(44px, 7vw, 82px);
}

.legal-page p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.legal-page a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.thanks-page {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
  min-height: calc(100vh - 157px);
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 56px);
  background: var(--navy);
  color: var(--paper);
}

.thanks-copy {
  max-width: 720px;
}

.thanks-copy h1 {
  margin: 0 0 24px;
  color: var(--paper);
  font-size: clamp(54px, 8vw, 108px);
}

.thanks-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.thanks-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.32);
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .product-story,
  .product-story.reverse,
  .memory-band,
  .waitlist,
  .thanks-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .choice-grid,
  .pricing-grid,
  .kit-icons {
    grid-template-columns: 1fr;
  }

  .choice-grid img {
    min-height: 340px;
  }

  .product-story.reverse .story-copy {
    order: 2;
  }

  .product-story.reverse .story-media {
    order: 1;
  }
}

@media (max-width: 560px) {
  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 43px;
  }

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

  .button {
    width: 100%;
  }

  .gift-section {
    min-height: 720px;
  }
}
