* {
  box-sizing: border-box;
}

:root {
  --night: #05080f;
  --night-2: #090d17;
  --panel: #0d121c;
  --panel-soft: #111824;
  --ink: #f4efe5;
  --muted: #aaa9a4;
  --gold: #d8bb78;
  --gold-light: #f0dca7;
  --line: rgba(216, 187, 120, .22);
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  min-height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  color: var(--gold);
  font-size: 28px;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .13em;
  font-size: 16px;
}

.brand small {
  display: block;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: .18em;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  color: #ddd9d0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}

.site-nav a:hover {
  color: var(--gold-light);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  padding: 9px 13px;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 150px 7vw 90px;
  background:
    radial-gradient(circle at 74% 60%, rgba(70,89,118,.22), transparent 23%),
    radial-gradient(circle at 50% 110%, rgba(24,48,80,.48), transparent 40%),
    linear-gradient(135deg, #070b13 0%, #03050a 65%, #070a10 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,4,8,.95) 0%, rgba(2,4,8,.55) 48%, rgba(2,4,8,.08) 78%);
}

.stars,
.closing-stars {
  position: absolute;
  inset: 0;
  opacity: .65;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 1.3px),
    radial-gradient(circle, rgba(216,187,120,.75) 0 1px, transparent 1.2px);
  background-size: 67px 67px, 113px 113px;
  background-position: 0 0, 31px 22px;
}

.stars-b {
  transform: scale(1.4) rotate(8deg);
  opacity: .3;
}

.hero-content {
  width: min(720px, 90vw);
  position: relative;
  z-index: 4;
}

.eyebrow,
.product-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  margin: 16px 0 24px;
  font-size: clamp(54px, 7vw, 100px);
  line-height: .94;
  letter-spacing: -.045em;
}

h1 span,
.statement h2 span,
.closing h2 span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
}

.hero-copy {
  max-width: 610px;
  color: #c7c5bf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 15px 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #c7a761, #e5ce96);
  color: #10100e;
  box-shadow: 0 12px 40px rgba(216,187,120,.15);
}

.text-link {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 13px;
}

.hero-note {
  margin-top: 30px;
  color: #777b82;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: #74777d;
  font-size: 8px;
  letter-spacing: .2em;
}

.moon {
  position: absolute;
  z-index: 2;
  right: -7vw;
  bottom: -12vw;
  width: min(55vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  opacity: .94;
  box-shadow:
    -28px -18px 90px rgba(220,229,235,.10),
    0 0 120px rgba(120,145,175,.08);
}

.moon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.earth-glow {
  position: absolute;
  width: 60vw;
  height: 18vw;
  bottom: -12vw;
  left: 12vw;
  border-radius: 50%;
  box-shadow: 0 -8px 80px rgba(86,136,193,.22);
}

.section {
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin: 10px 0 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.section-heading > p:last-child {
  color: var(--muted);
  max-width: 680px;
}

.feature {
  padding-top: 130px;
}

.signature-card {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 50%, rgba(216,187,120,.08), transparent 25%),
    linear-gradient(135deg, #0d121b, #080b11);
}

.orbit-art {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(216,187,120,.22);
  border-radius: 50%;
}

.orbit-one {
  width: 420px;
  height: 420px;
  left: -70px;
  top: 40px;
}

.orbit-two {
  width: 620px;
  height: 240px;
  left: -120px;
  top: 150px;
  transform: rotate(-25deg);
}

.mini-moon {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  position: absolute;
  left: 100px;
  top: 120px;
  overflow: hidden;
  box-shadow:
    0 0 70px rgba(220,225,230,.10),
    0 20px 60px rgba(0,0,0,.35);
}

.mini-moon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.star-point {
  position: absolute;
  right: 16%;
  top: 21%;
  color: var(--gold-light);
  font-size: 42px;
  text-shadow: 0 0 25px var(--gold);
}

.signature-copy {
  padding: 70px 70px 70px 30px;
  align-self: center;
}

.signature-copy h3 {
  font-size: 44px;
  margin: 10px 0 18px;
}

.signature-copy > p {
  color: var(--muted);
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 34px;
}

.included-list li {
  padding: 9px 0 9px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: #d2cfc7;
}

.included-list li::before {
  content: "✦";
  color: var(--gold);
  position: absolute;
  left: 0;
}

.offerings {
  border-top: 1px solid rgba(255,255,255,.05);
}

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

.product-card {
  min-height: 410px;
  padding: 42px 34px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
}

.product-card-featured {
  border-color: rgba(216,187,120,.42);
  background: linear-gradient(160deg, #151a22, #0b0f16);
}

.product-symbol {
  font-family: Georgia, serif;
  color: var(--gold-light);
  font-size: 50px;
  min-height: 85px;
}

.moon-symbol {
  font-size: 62px;
}

.product-card h3 {
  font-size: 31px;
  margin: 8px 0 12px;
}

.product-card p {
  color: var(--muted);
  flex: 1;
}

.product-card a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 12px;
}

.certificate-section {
  width: min(1320px, 94vw);
}

.certificate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.certificate {
  background: #e9e2d1;
  color: #25241f;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.certificate-border {
  min-height: 550px;
  border: 2px solid #9a7a3e;
  outline: 1px solid #bca268;
  outline-offset: -8px;
  padding: 55px 45px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.65), transparent 50%),
    linear-gradient(135deg, rgba(154,122,62,.05), transparent);
}

.certificate-kicker {
  color: #80652f;
  letter-spacing: .24em;
  font-size: 11px;
  font-weight: bold;
}

.certificate h3 {
  margin: 20px 0 30px;
  font-size: 34px;
}

.certificate-small {
  font-size: 9px;
  letter-spacing: .18em;
  color: #686258;
}

.certificate-name {
  display: block;
  font-family: Georgia, serif;
  font-size: 37px;
  color: #7d612d;
  margin: 8px 0;
}

.certificate-rule {
  width: 130px;
  height: 1px;
  background: #b4965b;
  margin: 24px auto;
}

.certificate dl {
  margin: 34px auto 0;
  width: min(420px, 100%);
  text-align: left;
  border-top: 1px solid rgba(125,97,45,.25);
}

.certificate dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(125,97,45,.18);
}

.certificate dt,
.certificate dd {
  margin: 0;
  font-size: 10px;
}

.certificate dt {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #756e62;
}

.seal {
  position: absolute;
  right: 36px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid #9a7a3e;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  color: #80652f;
}

.preview-disclaimer {
  color: #6f7379;
  text-align: center;
  font-size: 10px;
  margin-top: 24px;
}

.how {
  border-top: 1px solid rgba(255,255,255,.05);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.steps article {
  padding: 0 30px 0 0;
  margin-right: 30px;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 28px;
}

.steps h3 {
  font-size: 22px;
}

.steps p {
  color: var(--muted);
  font-size: 13px;
}

.statement,
.closing {
  min-height: 520px;
  padding: 90px 7vw;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(78,103,139,.22), transparent 35%),
    #060910;
}

.statement h2,
.closing h2 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  margin: 15px 0;
}

.faq {
  max-width: 900px;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 20px;
}

.faq-list details p {
  color: var(--muted);
  max-width: 760px;
}

.closing > *:not(.closing-stars) {
  position: relative;
  z-index: 2;
}

.closing-line {
  position: absolute !important;
  bottom: 30px;
  color: #70747b;
  font-size: 9px;
  letter-spacing: .24em;
}

footer {
  padding: 55px 7vw;
  border-top: 1px solid rgba(255,255,255,.06);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
  color: #777b82;
  font-size: 10px;
}

.footer-brand span {
  display: block;
  color: var(--gold);
  margin-top: 6px;
}

footer small {
  text-align: right;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 24px 5vw;
    background: rgba(5,8,15,.98);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .signature-card,
  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .steps article {
    border-right: 0;
  }

  .moon {
    width: 78vw;
    right: -30vw;
    opacity: .55;
  }

  .signature-copy {
    padding: 45px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer small {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .brand small {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .certificate-border {
    min-height: 510px;
    padding: 40px 22px;
  }

  .certificate-name {
    font-size: 29px;
  }

  .orbit-art {
    min-height: 350px;
  }

  .mini-moon {
    width: 180px;
    height: 180px;
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
  }
}

/* Commerce */
.signature-price {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin: 1.2rem 0 0;
}

.signature-price .price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f0d68d;
  line-height: 1;
}

.price-note,
.purchase-note {
  color: #9299a3;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.purchase-note {
  margin-top: 0.8rem;
}

.product-price {
  margin: 0.8rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: #f0d68d;
}

/* Order experience */
.order-section {
  position: relative;
}

.order-form {
  max-width: 920px;
  margin: 3rem auto 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(240, 214, 141, 0.24);
  background:
    radial-gradient(
      circle at top right,
      rgba(240, 214, 141, 0.07),
      transparent 34%
    ),
    rgba(9, 11, 16, 0.82);
}

.order-fieldset {
  padding: 0;
  margin: 0 0 2.5rem;
  border: 0;
}

.order-fieldset legend {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0d68d;
}

.gift-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.gift-option {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 115px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
}

.gift-option:has(input:checked) {
  border-color: rgba(240, 214, 141, 0.75);
  background: rgba(240, 214, 141, 0.06);
}

.gift-option input {
  margin-top: 0.25rem;
  accent-color: #f0d68d;
}

.gift-option span {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.35rem;
}

.gift-option strong {
  color: #f5f2e9;
}

.gift-option small {
  color: #9299a3;
  line-height: 1.4;
}

.gift-option b {
  color: #f0d68d;
  font-family: Georgia, "Times New Roman", serif;
}

.gift-option em {
  color: #f0d68d;
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.order-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.order-fields label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-fields label > span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9c4b7;
}

.order-fields input,
.order-fields select,
.order-fields textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.035);
  color: #f5f2e9;
  font: inherit;
}

.order-fields select option {
  color: #111;
}

.order-fields textarea {
  resize: vertical;
  min-height: 130px;
}

.order-fields input:focus,
.order-fields select:focus,
.order-fields textarea:focus {
  outline: 1px solid #f0d68d;
  border-color: #f0d68d;
}

.order-field-wide {
  grid-column: 1 / -1;
}

.order-field-wide > small {
  color: #777f89;
}

.order-summary {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.order-summary div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.order-summary span {
  color: #9299a3;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-summary strong {
  color: #f5f2e9;
}

.order-total {
  text-align: right;
}

.order-total strong {
  color: #f0d68d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.order-legal {
  max-width: 760px;
  margin: 1.3rem auto;
  color: #858b94;
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}

.order-submit {
  display: flex;
  width: 100%;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.order-security {
  margin: 0.8rem 0 0;
  color: #9299a3;
  font-size: 0.72rem;
  text-align: center;
}

@media (max-width: 760px) {
  .gift-options,
  .order-fields {
    grid-template-columns: 1fr;
  }

  .order-field-wide {
    grid-column: auto;
  }

  .order-summary {
    align-items: flex-start;
  }
}
