:root {
  --black: #0f1311;
  --ink: #171d1a;
  --paper: #fbf8f1;
  --cream: #eee8dd;
  --sage: #a9b9ad;
  --sage-deep: #52665c;
  --gold: #d7c296;
  --muted: #6b746f;
  --white-soft: rgba(255, 255, 255, 0.78);
  --line: rgba(23, 29, 26, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.payment-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold);
}

.nav-shell {
  position: fixed;
  z-index: 60;
  top: 18px;
  left: 50%;
  width: min(1220px, calc(100% - 34px));
  transform: translateX(-50%);
  color: white;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 8px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(12, 16, 14, 0.26);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-shell.is-scrolled .nav-inner,
.section-menu {
  background: rgba(251, 248, 241, 0.92);
  color: var(--ink);
  border-color: var(--line);
}

.section-trigger {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0 10px;
}

.section-index {
  display: inline-flex;
  gap: 4px;
  font-size: 12px;
  font-weight: 900;
}

.section-index em {
  color: currentColor;
  font-style: normal;
  opacity: 0.52;
}

.section-label {
  min-width: 92px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
}

.chevron {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.8;
}

.logo {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 12px;
  font-weight: 800;
}

.pill,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.pill {
  padding: 0 18px;
  background: white;
  color: var(--ink);
}

.nav-shell.is-scrolled .pill {
  background: var(--ink);
  color: white;
}

.menu-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.section-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: min(330px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.section-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section-menu a {
  display: flex;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.section-menu a:last-child {
  border-bottom: 0;
}

.section-menu a.is-active {
  background: var(--ink);
  color: white;
}

.section-menu span {
  color: var(--sage-deep);
}

.section-menu a.is-active span {
  color: var(--gold);
}

.menu-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 70px);
  background: rgba(13, 17, 15, 0.94);
  color: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.menu-grid {
  display: grid;
  width: min(1100px, 100%);
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
}

.menu-grid h2 {
  margin: 0 0 28px;
  color: white;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02;
}

.menu-video {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.menu-video img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  padding: 15px 16px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(12, 16, 14, 0.42);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
}

.section {
  position: relative;
  min-height: 100vh;
}

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

.theme-light {
  background: var(--paper);
  color: var(--ink);
}

.theme-cream {
  background: var(--cream);
  color: var(--ink);
}

.hero {
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 74px) 42px;
}

.hero-img,
.hero-overlay,
.final-cta > img,
.final-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-img,
.final-cta > img {
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.hero.is-inview .hero-img {
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 17, 15, 0.82), rgba(13, 17, 15, 0.24) 54%, rgba(13, 17, 15, 0.04)),
    linear-gradient(0deg, rgba(13, 17, 15, 0.75), rgba(13, 17, 15, 0.04) 52%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0.12;
  pointer-events: none;
}

.hero-canvas span {
  border-right: 1px solid white;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding-bottom: 82px;
}

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

.eyebrow.dark {
  color: var(--sage-deep);
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(46px, 6.1vw, 88px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 4.7vw, 66px);
  line-height: 1.04;
}

h3,
p {
  margin-top: 0;
}

.hero-copy p:not(.eyebrow),
.feature-copy p,
.booking-copy p,
.doctor-section p {
  max-width: 620px;
  color: var(--white-soft);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.72;
}

.hero-copy p:not(.eyebrow) {
  margin-top: 24px;
}

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

.button {
  min-width: 150px;
  padding: 0 22px;
}

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

.button.ghost {
  border: 1px solid var(--line-light);
  color: white;
}

.release-card {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 74px);
  bottom: 42px;
  width: min(360px, calc(100% - 40px));
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.release-media {
  position: relative;
}

.release-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.release-media button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.release-info {
  display: flex;
  justify-content: space-between;
  padding: 15px 16px;
  font-size: 12px;
  font-weight: 900;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 260px;
  border-bottom: 1px solid var(--line);
}

.spec-item {
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.spec-item:last-child {
  border-right: 0;
}

.spec-item span {
  display: block;
  margin-bottom: 54px;
  color: var(--sage-deep);
  font-weight: 900;
}

.spec-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(18px, 1.8vw, 22px);
}

.spec-item p,
.story-card p,
.horizontal-band p,
.gallery-copy p,
.doctor-section p,
.final-content p {
  color: var(--muted);
  line-height: 1.68;
}

.split-story {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 7vw, 90px);
  padding: clamp(86px, 11vw, 150px) clamp(20px, 5vw, 74px);
}

.story-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}

.story-sticky p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.72;
}

.story-list {
  display: grid;
  gap: 16px;
}

.story-card {
  min-height: 280px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(82, 102, 92, 0.22);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.72);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.story-card.is-active,
.story-card:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-4px);
}

.story-card span {
  display: block;
  margin-bottom: 70px;
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card.is-active span,
.story-card:hover span {
  color: var(--gold);
}

.story-card h3 {
  max-width: 620px;
  margin-bottom: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.08;
}

.story-card.is-active p,
.story-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-reveal {
  display: grid;
  min-height: 110vh;
  align-items: end;
  overflow: hidden;
  padding: clamp(86px, 10vw, 140px) clamp(20px, 5vw, 74px);
}

.feature-bg,
.feature-bg::after {
  position: absolute;
  inset: 0;
}

.feature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-bg::after {
  background:
    linear-gradient(90deg, rgba(13, 17, 15, 0.86), rgba(13, 17, 15, 0.28) 58%, rgba(13, 17, 15, 0.12)),
    linear-gradient(0deg, rgba(13, 17, 15, 0.82), rgba(13, 17, 15, 0.02) 55%);
  content: "";
}

.feature-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.feature-tabs button {
  min-height: 42px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  color: white;
  cursor: pointer;
  padding: 0 17px;
  font-weight: 900;
}

.feature-tabs button.is-active {
  background: var(--gold);
  color: var(--ink);
}

.horizontal-band {
  min-height: auto;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 0;
}

.band-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 1px;
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.band-track article {
  min-height: 320px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
}

.band-track span {
  display: block;
  margin-bottom: 78px;
  color: var(--sage-deep);
  font-weight: 900;
}

.band-track h3 {
  margin-bottom: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.08;
}

.gallery-section {
  padding: clamp(86px, 10vw, 140px) clamp(20px, 5vw, 74px);
}

.gallery-copy {
  max-width: 900px;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-auto-rows: minmax(260px, 34vw);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid .wide {
  grid-row: span 2;
}

.booking-flow {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(36px, 8vw, 120px);
  padding: clamp(86px, 10vw, 150px) clamp(20px, 5vw, 74px);
}

.phone-card {
  width: min(390px, 100%);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid var(--line-light);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.36);
}

.phone-top {
  width: 90px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-screen {
  min-height: 560px;
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  padding: 34px 24px;
}

.status-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 70px;
  border-radius: 50%;
  background: var(--sage-deep);
}

.phone-screen h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.06;
}

.phone-screen p {
  color: var(--muted);
}

.option {
  margin-top: 12px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.option.is-selected {
  background: var(--ink);
  color: white;
}

.phone-screen button,
.booking-form button {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.doctor-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) 1.25fr;
  align-items: center;
  gap: clamp(34px, 8vw, 110px);
  padding: clamp(86px, 10vw, 150px) clamp(20px, 5vw, 74px);
}

.doctor-section > img {
  width: min(440px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(39, 52, 45, 0.18);
}

.doctor-section p {
  color: var(--muted);
}

blockquote {
  margin: 34px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.55vw, 36px);
  line-height: 1.25;
}

blockquote span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.final-cta {
  display: grid;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(20px, 5vw, 74px);
}

.final-overlay {
  background:
    linear-gradient(90deg, rgba(13, 17, 15, 0.86), rgba(13, 17, 15, 0.36) 58%, rgba(13, 17, 15, 0.18)),
    linear-gradient(0deg, rgba(13, 17, 15, 0.76), rgba(13, 17, 15, 0.06));
}

.final-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(30px, 7vw, 90px);
}

.final-content h2 {
  max-width: 820px;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 0 14px;
}

.booking-form p {
  min-height: 20px;
  margin: 0;
  color: var(--white-soft);
  font-size: 12px;
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 74px);
  background: #080b0a;
  color: white;
}

.footer strong {
  letter-spacing: 0.28em;
}

.footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

[data-section] {
  scroll-margin-top: 90px;
}

.spec-item,
.story-card,
.gallery-grid img,
.phone-card,
.doctor-section img,
.doctor-section div,
.booking-form {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.spec-item.is-inview,
.story-card.is-inview,
.gallery-grid img.is-inview,
.phone-card.is-inview,
.doctor-section img.is-inview,
.doctor-section div.is-inview,
.booking-form.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-actions > a:first-child {
    display: none;
  }

  .release-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .spec-strip,
  .split-story,
  .booking-flow,
  .doctor-section,
  .final-content,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .spec-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-sticky {
    position: static;
  }

  .band-track {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(260px, 58vw);
  }

  .gallery-grid .wide {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .nav-shell {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-inner {
    min-height: 58px;
    gap: 8px;
    padding: 7px;
  }

  .section-trigger {
    gap: 7px;
    padding: 0 8px;
  }

  .section-index {
    font-size: 12px;
  }

  .section-label {
    display: none;
  }

  .logo {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .pill {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 18px 24px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.03;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-copy p:not(.eyebrow),
  .feature-copy p,
  .booking-copy p,
  .doctor-section p {
    font-size: 14px;
  }

  .hero-copy {
    padding-bottom: 22px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-width: 0;
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }

  .release-card {
    width: 100%;
    margin-top: 26px;
  }

  .story-card h3,
  .band-track h3,
  .phone-screen h3 {
    font-size: 28px;
  }

  .band-track {
    grid-template-columns: 1fr;
  }

  .phone-screen {
    min-height: 500px;
  }

  .final-cta {
    padding-right: 18px;
    padding-left: 18px;
  }

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

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.quick-info article,
.quick-info a {
  display: grid;
  min-height: 128px;
  align-content: center;
  gap: 8px;
  padding: 24px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.quick-info article:last-of-type,
.quick-info a:last-child {
  border-right: 0;
}

.quick-info span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.quick-info a {
  background: var(--ink);
  color: white;
  font-weight: 900;
}

.location-section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 74px);
}

.location-section > div {
  max-width: 980px;
}

.location-section p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.button.dark,
.button.muted,
.form-wa-button {
  background: var(--ink);
  color: white;
}

.button.muted {
  background: var(--sage-deep);
}

.form-wa-button {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 999px;
  font-weight: 900;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 70;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-sticky-cta a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

.mobile-sticky-cta a:last-child {
  background: var(--gold);
  color: var(--ink);
}

.floating-payment {
  position: fixed;
  z-index: 75;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.floating-payment__button {
  display: grid;
  min-width: 148px;
  min-height: 58px;
  align-content: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  padding: 0 18px;
  text-align: left;
  text-decoration: none;
}

.floating-payment__button--switch {
  min-width: 132px;
  min-height: 50px;
  background: #fffaf7;
  color: #5b2f84;
  border-color: rgba(91, 47, 132, 0.18);
}

.floating-payment__button span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-payment__button strong {
  font-size: 15px;
  line-height: 1.1;
}

.floating-payment__button.is-purchased {
  min-width: 250px;
  background: #25d366;
  color: white;
  text-align: left;
}

.floating-payment__button.is-purchased span {
  font-size: 10px;
  letter-spacing: .04em;
}

.floating-payment__button.is-purchased strong {
  font-size: 16px;
}

.payment-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.payment-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.payment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 10, 0.72);
  backdrop-filter: blur(10px);
}

.payment-modal__panel {
  position: relative;
  width: min(1080px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  overflow: auto;
  border: 1px solid rgba(82, 102, 92, 0.2);
  border-radius: 22px;
  background: linear-gradient(135deg, #fffaf7, #f1e8f0);
  color: var(--ink);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.38);
  padding: clamp(16px, 2.4vw, 24px);
  font-size: 12px;
}

.payment-modal__panel h2 {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: clamp(30px, 4.2vw, 50px);
}

.payment-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.payment-layout {
  display: block;
}

.payment-preview {
  display: block;
  overflow: hidden;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 26px 80px rgba(60, 34, 80, 0.16);
}

.payment-preview:hover {
  transform: translateY(-1px);
  box-shadow: 0 30px 90px rgba(60, 34, 80, 0.2);
}

.payment-preview img {
  display: block;
  width: 100%;
  height: clamp(300px, 32vw, 400px);
  object-fit: cover;
  object-position: top center;
  background: #fffaf7;
}

.payment-detail {
  min-width: 0;
}

.payment-package-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 14px;
}

.payment-package-choices button {
  position: relative;
  display: grid;
  min-height: 96px;
  align-content: start;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  padding: 12px;
  text-align: left;
}

.payment-package-choices button.is-active {
  border-color: #5b2f84;
  background: #5b2f84;
  color: white;
}

.package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-title {
  font-size: 15px;
  font-weight: 900;
}

.package-price {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.package-meta {
  display: grid;
  gap: 4px;
}

.package-meta span {
  color: inherit;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  opacity: 0.72;
}

.payment-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.payment-summary div {
  display: grid;
  min-height: 48px;
  align-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.68);
  padding: 10px;
}

.payment-summary span,
.payment-form span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-summary strong {
  font-size: 11px;
  line-height: 1.35;
}

.payment-summary small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.payment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.payment-form label {
  display: grid;
  gap: 8px;
}

.payment-form label:first-child {
  grid-column: 1 / -1;
}

.payment-addon {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  padding: 14px;
}

.payment-addon input {
  width: 20px;
  height: 20px;
  accent-color: var(--sage-deep);
}

.payment-addon span {
  display: grid;
  gap: 3px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.payment-addon strong {
  color: var(--ink);
}

.payment-addon small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.payment-form input {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  padding: 0 11px;
  font-size: 11px;
}

.payment-form button {
  grid-column: 1 / -1;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.payment-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.payment-form p {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 780px) {
  .quick-info {
    grid-template-columns: 1fr 1fr;
  }

  .quick-info article,
  .quick-info a {
    min-height: 104px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: 0.9fr 0.9fr 1.2fr;
  }

  body {
    padding-bottom: 76px;
  }

  .floating-payment {
    right: 12px;
    bottom: 82px;
    left: auto;
    z-index: 72;
    grid-template-columns: auto auto;
    gap: 8px;
  }

  .floating-payment__button {
    min-width: 128px;
    width: auto;
    min-height: 48px;
    padding: 0 10px;
    text-align: center;
  }

  .floating-payment__button--switch {
    min-width: 118px;
    min-height: 44px;
  }

  .floating-payment__button span {
    display: none;
  }

  .floating-payment__button strong {
    font-size: 13px;
  }

  .floating-payment__button.is-purchased {
    min-width: 190px;
  }

  .floating-payment__button.is-purchased span {
    display: block;
    font-size: 9px;
  }

  .payment-summary,
  .payment-form {
    grid-template-columns: 1fr;
  }

  .payment-summary div {
    min-height: 78px;
  }
}

@media (max-width: 380px) {
  .floating-payment__button strong {
    font-size: 12px;
  }
}

.package-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 194, 150, 0.25), transparent 28%),
    linear-gradient(145deg, #fffaf7 0%, #f6eee9 48%, #f4f6f1 100%);
  color: #2b2724;
  font-family: "Jost", Inter, Arial, sans-serif;
  padding-bottom: 86px;
}

.package-page h1,
.package-page h2,
.package-page h3 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.package-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.package-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(84, 44, 67, 0.12);
  background: rgba(255, 250, 247, 0.9);
  padding: 0 clamp(18px, 5vw, 54px);
  backdrop-filter: blur(14px);
}

.package-nav > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.package-brand {
  color: #4b2a39;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.package-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 136px) 0 clamp(70px, 9vw, 118px);
}

.package-hero::after {
  position: absolute;
  right: max(-120px, -8vw);
  bottom: -170px;
  width: min(640px, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(199, 146, 78, 0.32);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 117, 131, 0.2), transparent 64%);
  content: "";
  pointer-events: none;
}

.package-kicker {
  margin: 0 0 16px;
  color: #b47c34;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-hero h1 {
  max-width: 920px;
  color: #4b2a39;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.95;
}

.package-hero p:not(.package-kicker) {
  max-width: 690px;
  margin-top: 22px;
  color: #5e5a56;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

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

.package-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.package-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.package-heading h2,
.maintenance-band h2,
.package-location h2 {
  color: #4b2a39;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

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

.package-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  border: 1px solid rgba(199, 146, 78, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 64px rgba(84, 44, 67, 0.1);
  padding: clamp(24px, 4vw, 42px);
}

.package-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(199, 146, 78, 0.7);
  border-radius: 50%;
  color: #c7924e;
  font-size: 26px;
  font-weight: 800;
}

.package-card h3 {
  color: #4b2a39;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
}

.package-card > strong {
  color: #cc6b75;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}

.package-card p {
  color: #655c58;
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  color: #35312e;
  padding-left: 26px;
  line-height: 1.4;
}

.package-card li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #d87581;
  color: white;
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.package-maintenance {
  background: rgba(255, 255, 255, 0.48);
}

.maintenance-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(24px, 6vw, 78px);
  border: 1px solid rgba(199, 146, 78, 0.42);
  border-radius: 16px;
  background: rgba(255, 250, 247, 0.82);
  padding: clamp(24px, 4vw, 42px);
}

.maintenance-band strong {
  display: block;
  margin-top: 12px;
  color: #cc6b75;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
}

.maintenance-band p,
.package-location p {
  color: #5e5a56;
  font-size: 17px;
  line-height: 1.7;
}

.package-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 780px) {
  .package-nav {
    min-height: 66px;
  }

  .package-nav > div > a:first-child {
    display: none;
  }

  .package-grid,
  .maintenance-band,
  .payment-package-choices {
    grid-template-columns: 1fr;
  }

  .package-grid {
    padding-bottom: 86px;
  }

  .package-location {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .package-section:last-of-type {
    padding-bottom: 116px;
  }
}
