:root {
  --ink: #151310;
  --ink-soft: #1d1a16;
  --ink-lift: #26211b;
  --paper: #f1eadf;
  --paper-soft: #d8cfc1;
  --muted: #a89d8e;
  --wine: #7a2f37;
  --wine-light: #a54a4e;
  --terracotta: #a84e38;
  --gold: #c8a96b;
  --gold-soft: #e2cd9f;
  --green: #5c6850;
  --whatsapp: #1f8f59;
  --line: rgba(241, 234, 223, 0.14);
  --line-strong: rgba(241, 234, 223, 0.27);
  --display: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --site-padding: clamp(1.25rem, 4vw, 4.5rem);
  --content-width: 1320px;
  --header-height: 82px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 8% 8%, rgba(122, 47, 55, 0.12), transparent 25rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--terracotta));
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

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

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  color: var(--ink);
  border-radius: 4px;
  background: var(--paper);
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--site-padding);
  border-bottom: 1px solid var(--line);
  background: rgba(21, 19, 16, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.8rem;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.brand-context {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.back-link,
.header-contact {
  color: var(--paper-soft);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.back-link:hover,
.header-contact:hover {
  color: var(--gold-soft);
}

.header-contact {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
}

.view {
  min-height: calc(100vh - var(--header-height));
}

.view-home {
  display: grid;
  width: min(100%, 1600px);
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 6rem) var(--site-padding) 2rem;
  grid-template-rows: auto auto auto;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

.home-hero {
  display: grid;
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto clamp(3rem, 7vh, 6rem);
  align-items: center;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.45fr);
  gap: clamp(2rem, 6vw, 8rem);
}

.eyebrow,
.section-label,
.choice-kicker,
.price-context {
  display: flex;
  align-items: center;
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  margin-right: 0.9rem;
  background: currentColor;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

h1 em,
h2 em {
  color: var(--gold-soft);
  font-weight: 500;
}

.home-copy h1 {
  max-width: 920px;
  margin-bottom: 2rem;
  font-size: clamp(3.2rem, 7.2vw, 7.8rem);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: var(--paper-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.32rem);
  font-weight: 300;
  line-height: 1.75;
}

.hero-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-logo {
  position: relative;
  width: clamp(230px, 22vw, 350px);
  aspect-ratio: 1;
  margin: 0;
  padding: clamp(0.35rem, 0.7vw, 0.7rem);
  overflow: hidden;
  justify-self: end;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(8, 7, 6, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 55px rgba(122, 47, 55, 0.11);
}

.hero-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.choice-grid {
  display: grid;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 590px;
  padding: clamp(1.8rem, 4vw, 4.2rem);
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.016);
  transition: background 240ms ease;
}

.choice-card::after {
  position: absolute;
  z-index: -1;
  right: -15%;
  bottom: -35%;
  width: 420px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
}

.choice-card-premium {
  background: linear-gradient(145deg, rgba(122, 47, 55, 0.16), rgba(255,255,255,0.015));
}

.choice-card:hover {
  background-color: rgba(255, 255, 255, 0.035);
}

.choice-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.choice-number {
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
}

.pill {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pill-outline {
  color: var(--gold-soft);
  background: transparent;
}

.choice-kicker {
  margin-bottom: 1rem;
  letter-spacing: 0.17em;
}

.choice-card h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
}

.choice-card > div > p:last-child {
  max-width: 550px;
  margin-bottom: 2.5rem;
  color: var(--paper-soft);
  font-weight: 300;
  line-height: 1.75;
}

.choice-facts {
  display: grid;
  margin: 0 0 2rem;
  padding: 1.5rem 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.choice-facts li {
  display: flex;
  padding: 0 1rem;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.choice-facts li:first-child { padding-left: 0; }
.choice-facts li:last-child { border-right: 0; }

.choice-facts strong {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 500;
}

.choice-facts span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

.button-secondary {
  color: var(--paper);
  border-color: var(--line-strong);
  background: transparent;
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--paper);
}

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

.button-whatsapp:hover {
  background: #28a569;
}

.home-footer {
  display: flex;
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0 0;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-footer p { margin: 0; }

/* Detail pages */
.detail-view {
  background: var(--ink);
}

.detail-hero {
  display: grid;
  max-width: 1600px;
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vh, 7.5rem) var(--site-padding) 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  grid-template-rows: 1fr auto;
  gap: clamp(2rem, 6vw, 7rem);
  background:
    radial-gradient(circle at 15% 18%, rgba(122, 47, 55, 0.18), transparent 30rem),
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: auto, 100% 72px;
}

.detail-hero-group {
  background:
    radial-gradient(circle at 15% 18%, rgba(92, 104, 80, 0.2), transparent 30rem),
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: auto, 100% 72px;
}

.detail-hero-copy {
  align-self: center;
  padding-bottom: 4rem;
}

.detail-hero h1 {
  max-width: 950px;
  margin-bottom: 2rem;
  font-size: clamp(3.5rem, 6.7vw, 7rem);
}

.hero-actions {
  display: flex;
  margin-top: 2.2rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.3rem 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper-soft);
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--gold-soft);
  border-color: var(--gold);
}

.media-frame {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--ink-lift);
}

.media-frame::after {
  position: absolute;
  z-index: 1;
  inset: 35% 0 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(10, 9, 8, 0.82));
}

.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  left: clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  pointer-events: none;
}

.media-frame figcaption span {
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-frame figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 500;
}

.media-frame-hero {
  min-height: 600px;
  align-self: stretch;
}

.media-frame-hero img,
.media-frame-hero video {
  position: absolute;
  inset: 0;
}

.media-frame-hero img {
  object-position: center 38%;
}

.media-frame-video video {
  object-position: center;
}

.media-frame-video::after {
  inset: 0 0 65%;
  background: linear-gradient(rgba(10, 9, 8, 0.65), transparent);
}

.media-frame-video figcaption {
  top: clamp(1rem, 3vw, 2rem);
  bottom: auto;
}

.hero-specs {
  display: grid;
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-specs > div {
  display: flex;
  min-height: 120px;
  padding: 1.6rem;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.hero-specs span {
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-specs strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
}

.content-section {
  width: min(100% - (2 * var(--site-padding)), var(--content-width));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.content-section h2,
.final-cta h2 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 5.7vw, 6rem);
}

.statement-section {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.statement-copy > p {
  max-width: 720px;
  margin-bottom: 3.5rem;
  color: var(--paper-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 300;
  line-height: 1.85;
}

.mini-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.mini-grid > div {
  padding: 1.5rem 1.2rem 0 0;
  border-right: 1px solid var(--line);
}

.mini-grid > div + div { padding-left: 1.2rem; }
.mini-grid > div:last-child { border-right: 0; }

.mini-grid span,
.included-item > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
}

.mini-grid strong,
.included-item strong {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
}

.mini-grid p,
.included-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.program-section,
.investment-section {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.section-heading {
  position: sticky;
  top: 2rem;
}

.section-heading > p:last-child,
.included-copy > p:last-child {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
}

.program-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.program-list li {
  display: grid;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 72px 1fr;
  gap: 1rem;
}

.program-list li > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.92rem;
  font-style: italic;
}

.program-list h3 {
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
}

.program-list p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.included-section {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.included-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.included-item {
  min-height: 220px;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-break {
  width: min(100% - (2 * var(--site-padding)), 1600px);
  margin: 0 auto;
}

.media-frame-wide {
  min-height: clamp(360px, 48vw, 680px);
}

.media-frame-wide img {
  position: absolute;
  inset: 0;
}

.media-frame-wide figcaption strong {
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(92,104,80,0.13), rgba(255,255,255,0.025));
}

.price-card::after {
  position: absolute;
  z-index: 0;
  top: -160px;
  right: -160px;
  width: 360px;
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.price-card-premium {
  background: linear-gradient(145deg, rgba(122,47,55,0.2), rgba(255,255,255,0.025));
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-context {
  margin-bottom: 2rem;
}

.cash-price {
  display: grid;
  margin-bottom: 2rem;
  align-items: end;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.8rem;
}

.cash-price > span {
  padding-bottom: 0.8rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.4rem;
}

.cash-price strong {
  font-family: var(--display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.cash-price small {
  margin-top: 1rem;
  color: var(--paper-soft);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  grid-column: 2;
}

.price-divider {
  display: flex;
  margin: 1.6rem 0;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.price-divider::before,
.price-divider::after {
  height: 1px;
  content: "";
  background: var(--line);
  flex: 1;
}

.installment {
  display: flex;
  margin-bottom: 2.2rem;
  flex-direction: column;
}

.installment strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
}

.installment span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.payment-breakdown {
  display: grid;
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-breakdown > div {
  display: flex;
  min-height: 108px;
  padding: 1rem 1.1rem;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-breakdown span {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payment-breakdown strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
}

.price-card ul {
  margin: 0 0 2rem;
  padding: 1.8rem 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-card li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  color: var(--paper-soft);
  font-size: 0.86rem;
}

.price-card li::before {
  position: absolute;
  top: 0.53rem;
  left: 0;
  content: "✓";
  color: var(--gold);
}

.price-card .button { width: 100%; }

.price-footnote,
.legal-note {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.info-section {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 1.4rem 2.4rem 1.4rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.15rem;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "+";
  transform: translateY(-50%);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  max-width: 620px;
  padding: 0 2rem 1.5rem 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.policy-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line-strong);
  background: var(--ink-soft);
}

.policy-card h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
}

.policy-list {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.policy-list li {
  display: flex;
  padding: 1.15rem 0;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.policy-list strong {
  margin-bottom: 0.25rem;
  font-size: 0.84rem;
  font-weight: 500;
}

.policy-list span {
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.6;
}

.final-cta {
  display: flex;
  min-height: 680px;
  padding: clamp(5rem, 10vw, 9rem) var(--site-padding);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(92,104,80,0.24), transparent 34rem),
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    var(--ink-soft);
  background-size: auto, 72px 72px, auto;
}

.final-cta-premium {
  background:
    radial-gradient(circle at 50% 50%, rgba(122,47,55,0.25), transparent 34rem),
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    var(--ink-soft);
  background-size: auto, 72px 72px, auto;
}

.final-cta h2 {
  max-width: 950px;
}

.final-cta > p:not(.section-label) {
  max-width: 620px;
  margin-bottom: 2.2rem;
  color: var(--paper-soft);
  font-weight: 300;
}

.final-cta .button {
  min-width: min(100%, 420px);
  margin-bottom: 2rem;
}

.site-footer {
  display: flex;
  min-height: 150px;
  padding: 2rem var(--site-padding);
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #100f0d;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.site-footer p { margin: 0.2rem 0; }
.brand-footer { color: var(--paper); }

.noscript-message {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  color: var(--ink);
  border-radius: 4px;
  background: var(--gold-soft);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    display: none;
  }

  .choice-card {
    min-height: 560px;
  }

  .detail-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2.5rem;
  }

  .media-frame-hero {
    min-height: 520px;
  }

  .statement-section,
  .program-section,
  .included-section,
  .investment-section,
  .info-section {
    gap: 3rem;
  }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }

  .header-contact { display: none; }

  .back-link {
    max-width: 180px;
    font-size: 0.65rem;
    text-align: right;
  }

  .view-home {
    padding-top: 3.5rem;
  }

  .choice-grid,
  .detail-hero,
  .statement-section,
  .program-section,
  .included-section,
  .investment-section,
  .info-section {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: auto;
    gap: 2.5rem;
  }

  .detail-hero {
    padding-top: 4rem;
  }

  .detail-hero-copy {
    padding-bottom: 0;
  }

  .media-frame-hero {
    min-height: 500px;
  }

  .hero-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    position: static;
  }

  .mini-grid {
    margin-top: 1rem;
  }

  .included-section { gap: 4rem; }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
  }
}

@media (max-width: 580px) {
  :root { --site-padding: 1.1rem; }

  .brand {
    gap: 0.55rem;
  }

  .brand-name { font-size: 1.35rem; }
  .brand-context { font-size: 0.54rem; }

  .home-copy h1,
  .detail-hero h1 {
    font-size: clamp(3rem, 15vw, 4.65rem);
  }

  .home-hero {
    margin-bottom: 3.2rem;
  }

  .choice-card {
    padding: 1.5rem;
  }

  .choice-card h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .choice-facts {
    gap: 0.8rem;
    grid-template-columns: 1fr;
  }

  .choice-facts li,
  .choice-facts li:first-child {
    padding: 0 0 0.8rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .choice-facts li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .home-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .detail-hero {
    padding-top: 3.5rem;
    gap: 2rem;
  }

  .media-frame-hero {
    min-height: 400px;
  }

  .hero-specs {
    grid-template-columns: 1fr;
  }

  .hero-specs > div {
    min-height: 96px;
    border-bottom: 1px solid var(--line);
  }

  .content-section {
    width: calc(100% - (2 * var(--site-padding)));
    padding: 4.5rem 0;
  }

  .content-section h2,
  .final-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4.25rem);
  }

  .mini-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .mini-grid > div,
  .mini-grid > div + div {
    padding: 1.3rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .program-list li {
    grid-template-columns: 42px 1fr;
  }

  .included-item {
    min-height: auto;
  }

  .photo-break {
    width: calc(100% - (2 * var(--site-padding)));
  }

  .media-frame-wide {
    min-height: 380px;
  }

  .price-card {
    padding: 1.5rem;
  }

  .payment-breakdown {
    grid-template-columns: 1fr;
  }

  .cash-price strong {
    font-size: clamp(4rem, 21vw, 6rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    margin-top: 0.4rem;
  }

  .button {
    min-height: 56px;
    font-size: 0.68rem;
  }

  .policy-card {
    padding: 1.5rem;
  }

  .final-cta {
    min-height: 590px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
