@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --bg: #fbf9f8;
  --surface-dim: #dbdad9;
  --surface-bright: #fbf9f8;
  --surface: #ffffff;
  --surface-soft: #f5f3f3;
  --surface-high: #efeded;
  --surface-container-high: #e9e8e7;
  --surface-container-highest: #e4e2e2;
  --text: #1b1c1c;
  --text-soft: #4c4546;
  --inverse-surface: #303031;
  --inverse-on-surface: #f2f0f0;
  --black: #000000;
  --navy: #0a0d14;
  --primary-container: #1b1b1b;
  --on-primary-container: #848484;
  --gold: #e0b15c;
  --muted-gold: #c5994d;
  --gold-soft: #ffdea9;
  --gold-soft-dim: #efbf68;
  --border: #e5e5e5;
  --border-variant: #cfc4c5;
  --outline: #7e7576;
  --error: #ba1a1a;
  --teal: #0d4d4b;
  --coral: #bf5f59;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow-soft: 0 18px 45px rgba(10, 13, 20, 0.08);
  --shadow-lift: 0 24px 60px rgba(10, 13, 20, 0.12);
  --mobile-action-height: 72px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Hanken Grotesk", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 3px solid rgba(224, 177, 92, 0.72);
  outline-offset: 3px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
.btn {
  cursor: pointer;
}

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

.shell {
  width: min(1280px, calc(100% - 128px));
  margin: 0 auto;
}

.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 229, 229, 0.86);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(10, 13, 20, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
}

.brand-wordmark img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 152px;
  object-fit: contain;
}

.nav-project {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--muted-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--muted-gold);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 24px;
  background: transparent;
  color: inherit;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn-compact {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.btn-critical {
  border-color: var(--black);
  background: var(--black);
  color: var(--surface);
}

.btn-critical:hover,
.btn-critical:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  outline: none;
}

.btn-secondary {
  border-color: var(--black);
  color: var(--black);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  outline: none;
}

.btn-link {
  min-height: 52px;
  border-color: transparent;
  padding-inline: 8px;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(197, 153, 77, 0.55);
  text-underline-offset: 5px;
}

.btn-link:hover,
.btn-link:focus-visible {
  color: var(--muted-gold);
}

.btn-link-on-dark {
  color: var(--surface);
}

.btn-on-dark {
  border-color: var(--surface);
  color: var(--surface);
}

.btn-on-dark:hover,
.btn-on-dark:focus-visible {
  background: var(--surface);
  color: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 6.5fr) minmax(430px, 5.5fr);
  min-height: 730px;
  height: auto;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 0;
  height: auto;
  background: var(--navy);
  overflow: hidden;
}

.hero-poster-picture,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster-picture {
  display: block;
  z-index: 0;
}

.hero-media img,
.hero-media video {
  object-fit: cover;
}

.hero-video {
  z-index: 1;
  background: var(--navy);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 35, 38, 0.04), rgba(12, 35, 38, 0.18)),
    linear-gradient(90deg, rgba(12, 35, 38, 0.18), rgba(12, 35, 38, 0));
}

.hero-media-video::before {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -55%;
  z-index: 3;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 242, 209, 0.28) 48%, transparent 100%);
  filter: blur(10px);
  opacity: 0.4;
  transform: translateX(-40%) skewX(-10deg);
  animation: hero-light-sweep 8s ease-in-out infinite;
}

.hero-media.video-disabled .hero-video,
.hero-media.video-failed .hero-video,
html.save-data .hero-video {
  display: none;
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
  background: var(--bg);
}

@keyframes hero-light-sweep {
  0%,
  45% {
    transform: translateX(-40%) skewX(-10deg);
    opacity: 0;
  }

  62% {
    opacity: 0.4;
  }

  100% {
    transform: translateX(460%) skewX(-10deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media-video::before {
    animation: none;
    opacity: 0;
  }

  .hero-video {
    display: none;
  }
}

.section-label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.project-lockup {
  margin-bottom: 14px;
  color: var(--text);
  text-transform: uppercase;
}

.project-lockup strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.project-lockup span {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-location {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  border: 1px solid rgba(197, 153, 77, 0.38);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-copy,
.section-heading p,
.payment-layout p,
.final-cta p,
.footer p,
.thank-you-copy p,
.thank-you-next p,
.thank-you-links p,
.thank-you-footer p {
  color: var(--text-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}

h1 {
  max-width: 640px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-headline-name,
.hero-headline-price {
  display: inline;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 14px 30px rgba(10, 13, 20, 0.05);
  overflow: hidden;
}

.hero-fact {
  min-height: 90px;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
}

.hero-fact:last-child {
  border-right: 0;
}

.hero-fact span,
.stat-cell span,
.plan-carousel-label,
.plan-carousel-head small,
.plan-carousel-copy dt,
.destination-row span,
.footer strong {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-fact strong,
.stat-cell strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  color: var(--text);
  font-size: 24px;
  line-height: 1.2;
}

.hero-cta-row {
  margin-top: 28px;
}

.bottom-lead-section {
  border-top: 1px solid var(--border);
  background: var(--surface-soft);
}

.bottom-lead-shell {
  width: min(760px, calc(100% - 40px));
}

.bottom-lead-section .form-panel {
  margin-top: 0;
}

.form-panel {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.form-heading {
  margin-bottom: 20px;
}

.form-heading h2 {
  font-size: 24px;
  line-height: 1.4;
}

.form-heading p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

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

.field,
.field-wide {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea,
.country-picker-trigger,
.country-picker-search {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.country-picker-trigger:focus-visible,
.country-picker-search:focus {
  border-color: var(--gold);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.field.has-error .country-picker-trigger,
.field.has-error .segment-control {
  border-color: var(--error);
}

.field-error,
.form-error {
  display: none;
  margin-top: 6px;
  color: var(--error);
  font-size: 12px;
  line-height: 1.4;
}

.field.has-error .field-error,
.form-error.is-visible {
  display: block;
}

.phone-input-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) minmax(0, 1.1fr);
  gap: 8px;
}

.country-picker {
  position: relative;
}

.country-picker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

.country-picker-current {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.country-picker-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-picker-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  border: 1px solid var(--outline);
  background: var(--surface);
  padding: 10px;
}

.country-picker-list {
  max-height: 230px;
  overflow-y: auto;
  margin-top: 8px;
}

.country-picker-option {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 10px 6px;
  color: var(--text);
  text-align: left;
}

.country-picker-option:hover,
.country-picker-option.is-selected {
  color: var(--black);
  background: var(--surface-soft);
}

.country-picker-empty {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 12px;
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.segment-option {
  min-height: 52px;
  border: 0;
  border-right: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.segment-option:last-child {
  border-right: 0;
}

.segment-option.is-selected,
.segment-option:hover,
.segment-option:focus-visible {
  background: var(--navy);
  color: var(--surface);
  outline: none;
}

.form-consent,
.form-note,
.form-sensitive {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.4;
}

.form-submit {
  width: 100%;
  margin-top: 20px;
}

.landing-success {
  display: none;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding-top: 20px;
}

.landing-success.is-visible {
  display: block;
}

.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.stat-cell {
  min-height: 132px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.stat-cell:last-child {
  border-right: 0;
}

.stat-cell strong {
  margin: 0 0 12px;
  font-size: 28px;
}

.section {
  padding: 104px 0;
}

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

.section-heading p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.advisor-pack-section {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.advisor-pack-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
}

.advisor-pack-copy .section-heading {
  margin-bottom: 28px;
}

.advisor-pack-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advisor-pack-list li {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 14px 0 0 28px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.advisor-pack-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--muted-gold);
}

.advisor-pack-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: 28px 0;
  background: var(--surface-soft);
  overflow: hidden;
}

.advisor-pack-proof div {
  min-height: 96px;
  border-right: 1px solid var(--border);
  padding: 18px 16px;
}

.advisor-pack-proof div:last-child {
  border-right: 0;
}

.advisor-pack-proof strong {
  display: block;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
}

.advisor-pack-proof span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-directory-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
}

.plan-category-tabs {
  display: none;
}

.plan-carousel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.plan-carousel {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.plan-carousel-head {
  display: grid;
  gap: 8px;
  min-height: 126px;
  border-bottom: 1px solid var(--border);
  padding: 22px;
}

.plan-carousel-head strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.1;
}

.plan-carousel-media {
  display: block;
  border-bottom: 1px solid var(--border);
  background: #eeeadd;
  overflow: hidden;
}

.plan-carousel-media img {
  transition: transform 500ms ease;
}

.plan-carousel:hover .plan-carousel-media img {
  transform: scale(1.018);
}

.plan-carousel-media img {
  aspect-ratio: 0.89 / 1;
  object-fit: contain;
  object-position: center top;
}

.plan-carousel-copy {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.plan-carousel-title-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.plan-carousel-title-row h3 {
  font-size: 25px;
}

.plan-carousel-title-row span {
  min-width: 54px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.plan-carousel-copy dl {
  margin: 18px 0 0;
}

.plan-carousel-copy dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.plan-carousel-copy dt,
.plan-carousel-copy dd {
  margin: 0;
}

.plan-carousel-copy dd {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.plan-carousel-actions {
  display: grid;
  grid-template-columns: 44px minmax(0, 0.9fr) minmax(0, 1.2fr) 44px;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.plan-carousel-actions button,
.plan-carousel-actions a {
  min-height: 44px;
  border: 1px solid var(--black);
  background: var(--surface);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.plan-carousel-actions a {
  font-size: 12px;
  line-height: 1.15;
  padding: 0 10px;
}

.plan-carousel-actions .plan-request-link {
  border-color: var(--black);
  background: var(--black);
  color: var(--surface);
}

.plan-carousel-actions button:hover,
.plan-carousel-actions button:focus-visible,
.plan-carousel-actions a:hover,
.plan-carousel-actions a:focus-visible {
  background: var(--black);
  color: var(--surface);
}

.plan-carousel-actions .plan-request-link:hover,
.plan-carousel-actions .plan-request-link:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.plan-directory-cta {
  margin-top: 28px;
}

.payment-section,
.final-cta,
.footer {
  background: var(--navy);
  color: var(--surface);
}

.payment-section .btn-critical,
.final-cta .btn-critical {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.payment-section .btn-critical:hover,
.payment-section .btn-critical:focus-visible,
.final-cta .btn-critical:hover,
.final-cta .btn-critical:focus-visible {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--navy);
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 3.8fr) minmax(0, 8.2fr);
  gap: 64px;
  align-items: start;
}

.payment-section h2,
.payment-section p,
.final-cta h2,
.final-cta p,
.footer p,
.footer a {
  color: var(--surface);
}

.payment-layout p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.payment-hero-number {
  margin: 36px 0 28px;
  border-top: 1px solid var(--gold);
  padding-top: 28px;
  color: var(--surface);
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(224, 177, 92, 0.78);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.timeline-item {
  position: relative;
  min-height: 210px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 32px 20px 0;
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--gold);
}

.timeline-item span {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.1;
}

.timeline-item strong {
  display: block;
  margin-top: 16px;
  color: var(--surface);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-item p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: 48px;
  align-items: start;
}

.location-map {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.location-map iframe {
  display: block;
  width: 100%;
  border: 0;
  aspect-ratio: 1.36 / 1;
}

.location-map figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding: 16px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.location-map figcaption a {
  color: var(--black);
}

.location-map figcaption a:hover,
.location-map figcaption a:focus-visible {
  color: var(--muted-gold);
}

.destination-list {
  border-top: 1px solid var(--black);
  background: var(--surface);
}

.destination-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.destination-row span {
  color: var(--text);
  font-size: 16px;
  text-transform: none;
}

.destination-row strong {
  color: var(--text);
  font-size: 16px;
}

.amenities-section {
  background: var(--surface-soft);
}

.amenities-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
}

.amenity-copy {
  min-width: 0;
}

.amenity-copy .section-heading {
  margin-bottom: 28px;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.amenity-list span {
  color: var(--muted-gold);
  font-weight: 800;
}

.trust-section {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 8fr);
  gap: 48px;
  align-items: start;
}

.trust-layout .section-heading {
  margin-bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  min-width: 0;
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  padding: 24px;
}

.trust-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 153, 77, 0.46);
  border-radius: var(--radius-sm);
  color: var(--muted-gold);
  font-size: 12px;
  font-weight: 900;
}

.trust-card h3 {
  margin-top: 28px;
  font-size: 24px;
}

.trust-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid var(--black);
  background: var(--surface);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 20px;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 24px 0;
  color: var(--text);
  text-align: left;
  font-weight: 700;
  min-height: 76px;
}

.faq-item button span {
  color: var(--muted-gold);
}

.faq-item button strong {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  color: var(--black);
  font-weight: 800;
}

.faq-answer {
  display: none;
  max-width: 760px;
  padding: 0 0 24px 64px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
}

.final-cta::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18%;
  height: 100%;
  background: var(--gold);
  opacity: 0.2;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.final-cta h2 {
  max-width: 720px;
  font-size: 48px;
}

.final-cta p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 64px 0 88px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer strong {
  color: var(--surface);
}

.footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--gold);
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 44px;
  padding-top: 20px;
}

.footer-note p {
  max-width: 960px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.mobile-action-bar {
  display: none;
}

.mobile-action-bar.is-hidden {
  transform: translateY(calc(100% + env(safe-area-inset-bottom)));
  pointer-events: none;
}

.thank-you-body {
  min-height: 100svh;
  background: var(--bg);
  color: var(--text);
}

.thank-you-header {
  width: min(1280px, calc(100% - 128px));
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.thank-you-header .brand-wordmark {
  width: 152px;
}

.thank-you-header-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-variant);
  border-radius: var(--radius-sm);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.thank-you-header-link:hover,
.thank-you-header-link:focus-visible {
  border-color: var(--black);
  background: var(--black);
  color: var(--surface);
}

.thank-you-main {
  width: min(1280px, calc(100% - 128px));
  display: grid;
  gap: 20px;
  margin: 0 auto;
  padding: 56px 0 44px;
}

.thank-you-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: 520px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.thank-you-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 56px;
}

.thank-you-copy h1 {
  max-width: 720px;
  font-size: 56px;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.thank-you-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

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

.thank-you-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  background: var(--navy);
  color: var(--surface);
  padding: 44px;
}

.confirmation-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.thank-you-summary h2 {
  color: var(--surface);
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 800;
}

.thank-you-summary dl {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
}

.thank-you-summary dl div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px 0;
}

.thank-you-summary dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.thank-you-summary dd {
  margin: 0;
  color: var(--surface);
  font-weight: 700;
}

.thank-you-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.thank-you-next article,
.thank-you-links {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.thank-you-next article {
  min-width: 0;
  padding: 28px;
}

.thank-you-next article span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted-gold);
  font-weight: 900;
}

.thank-you-next h2,
.thank-you-links h2 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
}

.thank-you-next p,
.thank-you-links p {
  margin: 12px 0 0;
}

.thank-you-links {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  min-width: 0;
  padding: 32px;
}

.thank-you-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.thank-you-link-grid a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-variant);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.thank-you-link-grid a:hover,
.thank-you-link-grid a:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.thank-you-footer {
  width: min(1280px, calc(100% - 128px));
  display: grid;
  gap: 10px;
  margin: 0 auto;
  padding: 0 0 44px;
}

.thank-you-footer p {
  max-width: 960px;
  margin: 0;
  font-size: 12px;
}

.thank-you-footer a {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1180px) {
  .shell {
    width: min(1120px, calc(100% - 64px));
  }

  .nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
  }

  .nav-project {
    display: none;
  }

  .nav-links {
    gap: 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    min-height: 660px;
  }

  .hero-media {
    min-height: 0;
    height: auto;
  }

  .hero-panel {
    padding: 48px 40px;
  }

  h1 {
    font-size: 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .timeline {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .thank-you-header,
  .thank-you-main,
  .thank-you-footer {
    width: min(1120px, calc(100% - 64px));
  }

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

  .thank-you-summary dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(var(--mobile-action-height) + env(safe-area-inset-bottom));
  }

  .thank-you-body {
    padding-bottom: 0;
  }

  .shell {
    width: calc(100% - 40px);
  }

  .thank-you-header,
  .thank-you-main,
  .thank-you-footer {
    width: calc(100% - 40px);
  }

  .thank-you-header {
    min-height: 76px;
  }

  .thank-you-header .brand-wordmark {
    width: 132px;
  }

  .thank-you-header-link {
    display: none;
  }

  .thank-you-main {
    padding: 28px 0 34px;
  }

  .thank-you-copy,
  .thank-you-summary {
    padding: 28px;
  }

  .thank-you-copy h1 {
    font-size: 38px;
    line-height: 1.14;
  }

  .thank-you-summary dl,
  .thank-you-next,
  .thank-you-links,
  .thank-you-link-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 72px;
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

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

  h2 {
    font-size: 32px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 0;
    height: 280px;
  }

  .hero-panel {
    padding: 28px 20px 32px;
  }

  .hero-panel .section-label {
    margin-bottom: 10px;
  }

  .project-lockup {
    display: none;
  }

  .hero-location {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .hero-copy,
  .section-heading p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-copy {
    margin-top: 14px;
    line-height: 1.55;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .hero-fact {
    min-height: 72px;
    padding: 12px 8px;
    border-bottom: 0;
  }

  .hero-fact:nth-child(2n) {
    border-right: 0;
  }

  .hero-fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .hero-fact:last-child {
    border-right: 0;
  }

  .hero-fact span {
    font-size: 10px;
  }

  .hero-fact strong {
    font-size: 17px;
  }

  .hero-cta-row {
    margin-top: 18px;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .field-grid,
  .phone-input-row,
  .location-layout,
  .advisor-pack-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .segment-control {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .segment-option:nth-child(2n) {
    border-right: 0;
  }

  .segment-option:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .plan-category-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: -6px 0 16px;
    border: 1px solid var(--black);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
  }

  .plan-category-tab {
    min-height: 48px;
    border: 0;
    border-right: 1px solid var(--black);
    background: var(--surface);
    color: var(--black);
    padding: 0 8px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
  }

  .plan-category-tab:last-child {
    border-right: 0;
  }

  .plan-category-tab.is-active,
  .plan-category-tab:hover,
  .plan-category-tab:focus-visible {
    background: var(--black);
    color: var(--surface);
  }

  .plan-carousel-grid {
    grid-template-columns: 1fr;
  }

  .plan-carousel-grid .plan-carousel:not(.is-active) {
    display: none;
  }

  .plan-carousel-head {
    min-height: auto;
    padding: 18px;
  }

  .plan-carousel-head strong {
    font-size: 26px;
  }

  .plan-carousel-copy {
    padding: 18px;
  }

  .plan-carousel-copy dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }

  .plan-carousel-copy dl div {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .plan-carousel-copy dl div:last-child {
    grid-column: 1 / -1;
  }

  .plan-carousel-copy dd {
    text-align: left;
  }

  .plan-carousel-actions {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .plan-carousel-actions [data-plan-prev] {
    grid-column: 1;
    grid-row: 1;
  }

  .plan-carousel-actions [data-plan-next] {
    grid-column: 3;
    grid-row: 1;
  }

  .plan-carousel-actions [data-plan-link] {
    grid-column: 2;
    grid-row: 1;
  }

  .plan-carousel-actions .plan-request-link {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .plan-carousel-media img {
    aspect-ratio: 1.08 / 1;
    max-height: 340px;
  }

  .advisor-pack-layout {
    gap: 40px;
  }

  .advisor-pack-proof {
    grid-template-columns: 1fr;
  }

  .advisor-pack-proof div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .advisor-pack-proof div:last-child {
    border-bottom: 0;
  }

  .stat-cell {
    min-height: 104px;
    border-bottom: 1px solid var(--border);
  }

  .stat-cell:nth-child(2n) {
    border-right: 0;
  }

  .stat-cell:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .payment-layout {
    gap: 40px;
  }

  .payment-hero-number {
    font-size: 72px;
  }

  .timeline {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid rgba(224, 177, 92, 0.78);
  }

  .timeline-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0 0 28px 28px;
  }

  .timeline-item::before {
    top: 8px;
    left: -7px;
  }

  .amenities-layout {
    grid-template-columns: 1fr;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }

  .faq-item button {
    grid-template-columns: 36px 1fr 28px;
    gap: 12px;
  }

  .faq-answer {
    padding-left: 48px;
  }

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

  .final-cta {
    padding: 72px 0;
  }

  .final-cta::after {
    width: 100%;
    height: 8px;
  }

  .final-cta h2,
  .thank-you-copy h1 {
    font-size: 36px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--black);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--surface);
    box-shadow: 0 -18px 36px rgba(10, 13, 20, 0.16);
    transition: transform 180ms ease;
  }

  .mobile-action {
    min-height: var(--mobile-action-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-action-whatsapp {
    background: var(--black);
    color: var(--surface);
  }

  .mobile-action-price {
    background: var(--gold);
    color: var(--navy);
  }

  .footer {
    padding-bottom: 64px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .hero-headline-name,
  .hero-headline-price {
    display: block;
  }
}

@media (max-width: 430px) {
  .shell {
    width: calc(100% - 40px);
  }

  h1 {
    font-size: 32px;
  }

  .thank-you-copy h1 {
    font-size: 31px;
    line-height: 1.16;
  }

  .project-lockup strong {
    font-size: 28px;
  }

  .form-panel,
  .plan-carousel-head,
  .plan-carousel-copy,
  .trust-card,
  .thank-you-copy,
  .thank-you-summary,
  .thank-you-next article,
  .thank-you-links {
    padding: 20px;
  }

  .plan-carousel-copy dl div {
    display: grid;
    gap: 6px;
  }

  .plan-carousel-copy dd {
    text-align: left;
  }

  .cta-row,
  .final-cta .cta-row {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}
