:root {
  --black: #090909;
  --ink: #171717;
  --paper: #f3f0e8;
  --white: #ffffff;
  --gold: #d7ab4f;
  --gold-light: #f1ce78;
  --teal: #0e4f57;
  --wine: #6c1f31;
  --line: rgba(23, 23, 23, 0.18);
  --serif: "Bodoni 72", "Didot", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.dialog-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--gold);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.role-nav {
  display: flex;
  gap: 10px;
}

.role-nav button {
  min-height: 38px;
  padding: 0 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.choice-hero {
  position: relative;
  min-height: 100vh;
  padding: 128px 5vw 56px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 5vw;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.choice-media,
.choice-shade {
  position: absolute;
  inset: 0;
}

.choice-media {
  background: url("assets/hero-collage.webp") center / cover no-repeat;
  transform: scale(1.04);
}

.choice-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.78)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.08) 60%);
}

.choice-content,
.choice-grid {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8a651f;
}

.choice-content h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 124px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.choice-card {
  min-width: 0;
  min-height: 500px;
  padding: 28px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.choice-card img {
  width: min(72%, 290px);
  height: auto;
  margin: 0 auto 28px;
  display: block;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.48);
}

.business-card {
  background: rgba(14, 79, 87, 0.7);
}

.choice-card h2,
.role-copy h2,
.shared-details h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-gold {
  color: var(--black);
  background: var(--gold);
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-black {
  color: var(--white);
  background: var(--black);
}

.button-black:hover {
  color: var(--black);
  background: var(--gold);
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

.button-ghost:hover {
  color: var(--black);
  background: var(--white);
}

.role-page {
  display: none;
  padding: 120px 6vw;
}

.role-page.active {
  display: block;
}

.role-hero {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 7vw;
  align-items: center;
}

.role-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: #4d4a44;
  font-size: 18px;
}

.role-hero img {
  width: 100%;
  height: auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.parent-page {
  background: var(--paper);
}

.business-page {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #111 70%);
}

.business-page .role-copy > p:not(.eyebrow),
.business-page .content-band p {
  color: rgba(255, 255, 255, 0.76);
}

.business-page .content-band article {
  border-color: rgba(255, 255, 255, 0.22);
}

.action-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.price {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.content-band {
  margin-top: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.content-band article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.content-band span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.content-band h3,
.detail-grid h3 {
  margin: 16px 0 10px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.05;
}

.content-band p,
.detail-grid p {
  margin: 0;
  color: #555149;
  font-size: 14px;
}

.shared-details {
  padding: 110px 6vw;
  display: none;
  background: var(--white);
}

body[data-active-role] .shared-details {
  display: block;
}

.shared-details h2 {
  max-width: 850px;
}

.detail-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.detail-grid article {
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.video-gate {
  position: fixed;
  z-index: 40;
  inset: 0;
  padding: 5vw;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.94);
}

.video-gate.active {
  display: flex;
}

.video-shell {
  width: min(1100px, 100%);
}

.video-shell video {
  width: 100%;
  max-height: 72vh;
  display: block;
  background: #000;
}

.video-caption {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.video-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.video-caption h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
}

footer {
  padding: 52px 6vw 34px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 24px;
  color: var(--white);
  background: #111;
}

body[data-active-role] footer {
  display: grid;
}

.footer-brand {
  grid-column: 1;
}

footer > p {
  grid-column: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-links {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-links button {
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  font-size: 12px;
}

footer small {
  grid-column: 1 / -1;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
}

dialog {
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.checkout-dialog,
.policy-dialog {
  width: min(760px, calc(100vw - 32px));
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

dialog h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
}

.checkout-intro {
  color: #514d46;
  font-size: 14px;
}

.disclaimer-copy {
  max-height: 310px;
  margin-top: 20px;
  padding: 22px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
}

.disclaimer-copy h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.disclaimer-copy p {
  margin: 0 0 14px;
  color: #403d37;
  font-size: 13px;
  line-height: 1.6;
}

.acknowledgment {
  margin-top: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(215, 171, 79, 0.12);
  border: 1px solid rgba(138, 101, 31, 0.38);
  cursor: pointer;
}

.acknowledgment input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--black);
}

.acknowledgment span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.acknowledgment-record {
  min-height: 18px;
  margin: 10px 0 0;
  color: #6d675e;
  font-size: 10px;
}

.checkout-total {
  margin: 28px 0 20px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-total strong {
  font-family: var(--serif);
  font-size: 30px;
}

.checkout-link {
  width: 100%;
}

.checkout-link.disabled {
  color: rgba(255, 255, 255, 0.62);
  background: #585858;
  cursor: not-allowed;
}

.checkout-note {
  margin: 14px 0 0;
  color: #6d675e;
  font-size: 11px;
  text-align: center;
}

.policy-dialog h2,
.policy-dialog h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.policy-dialog h3 {
  margin: 28px 0 6px;
  font-size: 23px;
}

.policy-dialog p {
  color: #514d46;
  font-size: 14px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .choice-hero,
  .role-hero {
    grid-template-columns: 1fr;
  }

  .choice-content {
    padding-top: 8vh;
  }

  .choice-grid,
  .content-band,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 0;
    grid-template-columns: 170px 1fr;
    grid-template-rows: auto;
    align-items: center;
  }

  .choice-card img {
    width: 140px;
    margin: 0;
  }

  .choice-card p:not(.eyebrow) {
    min-height: 0;
  }

  .role-hero img {
    width: min(420px, 100%);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand {
    font-size: 11px;
  }

  .role-nav button {
    padding: 0 10px;
    font-size: 10px;
  }

  .choice-hero {
    padding: 102px 20px 42px;
  }

  .choice-content h1 {
    font-size: 54px;
  }

  .choice-grid {
    gap: 16px;
  }

  .choice-card {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .choice-card img {
    width: 170px;
    margin: 0 auto 18px;
  }

  .role-page,
  .shared-details {
    padding: 82px 22px;
  }

  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .video-gate {
    padding: 22px;
  }

  .video-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-actions {
    width: 100%;
    justify-content: flex-start;
  }

  footer {
    padding: 45px 22px 28px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: 1;
    grid-row: auto;
  }

  dialog {
    padding: 38px 24px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
