:root {
  --red: #d63a2c;
  --red-deep: #a92219;
  --ink: #070707;
  --panel: #111111;
  --line: rgba(255, 255, 255, .13);
  --soft: #aaa6a1;
  --white: #f2efeb;
  --display: "Oswald", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header.is-sticky {
  position: fixed;
  height: 72px;
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(16px);
  animation: slideDown .35s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } }

.brand {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}
.brand strong { color: var(--red); }
.brand em {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,.35);
  color: #888;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 3px;
}
.nav { display: flex; gap: 34px; }
.nav a, .header-link {
  color: #d0ccc7;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color .2s ease;
}
.nav a:hover, .header-link:hover { color: var(--red); }
.header-link { justify-self: end; }
.header-link span { margin-left: 8px; color: var(--red); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 860px;
  height: 100vh;
  max-height: 1080px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/hotel-hero.jpg") center 46% / cover no-repeat;
  filter: grayscale(1) contrast(1.12) brightness(.5);
  transform: scale(1.03);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,4,4,.97) 0%, rgba(4,4,4,.72) 42%, rgba(4,4,4,.22) 72%, rgba(4,4,4,.8) 100%),
    linear-gradient(0deg, rgba(4,4,4,.9) 0%, transparent 42%, rgba(4,4,4,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 66vw);
  margin-left: 10vw;
  padding-top: 70px;
}
.eyebrow, .section-kicker {
  margin: 0 0 28px;
  color: var(--red);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 26px; height: 1px; background: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); text-transform: uppercase; }
h1 {
  margin-bottom: 30px;
  font-size: clamp(68px, 8vw, 132px);
  font-weight: 600;
  line-height: .91;
  letter-spacing: -3px;
}
h1 em, h2 em { color: var(--red); font-style: normal; }
.hero-copy {
  max-width: 590px;
  margin-bottom: 38px;
  color: #c5c0bb;
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 25px;
  border: 0;
  border-radius: 2px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 12px 35px rgba(214,58,44,.18); }
.button-primary:hover { background: #e44233; }
.button span { font-size: 18px; font-weight: 400; }
.text-button {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #777;
  background: transparent;
  color: #d4d0cb;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
}
.text-button span { margin-left: 12px; color: var(--red); }
.hero-aside {
  position: absolute;
  right: 4vw;
  bottom: 14vh;
  z-index: 2;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.35);
}
.hero-aside-number { color: var(--red); font-family: var(--display); font-size: 36px; line-height: 1; }
.hero-aside p { margin: 0; color: #bcb7b2; font-size: 11px; line-height: 1.65; text-transform: uppercase; letter-spacing: 1.3px; }
.scroll-cue {
  position: absolute;
  left: 4vw;
  bottom: 35px;
  z-index: 2;
  color: #777;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.scroll-cue span { margin-left: 12px; color: var(--red); }

.manifest, .packages, .how, .faq {
  width: min(1400px, 92vw);
  margin: 0 auto;
}
.manifest { padding: 130px 0 100px; }
.manifest-grid, .section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 9vw;
  align-items: end;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.3vw, 88px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -1.7px;
}
.manifest-copy { padding-bottom: 8px; }
.manifest-copy p, .section-heading > p {
  color: var(--soft);
  font-size: 15px;
  line-height: 1.8;
}
.manifest-copy a {
  display: inline-block;
  margin-top: 16px;
  border-bottom: 1px solid var(--red);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.manifest-copy a span { margin-left: 12px; color: var(--red); }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats > div {
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 25px 36px;
  border-right: 1px solid var(--line);
}
.stats > div:last-child { border-right: 0; }
.stats strong { font-family: var(--display); font-size: 48px; font-weight: 400; color: var(--red); }
.stats span { color: #aaa6a1; font-size: 11px; line-height: 1.6; text-transform: uppercase; letter-spacing: 1px; }

.packages { padding: 110px 0 130px; }
.section-heading { margin-bottom: 62px; }
.section-heading .section-kicker { margin-bottom: 24px; }
.section-heading > p { max-width: 440px; margin: 0 0 7px auto; }
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.package-card {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #111;
  border: 1px solid var(--line);
}
.package-featured { border-color: rgba(214,58,44,.75); transform: translateY(-18px); }
.package-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
  background: var(--red);
}
.package-image, .package-overlay { position: absolute; inset: 0; }
.package-image { background-position: center; background-size: cover; filter: grayscale(1) contrast(1.2) brightness(.58); transition: transform .7s ease, filter .7s ease; }
.package-card:hover .package-image { transform: scale(1.04); filter: grayscale(.6) contrast(1.2) brightness(.62); }
.package-image-base { background-image: url("assets/morg.jpg"); }
.package-image-plus { background-image: url("assets/outlast.jpg"); }
.package-image-max { background-image: url("assets/last-shift.jpg"); }
.package-overlay { background: linear-gradient(180deg, rgba(6,6,6,.12) 0%, rgba(6,6,6,.7) 40%, #090909 74%); }
.package-top, .package-body { position: relative; z-index: 2; }
.package-top { display: flex; align-items: center; justify-content: space-between; }
.package-index { color: #aaa; font-family: var(--display); font-size: 10px; letter-spacing: 2px; }
.package-badge {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.25);
  color: #ddd;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.package-featured .package-badge { border-color: var(--red); background: var(--red); }
.package-body { margin-top: auto; }
.package-body h3 { margin-bottom: 6px; font-size: 35px; font-weight: 500; letter-spacing: -.3px; }
.package-price { margin-bottom: 22px; color: var(--red); font-family: var(--display); font-size: 54px; line-height: 1; }
.package-price small { font-size: 25px; font-weight: 400; }
.package-lead { min-height: 50px; margin-bottom: 20px; color: #bcb7b2; font-size: 13px; line-height: 1.65; }
.package-body ul { min-height: 150px; margin: 0 0 26px; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.package-body li { position: relative; padding: 6px 0 6px 21px; color: #d0ccc7; font-size: 12px; }
.package-body li::before { content: "＋"; position: absolute; left: 0; color: var(--red); }
.button-card { width: 100%; background: #ece8e3; color: #111; }
.package-featured .button-card { background: var(--red); color: #fff; }
.package-note { margin: 28px 0 0; color: #777; font-size: 11px; text-align: center; }
.package-note span { display: inline-flex; width: 18px; height: 18px; align-items: center; justify-content: center; margin-right: 8px; border: 1px solid #555; border-radius: 50%; }

.experience {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0d0d;
}
.experience-photo {
  position: absolute;
  inset: 0 45% 0 0;
  background: url("assets/hotel.jpg") center / cover no-repeat;
  filter: grayscale(1) contrast(1.2) brightness(.55);
}
.experience-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, #0d0d0d 100%), linear-gradient(0deg, rgba(0,0,0,.4), transparent); }
.experience-content { position: relative; z-index: 2; width: 46%; margin-left: 52%; }
.experience-content h2 { margin-bottom: 30px; }
.experience-content > p:not(.section-kicker) { max-width: 560px; margin-bottom: 34px; color: var(--soft); font-size: 14px; line-height: 1.8; }
.button-outline { border: 1px solid rgba(255,255,255,.35); background: transparent; color: #fff; }
.button-outline:hover { border-color: var(--red); }
.experience-mark { position: absolute; right: -20px; bottom: -120px; color: rgba(255,255,255,.025); font-family: var(--display); font-size: 430px; font-weight: 700; line-height: 1; }

.how { padding: 140px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 75px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.steps li { min-height: 350px; padding: 28px 36px 36px; border-right: 1px solid var(--line); }
.steps li:last-child { border-right: 0; }
.steps li > span { color: var(--red); font-family: var(--display); font-size: 11px; letter-spacing: 2px; }
.step-icon { width: 56px; height: 56px; display: grid; place-items: center; margin: 52px 0 30px; border: 1px solid #3e3e3e; color: var(--red); font-size: 25px; }
.steps h3 { margin-bottom: 14px; font-size: 24px; font-weight: 500; letter-spacing: .2px; }
.steps p { max-width: 320px; margin: 0; color: #8f8b87; font-size: 12px; line-height: 1.75; }

.gift-cta {
  position: relative;
  min-height: 510px;
  display: grid;
  grid-template-columns: 1fr .5fr;
  align-items: center;
  gap: 10vw;
  overflow: hidden;
  padding: 90px 8vw;
  background: var(--red-deep);
}
.gift-cta h2 { font-size: clamp(58px, 6vw, 98px); }
.gift-cta .section-kicker { color: #ff9b8f; }
.gift-cta-action { position: relative; z-index: 2; }
.gift-cta-action p { max-width: 360px; margin-bottom: 30px; color: #efcac6; font-size: 14px; }
.gift-cta .button-primary { background: #090909; box-shadow: none; }
.gift-cta-word { position: absolute; right: -50px; bottom: -125px; color: rgba(255,255,255,.045); font-family: var(--display); font-size: 410px; font-weight: 700; line-height: 1; }

.faq { display: grid; grid-template-columns: .58fr 1fr; gap: 10vw; padding: 140px 0; }
.faq-intro { align-self: start; }
.faq-intro h2 { margin-bottom: 28px; }
.faq-intro > p:not(.section-kicker) { color: #8f8b87; font-size: 13px; }
.faq-intro a { color: var(--white); border-bottom: 1px solid var(--red); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #ddd8d2;
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--red); font-size: 26px; font-weight: 300; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 680px; margin: -5px 50px 30px 0; color: #8f8b87; font-size: 13px; line-height: 1.8; }

.footer {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1.15fr .65fr;
  gap: 4vw;
  align-items: start;
  padding: 75px 4vw 40px;
  background: #030303;
  border-top: 1px solid var(--line);
}
.footer-identity > p { margin: 22px 0 0; color: #6f6c69; font-size: 10px; line-height: 1.7; text-transform: uppercase; letter-spacing: 1px; }
.footer-column { padding-top: 2px; }
.footer-label { display: block; margin-bottom: 20px; color: #555; font-family: var(--display); font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #bbb6b1; font-size: 12px; }
.footer-contacts a:first-child { color: var(--white); font-family: var(--display); font-size: 17px; letter-spacing: .5px; }
.footer-links a:hover { color: var(--red); }
.footer-socials { display: flex; flex-direction: column; gap: 9px; }
.footer-socials a { display: flex; align-items: center; gap: 11px; color: #aaa6a1; font-size: 11px; transition: color .2s ease; }
.footer-socials a:hover { color: var(--white); }
.footer-socials a span { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid #323232; color: var(--red); font-family: var(--display); font-size: 9px; letter-spacing: .5px; transition: border-color .2s ease; }
.footer-socials a:hover span { border-color: var(--red); }
.footer-legal { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 35px; border-top: 1px solid var(--line); color: #555; font-size: 9px; letter-spacing: .4px; }

.mobile-buy { display: none; }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(10px); }
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 50px;
  background: #121212;
  border: 1px solid rgba(255,255,255,.17);
  box-shadow: 0 30px 100px rgba(0,0,0,.6);
  animation: modalIn .25s ease both;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(15px) scale(.985); } }
.modal-close { position: absolute; top: 20px; right: 22px; border: 0; background: none; color: #888; font-size: 31px; font-weight: 200; line-height: 1; cursor: pointer; }
.modal-panel h2 { margin-bottom: 14px; font-size: 49px; }
.modal-subtitle { max-width: 570px; margin-bottom: 25px; color: #918d89; font-size: 12px; line-height: 1.7; }
.selected-package { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; padding: 17px 20px; background: rgba(214,58,44,.08); border: 1px solid rgba(214,58,44,.35); }
.selected-package div { display: flex; flex-direction: column; }
.selected-package span { color: #8b8783; font-size: 9px; text-transform: uppercase; letter-spacing: 1.3px; }
.selected-package strong { font-family: var(--display); font-size: 18px; text-transform: uppercase; }
.selected-package > strong { color: var(--red); font-size: 22px; }
.field { position: relative; display: flex; flex-direction: column; margin-bottom: 19px; }
.field label { margin-bottom: 7px; color: #a7a39f; font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; }
.field input {
  height: 55px;
  width: 100%;
  border: 1px solid #343434;
  border-radius: 0;
  outline: 0;
  padding: 0 16px;
  background: #0b0b0b;
  color: #eee;
  transition: border-color .2s ease;
}
.field input:focus { border-color: var(--red); }
.field.invalid input { border-color: var(--red); }
.field-error, .agreement-error { display: none; margin-top: 5px; color: #ef6559; font-size: 9px; }
.field.invalid .field-error, .agreement-invalid + .agreement-error { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.phone-notice { display: grid; grid-template-columns: 28px 1fr; gap: 13px; margin: 2px 0 19px; padding: 14px; background: #191512; border-left: 2px solid var(--red); }
.phone-notice > span { width: 23px; height: 23px; display: grid; place-items: center; border: 1px solid var(--red); border-radius: 50%; color: var(--red); font-family: var(--display); font-size: 12px; }
.phone-notice p { margin: 0; color: #a5a09b; font-size: 10px; line-height: 1.65; }
.phone-notice strong { color: #e5e0db; }
.agreement { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; }
.agreement input { position: absolute; opacity: 0; }
.agreement > span { flex: 0 0 18px; width: 18px; height: 18px; display: grid; place-items: center; margin-top: 1px; border: 1px solid #555; }
.agreement input:checked + span { background: var(--red); border-color: var(--red); }
.agreement input:checked + span::after { content: "✓"; color: #fff; font-size: 11px; }
.agreement small { color: #777; font-size: 9px; line-height: 1.6; }
.submit-button { width: 100%; margin-top: 24px; }
.payment-note { display: flex; align-items: center; gap: 11px; margin-top: 14px; color: #555; }
.payment-note span { padding: 3px 7px; border: 1px solid #343434; color: #777; font-family: var(--display); font-size: 9px; font-weight: 600; }
.payment-note p { margin: 0 0 0 auto; font-size: 9px; }
.modal-loading, .modal-checking { padding: 75px 0 55px; text-align: center; }
.modal-loading h2, .modal-checking h2 { margin-bottom: 18px; }
.modal-loading > p:not(.section-kicker), .modal-checking > p:not(.section-kicker) { max-width: 470px; margin: 0 auto; color: #8f8b87; font-size: 12px; line-height: 1.7; }
.loader-mark { position: relative; width: 70px; height: 70px; margin: 0 auto 32px; border: 1px solid #343434; border-radius: 50%; animation: loaderRotate 1.5s linear infinite; }
.loader-mark::before { content: ""; position: absolute; inset: -1px; border: 1px solid transparent; border-top-color: var(--red); border-radius: 50%; }
.loader-mark span { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.loader-mark span:nth-child(1) { top: 17px; left: 32px; }
.loader-mark span:nth-child(2) { left: 17px; bottom: 20px; opacity: .6; }
.loader-mark span:nth-child(3) { right: 16px; bottom: 20px; opacity: .35; }
@keyframes loaderRotate { to { transform: rotate(360deg); } }
.loading-line { width: min(390px, 80%); height: 2px; margin: 36px auto 0; overflow: hidden; background: #252525; }
.loading-line span { display: block; width: 45%; height: 100%; background: var(--red); animation: loadingSlide 1.15s ease-in-out infinite alternate; }
@keyframes loadingSlide { from { transform: translateX(-20%); } to { transform: translateX(145%); } }
.modal-payment { padding-top: 4px; }
.modal-payment h2 { margin-bottom: 20px; }
.payment-request-row { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 22px; border: 1px solid rgba(214,58,44,.35); background: rgba(214,58,44,.065); }
.payment-request-row > div { display: flex; flex-direction: column; gap: 3px; padding: 13px 17px; border-right: 1px solid rgba(214,58,44,.2); }
.payment-request-row > div:last-child { border-right: 0; text-align: right; }
.payment-request-row span { color: #777; font-size: 8px; letter-spacing: 1.3px; text-transform: uppercase; }
.payment-request-row strong { color: #e3dfda; font-family: var(--display); font-size: 17px; letter-spacing: .8px; }
.payment-request-row > div:last-child strong { color: var(--red); font-size: 20px; }
.qr-payment-layout { display: grid; grid-template-columns: 265px 1fr; gap: 27px; align-items: center; }
.qr-frame { position: relative; padding: 13px; background: #fff; }
.qr-frame img { display: block; width: 100%; height: auto; }
.qr-corner { position: absolute; width: 16px; height: 16px; border-color: var(--red); border-style: solid; }
.qr-corner-tl { top: -4px; left: -4px; border-width: 2px 0 0 2px; }
.qr-corner-tr { top: -4px; right: -4px; border-width: 2px 2px 0 0; }
.qr-corner-bl { bottom: -4px; left: -4px; border-width: 0 0 2px 2px; }
.qr-corner-br { right: -4px; bottom: -4px; border-width: 0 2px 2px 0; }
.sbp-mark { display: inline-block; margin-bottom: 15px; padding: 5px 9px; border: 1px solid #4c4c4c; color: #d6d2cd; font-family: var(--display); font-size: 11px; letter-spacing: 1px; }
.qr-instructions ol { margin: 0 0 18px; padding: 0; list-style: none; counter-reset: qrsteps; }
.qr-instructions li { position: relative; margin-bottom: 9px; padding-left: 25px; color: #aaa6a1; font-size: 10px; line-height: 1.5; counter-increment: qrsteps; }
.qr-instructions li::before { content: counter(qrsteps, decimal-leading-zero); position: absolute; left: 0; color: var(--red); font-family: var(--display); font-size: 9px; }
.payment-timer { margin-bottom: 15px; padding: 11px 12px; border-left: 2px solid var(--red); background: #191512; color: #8f8b87; font-size: 9px; text-transform: uppercase; letter-spacing: .7px; }
.payment-timer strong { display: block; margin-top: 2px; color: var(--white); font-family: var(--display); font-size: 24px; font-weight: 500; letter-spacing: 1.5px; }
.payment-timer.is-expired { border-left-color: #555; }
.payment-timer.is-expired strong { color: #777; }
.bank-link { display: inline-flex; align-items: center; gap: 9px; border-bottom: 1px solid var(--red); color: #d4d0cb; font-family: var(--display); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.bank-link span { color: var(--red); }
.paid-button { width: 100%; margin-top: 25px; }
.paid-button:disabled { background: #343434; color: #777; box-shadow: none; cursor: not-allowed; }
.payment-self-note { max-width: 550px; margin: 12px auto 0; color: #666; font-size: 8px; line-height: 1.55; text-align: center; }
.modal-success { padding: 45px 0 10px; text-align: center; }
.success-icon { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 30px; border: 1px solid var(--red); border-radius: 50%; color: var(--red); font-size: 28px; }
.modal-success .section-kicker { margin-bottom: 20px; }
.modal-success p:not(.section-kicker) { max-width: 500px; margin: 20px auto 30px; color: #8f8b87; font-size: 12px; }
.success-request { width: max-content; margin: 24px auto 0; padding: 9px 14px; border: 1px solid #363636; color: #777; font-size: 9px; letter-spacing: .9px; text-transform: uppercase; }
.success-request strong { margin-left: 8px; color: var(--white); font-family: var(--display); font-size: 14px; letter-spacing: 1px; }
.email-confirmation { max-width: 520px; margin: -5px auto 20px; padding: 14px; background: rgba(214,58,44,.07); border: 1px solid rgba(214,58,44,.25); color: #8f8b87; font-size: 10px; }
.email-confirmation strong { color: var(--white); }
.modal-success .success-footnote { margin: 0 auto 25px !important; color: #666 !important; font-size: 9px !important; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .nav { gap: 20px; }
  .hero-content { margin-left: 6vw; }
  .hero-aside { display: none; }
  .package-grid { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
  .package-card { min-height: 680px; }
  .package-featured { transform: none; }
  .package-body ul { min-height: 0; }
  .experience-photo { right: 35%; }
  .experience-content { width: 54%; margin-left: 42%; }
}

@media (max-width: 760px) {
  body { padding-bottom: 67px; }
  .site-header { height: 68px; grid-template-columns: 1fr auto; padding: 0 20px; }
  .site-header.is-sticky { height: 62px; }
  .brand { font-size: 19px; }
  .brand em { display: none; }
  .header-link { display: none; }
  .menu-button { width: 34px; height: 34px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 0; border: 0; background: transparent; }
  .menu-button span { width: 26px; height: 1px; background: #fff; transition: transform .2s ease; }
  .menu-button.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav { position: fixed; top: 62px; left: 0; right: 0; display: none; flex-direction: column; gap: 0; padding: 12px 20px 25px; background: rgba(5,5,5,.98); border-bottom: 1px solid var(--line); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }

  .hero { min-height: 720px; height: 100svh; max-height: 900px; align-items: flex-end; }
  .hero-image { background-position: 61% center; }
  .hero-vignette { background: linear-gradient(0deg, #050505 0%, rgba(4,4,4,.68) 58%, rgba(4,4,4,.47) 100%); }
  .hero-content { width: auto; margin: 0; padding: 0 20px 100px; }
  .eyebrow { margin-bottom: 20px; font-size: 9px; letter-spacing: 2px; }
  h1 { margin-bottom: 22px; font-size: clamp(55px, 17vw, 75px); letter-spacing: -2px; }
  .hero-copy { margin-bottom: 26px; font-size: 13px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .text-button { display: none; }
  .hero-actions .button { width: 100%; }
  .scroll-cue { display: none; }

  .manifest, .packages, .how, .faq { width: calc(100% - 40px); }
  .manifest { padding: 85px 0 70px; }
  .manifest-grid, .section-heading { grid-template-columns: 1fr; gap: 28px; }
  h2 { font-size: clamp(43px, 13vw, 62px); line-height: 1.02; }
  .manifest-copy p, .section-heading > p { font-size: 13px; }
  .stats { grid-template-columns: 1fr; margin-top: 55px; }
  .stats > div { min-height: 110px; border-right: 0; border-bottom: 1px solid var(--line); }
  .stats > div:last-child { border-bottom: 0; }
  .stats strong { font-size: 40px; }

  .packages { padding: 75px 0 85px; }
  .section-heading { margin-bottom: 38px; }
  .package-card { min-height: 650px; padding: 22px; }
  .package-body h3 { font-size: 31px; }
  .package-price { font-size: 46px; }
  .package-lead { min-height: 0; }

  .experience { min-height: 700px; align-items: flex-end; }
  .experience-photo { inset: 0; }
  .experience-photo::after { background: linear-gradient(0deg, #0d0d0d 10%, rgba(13,13,13,.72) 60%, rgba(13,13,13,.12) 100%); }
  .experience-content { width: auto; margin: 0; padding: 0 20px 60px; }
  .experience-content h2 { font-size: 48px; }
  .experience-mark { font-size: 240px; bottom: -70px; }

  .how { padding: 90px 0; }
  .steps { grid-template-columns: 1fr; margin-top: 50px; }
  .steps li { min-height: 280px; border-right: 0; border-bottom: 1px solid var(--line); padding: 25px 20px 35px; }
  .steps li:last-child { border-bottom: 0; }
  .step-icon { margin: 35px 0 24px; }

  .gift-cta { min-height: 520px; grid-template-columns: 1fr; gap: 40px; padding: 65px 20px; }
  .gift-cta h2 { font-size: 58px; }
  .gift-cta-word { font-size: 230px; right: -25px; bottom: -65px; }
  .gift-cta-action .button { width: 100%; }

  .faq { grid-template-columns: 1fr; gap: 45px; padding: 90px 0; }
  .accordion summary { min-height: 82px; font-size: 15px; }

  .footer { grid-template-columns: 1fr 1fr; gap: 40px 24px; padding: 55px 20px 30px; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-social-column { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; gap: 8px; }

  .mobile-buy {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border: 0;
    background: var(--red);
    color: #fff;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-transform: uppercase;
  }
  .mobile-buy span { font-size: 20px; }

  .modal { padding: 0; place-items: stretch; }
  .modal-panel { width: 100%; max-height: 100vh; min-height: 100vh; padding: 58px 20px 35px; border: 0; }
  .modal-panel h2 { font-size: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .selected-package { padding: 14px; }
  .modal-close { top: 18px; right: 19px; }
  .modal-loading, .modal-checking { padding-top: 100px; }
  .modal-payment { padding-top: 8px; }
  .modal-payment h2 { font-size: 36px; }
  .qr-payment-layout { grid-template-columns: 1fr; gap: 20px; }
  .qr-frame { width: min(245px, 78vw); margin: 0 auto; }
  .qr-instructions { text-align: left; }
  .qr-instructions ol { display: none; }
  .sbp-mark { display: none; }
  .payment-timer { text-align: center; }
  .bank-link { display: flex; width: max-content; margin: 0 auto; }
  .payment-request-row strong { font-size: 14px; }
  .payment-request-row > div:last-child strong { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
