:root {
  --surface: #f8f6f1;
  --surface-low: #f0ede6;
  --surface-container: #e7e2d9;
  --surface-high: #ded7cc;
  --ink: #20211f;
  --ink-soft: #4a4a45;
  --slate: #686861;
  --outline: #c9c2b6;
  --gold: #b89b62;
  --gold-deep: #6f5a36;
  --white: #ffffff;
  --danger: #a13636;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  --header-height: 76px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.lead-popup-open {
  overflow: hidden;
}

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

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

button,
.btn {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(32, 33, 31, 0.94);
  color: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: header-reveal 680ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.topbar.is-scrolled {
  border-bottom-color: rgba(184, 155, 98, 0.3);
  background: rgba(32, 33, 31, 0.98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  animation: header-item-reveal 520ms 170ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.brand img {
  width: 142px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  position: relative;
}

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

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

.nav-phone,
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-only-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  background: var(--gold);
  background-image: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.58) 50%, transparent 58% 100%);
  background-position: 140% 0;
  background-size: 260% 100%;
  color: var(--ink);
  padding: 0 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation:
    header-item-reveal 520ms 260ms cubic-bezier(0.22, 1, 0.36, 1) backwards,
    header-cta-shine 900ms 780ms ease-out backwards;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.nav-only-cta:hover,
.nav-only-cta:focus-visible {
  transform: translateY(-2px);
  background-color: #c7ad79;
  box-shadow: 0 8px 22px rgba(184, 155, 98, 0.24);
}

@keyframes header-reveal {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes header-item-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes header-cta-shine {
  from {
    background-position: 140% 0;
  }

  to {
    background-position: -40% 0;
  }
}

.mobile-menu-button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 49;
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(19, 21, 19, 0.98);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 1.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.12);
  color: var(--white);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #20211f;
}

.hero-bg,
.hero-slider,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider .hero-bg {
  opacity: 0;
}

.hero-slide {
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 6200ms ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 17, 16, 0.86) 0%, rgba(16, 17, 16, 0.54) 42%, rgba(16, 17, 16, 0.08) 72%),
    linear-gradient(0deg, rgba(16, 17, 16, 0.64) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 870px;
  padding: 7.5rem 0 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow,
.payment-section .eyebrow,
.footer .eyebrow {
  color: #dccaa6;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(3.15rem, 7.4vw, 6.75rem);
  line-height: 0.95;
}

.hero p {
  max-width: 690px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-fact-grid {
  display: grid;
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.2);
}

.hero-fact {
  min-height: 100px;
  background: rgba(32, 33, 31, 0.68);
  padding: 1.1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-fact span,
.detail-card span,
.highlight-card span,
.payment-card span,
.incentive-card span,
.amenity-index {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-fact strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.15;
}

.details {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--ink);
  color: var(--white);
}

.details-shell {
  padding: 1px 0;
}

.details-grid,
.highlight-grid,
.insight-grid,
.payment-grid,
.incentive-grid,
.amenity-grid,
.trust-grid,
.faq-grid {
  display: grid;
  gap: 1px;
  background: rgba(198, 199, 193, 0.6);
}

.detail-card,
.highlight-card,
.insight-card,
.payment-card,
.incentive-card,
.amenity-card,
.trust-card,
.faq-card {
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 1.35rem;
  background: var(--surface);
}

.detail-card {
  background: var(--ink);
}

.detail-card span {
  color: rgba(255, 255, 255, 0.5);
}

.detail-card p {
  margin: 0.5rem 0 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.3;
}

.section {
  padding: 5rem 0;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

.has-section-motion [data-animated-section] .hero-content,
.has-section-motion [data-animated-section] .section-kicker,
.has-section-motion [data-animated-section] .proof-visual-grid,
.has-section-motion [data-animated-section] .proof-payment,
.has-section-motion [data-animated-section] .proof-meta-grid,
.has-section-motion [data-animated-section] .form-intro,
.has-section-motion [data-animated-section] .form-panel-3d,
.has-section-motion [data-animated-section] .contact-trust-strip {
  opacity: 0;
  translate: 0 30px;
  transition:
    opacity 720ms ease-out,
    translate 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, translate;
}

.has-section-motion [data-animated-section] .proof-visual-grid,
.has-section-motion [data-animated-section] .form-intro {
  translate: -26px 0;
}

.has-section-motion [data-animated-section] .form-panel-3d {
  translate: 26px 0;
}

.has-section-motion [data-animated-section] .proof-visual-grid,
.has-section-motion [data-animated-section] .form-panel-3d {
  transition-delay: 90ms;
}

.has-section-motion [data-animated-section] .proof-payment,
.has-section-motion [data-animated-section] .contact-trust-strip {
  transition-delay: 170ms;
}

.has-section-motion [data-animated-section] .proof-meta-grid {
  transition-delay: 250ms;
}

.has-section-motion [data-animated-section].is-in-view .hero-content,
.has-section-motion [data-animated-section].is-in-view .section-kicker,
.has-section-motion [data-animated-section].is-in-view .proof-visual-grid,
.has-section-motion [data-animated-section].is-in-view .proof-payment,
.has-section-motion [data-animated-section].is-in-view .proof-meta-grid,
.has-section-motion [data-animated-section].is-in-view .form-intro,
.has-section-motion [data-animated-section].is-in-view .form-panel-3d,
.has-section-motion [data-animated-section].is-in-view .contact-trust-strip {
  opacity: 1;
  translate: 0 0;
}

.section-kicker {
  max-width: 850px;
  margin-bottom: 2rem;
}

.section-title {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2.45rem, 6vw, 5.15rem);
  line-height: 1.04;
}

.section-copy {
  max-width: 760px;
  margin: 1.15rem 0 0;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.8;
}

.quick-highlights {
  background: var(--surface);
}

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

.proof-visual-grid {
  display: grid;
  gap: 1.5rem;
}

.proof-image {
  margin: 0;
  border: 1px solid var(--outline);
  background: var(--white);
}

.proof-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.proof-image figcaption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem 1rem;
  border-top: 1px solid var(--outline);
  padding: 0.7rem 0.9rem;
  color: var(--slate);
  font-size: 0.72rem;
}

.proof-map {
  display: flex;
  min-height: 440px;
  flex-direction: column;
}

.proof-map-frame {
  width: 100%;
  min-height: 360px;
  flex: 1;
  border: 0;
}

.proof-map figcaption a {
  color: var(--gold-deep);
  font-weight: 700;
}

.proof-map figcaption a:hover,
.proof-map figcaption a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.proof-visual-grid .highlight-grid {
  align-content: stretch;
}

.proof-visual-grid .highlight-card {
  min-height: 122px;
}

.proof-payment {
  margin-top: 4rem;
  background: var(--ink);
  color: var(--white);
  padding: 1.5rem;
}

.proof-block-heading {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.proof-block-heading .eyebrow {
  color: #dccaa6;
}

.proof-block-heading h3 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
}

.proof-block-heading p,
.proof-note-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.proof-note-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem 1.5rem;
  margin-top: 1.2rem;
}

.proof-note-row .text-link {
  margin-top: 0.5rem;
}

.mobile-swipe-hint {
  display: none;
}

.proof-meta-grid {
  display: grid;
  gap: 1px;
  margin-top: 1.5rem;
  border: 1px solid var(--outline);
  background: var(--outline);
}

.proof-info-card,
.proof-film {
  min-width: 0;
  background: var(--white);
  padding: 1.5rem;
}

.proof-info-card h3,
.contact-trust-heading h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1.16;
}

.proof-info-card .location-list {
  margin-top: 1.5rem;
}

.proof-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--outline);
  background: var(--surface-low);
  padding: 0.58rem 0.72rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.seo-faq {
  margin-top: 1.5rem;
  border: 1px solid var(--outline);
  background: var(--white);
}

.seo-faq-heading {
  padding: 1.5rem;
  background: var(--surface-low);
}

.seo-faq-heading h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.12;
}

.seo-faq-heading p {
  max-width: 780px;
  margin: 0.8rem 0 0;
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.65;
}

.seo-faq-list {
  border-top: 1px solid var(--outline);
}

.seo-faq-item {
  background: var(--white);
}

.seo-faq-item + .seo-faq-item {
  border-top: 1px solid var(--outline);
}

.seo-faq-item summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

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

.seo-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

.seo-faq-item[open] summary::after {
  content: "−";
}

.seo-faq-item p {
  max-width: 880px;
  margin: 0;
  padding: 0 1.5rem 1.35rem;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.75;
}

.featured-media-card {
  height: 100%;
  border: 1px solid var(--outline);
  background: var(--white);
}

.featured-media-card .media-play,
.featured-media-card .media-play img,
.featured-media-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.featured-media-card .media-play img {
  object-fit: cover;
}

.featured-media-card video {
  background: var(--ink);
  object-fit: contain;
}

.featured-media-card .media-caption {
  min-height: auto;
  padding: 1.1rem;
}

.highlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--outline);
}

.highlight-card {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.highlight-card span,
.amenity-index {
  color: var(--slate);
}

.highlight-card strong {
  display: block;
  margin-top: 1.25rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
}

.about-section {
  padding: 0;
  background: var(--surface);
}

.about-panel {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(24, 27, 24, 0.9), rgba(24, 27, 24, 0.62) 52%, rgba(24, 27, 24, 0.22)),
    url("/assets/living-legends-phase-5/living-legends-phase-5-dubai-apartments.jpeg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 760px;
  padding: 3rem 2rem;
}

.about-copy .eyebrow {
  color: #dccaa6;
}

.about-copy .section-title,
.about-copy .section-copy {
  color: var(--white);
}

.about-copy .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.insights-section {
  background: var(--surface-low);
}

.insight-card {
  min-height: 230px;
  background: var(--surface);
}

.insight-card strong,
.amenity-card strong,
.trust-card strong,
.faq-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.24;
}

.insight-card p,
.amenity-card p,
.trust-card p,
.faq-card p {
  margin: 0.9rem 0 0;
  color: var(--slate);
  line-height: 1.75;
}

.payment-section {
  background: var(--ink);
  color: var(--white);
}

.payment-section .section-title,
.payment-section .section-copy {
  color: var(--white);
}

.payment-section .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.payment-grid,
.incentive-grid {
  background: rgba(184, 155, 98, 0.32);
}

.payment-card {
  position: relative;
  min-height: 230px;
  background: #232623;
}

.payment-card span {
  color: #dccaa6;
}

.payment-value {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 6vw, 4.5rem) !important;
  font-weight: 600;
  letter-spacing: -0.04em !important;
  line-height: 1;
  text-transform: none !important;
}

.payment-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.payment-card p,
.incentive-card p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.incentive-header {
  max-width: 800px;
  margin: 3rem 0 1.5rem;
}

.incentive-header .eyebrow {
  margin-bottom: 0.6rem;
}

.incentive-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.incentive-card {
  min-height: 190px;
  background: #232623;
}

.incentive-card span {
  color: rgba(255, 255, 255, 0.54);
}

.incentive-card strong {
  display: block;
  margin-top: 1rem;
  color: #dccaa6;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  border-bottom: 1px solid #dccaa6;
  padding-bottom: 0.2rem;
  color: #eadfc8;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.amenity-grid {
  border: 1px solid var(--outline);
}

.amenity-card {
  min-height: 210px;
  background: var(--white);
}

.amenity-index {
  margin-bottom: 2.5rem;
  color: var(--gold-deep);
}

.gallery-section {
  background: var(--surface-container);
}

.glass-card,
.gallery {
  overflow: hidden;
  border: 1px solid var(--outline);
  border-radius: 0;
  background: var(--ink);
  box-shadow: var(--shadow);
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  width: 100%;
  transition: transform 480ms ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.gallery-image {
  position: relative;
  min-height: 480px;
  background-position: center;
  background-size: cover;
}

.gallery-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 15, 12, 0.8), transparent 62%);
}

.gallery-caption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 2;
}

.gallery-caption span,
.media-caption span {
  display: block;
  color: #dccaa6;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-caption strong {
  display: block;
  max-width: 740px;
  margin-top: 0.6rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-dots,
.gallery-arrows {
  display: flex;
  gap: 0.6rem;
}

.gallery-dot,
.gallery-arrow {
  border: 1px solid var(--outline);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.gallery-dot {
  width: 30px;
  height: 2px;
  border: 0;
  padding: 0;
  background: var(--outline);
}

.gallery-dot.is-active {
  background: var(--gold-deep);
}

.gallery-arrow {
  width: 46px;
  height: 46px;
}

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

.media-grid {
  columns: 1;
  column-gap: 1rem;
}

.media-card {
  width: 100%;
  display: inline-block;
  margin: 0 0 1rem;
  break-inside: avoid;
  border: 1px solid var(--outline);
  background: var(--white);
  vertical-align: top;
}

.media-player,
.media-card video,
.media-play,
.media-play img {
  width: 100%;
}

.media-player {
  position: relative;
  background: var(--ink);
}

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

.media-card-portrait video,
.media-card-portrait .media-play,
.media-card-portrait .media-play img {
  aspect-ratio: 9 / 13;
}

.media-card-landscape video,
.media-card-landscape .media-play,
.media-card-landscape .media-play img {
  aspect-ratio: 16 / 9;
}

.media-play {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  padding: 0;
}

.media-play::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 17, 14, 0.6), transparent 62%);
}

.media-play span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(14, 17, 14, 0.58);
  color: var(--white);
  padding: 0 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.media-play:hover span,
.media-play:focus-visible span {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.media-caption {
  position: relative;
  min-height: 126px;
  padding: 1.2rem 4.5rem 1.2rem 1.2rem;
}

.media-caption span {
  color: var(--gold-deep);
}

.media-caption strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
}

.media-caption small {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: var(--slate);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-section {
  background: var(--surface-low);
}

.location-panel {
  display: grid;
  gap: 2rem;
  border: 1px solid var(--outline);
  border-radius: 0;
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.location-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-list li {
  position: relative;
  border-top: 1px solid var(--outline);
  padding: 1rem 0 1rem 1.6rem;
  color: var(--ink-soft);
}

.location-list li:last-child {
  border-bottom: 1px solid var(--outline);
}

.location-list li::before {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: 0.2rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
}

.location-visual {
  margin: 0;
  border-top: 1px solid var(--outline);
  padding-top: 1.5rem;
}

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

.location-visual figcaption {
  margin-top: 0.65rem;
  color: var(--slate);
  font-size: 0.72rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(184, 155, 98, 0.14), transparent 32rem),
    linear-gradient(180deg, var(--surface), var(--surface-low));
}

.contact-layout {
  position: relative;
  display: grid;
  gap: 0;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  perspective: 1500px;
}

.contact-trust-strip {
  grid-column: 1 / -1;
  border-top: 1px solid var(--outline);
  background: var(--surface-low);
  padding: 1.5rem;
}

.contact-trust-heading {
  margin-bottom: 1.25rem;
}

.contact-trust-strip .trust-card {
  min-height: 0;
  padding: 1.15rem;
}

.contact-trust-strip .trust-card strong {
  font-size: 1.18rem;
}

.contact-trust-strip .trust-card p {
  margin-top: 0.55rem;
  font-size: 0.86rem;
}

.form-intro,
.form-panel,
.thank-you-panel {
  border: 0;
  border-radius: 0;
  padding: 1.5rem;
}

.form-intro {
  background: var(--ink);
  color: var(--white);
}

.form-intro .eyebrow {
  color: #dccaa6;
}

.form-intro .section-title,
.form-intro .section-copy {
  color: var(--white);
}

.form-intro .section-copy {
  color: rgba(255, 255, 255, 0.66);
}

.intro-points {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.intro-points span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.85rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
}

.form-panel {
  background: var(--white);
}

.form-panel-3d {
  position: relative;
  z-index: 2;
  isolation: isolate;
  border: 1px solid rgba(111, 90, 54, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(248, 246, 241, 0.96));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    14px 14px 0 rgba(111, 90, 54, 0.78),
    0 24px 52px rgba(32, 33, 31, 0.2),
    0 44px 90px rgba(32, 33, 31, 0.1);
  transform: perspective(1500px) rotateY(-2deg) rotateX(0.8deg) translate3d(0, -8px, 0);
  transform-origin: left center;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
}

.form-panel-3d form,
.form-panel-3d .form-success {
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .form-panel-3d:hover {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      18px 18px 0 rgba(111, 90, 54, 0.84),
      0 30px 62px rgba(32, 33, 31, 0.22),
      0 52px 100px rgba(32, 33, 31, 0.12);
    transform: perspective(1500px) rotateY(-0.65deg) rotateX(0.25deg) translate3d(0, -13px, 0);
  }
}

.field-grid {
  display: grid;
  gap: 1rem;
}

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

.field label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--slate);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.field input,
.field select,
.field textarea,
.country-picker-trigger {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid var(--slate);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.65rem 0;
  outline: 0;
  transition: border-color 180ms ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #929590;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.country-picker.is-open .country-picker-trigger,
.country-picker-trigger:focus-visible {
  border-bottom-color: var(--gold-deep);
  outline: 0;
}

.phone-input-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(145px, 0.55fr) minmax(0, 1fr);
}

.country-picker {
  position: relative;
}

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

.country-picker-current {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

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

.country-picker-code,
.country-picker-chevron {
  color: var(--slate);
}

.country-picker.is-empty .country-picker-current {
  color: var(--slate);
}

.country-picker-trigger[aria-invalid="true"] {
  border-bottom-color: var(--danger);
}

.country-picker-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  z-index: 20;
  width: min(380px, 90vw);
  border: 1px solid var(--outline);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  padding: 0.75rem;
}

.country-picker-search {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--outline);
  border-radius: 0;
  background: var(--surface-low);
  padding: 0.7rem;
}

.country-picker-list {
  display: grid;
  gap: 1px;
  max-height: 260px;
  margin-top: 0.6rem;
  overflow: auto;
  background: var(--outline);
}

.country-picker-option {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 0.65rem;
  text-align: left;
}

.country-picker-option:hover,
.country-picker-option:focus-visible,
.country-picker-option.is-selected {
  background: var(--surface-high);
}

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

.country-picker-option-code,
.country-picker-empty {
  color: var(--slate);
}

.country-picker-empty {
  margin: 0.75rem 0 0;
  font-size: 0.84rem;
}

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

.field-error {
  display: none;
  margin-top: 0.35rem;
  color: var(--danger);
  font-size: 0.78rem;
}

.field.has-error .field-error {
  display: block;
}

.disclaimer {
  margin: 0.7rem 0 0;
  color: var(--slate);
  font-size: 0.72rem;
  line-height: 1.65;
}

.form-panel .btn {
  width: 100%;
  margin-top: 1.2rem;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: end;
  overflow-y: auto;
  background: rgba(13, 15, 13, 0.72);
  padding: 1rem 0 0;
  opacity: 0;
  overscroll-behavior: contain;
  transition: opacity 180ms ease;
}

.lead-popup.is-open {
  opacity: 1;
}

.lead-popup-card {
  position: relative;
  width: 100%;
  max-height: calc(100svh - 1rem);
  overflow-y: auto;
  border: 1px solid rgba(184, 155, 98, 0.48);
  border-bottom: 0;
  background: var(--surface);
  padding: 1.35rem;
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(24px);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-popup.is-open .lead-popup-card {
  transform: translateY(0);
}

.lead-popup-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 44px;
  min-height: 44px;
  border: 1px solid var(--outline);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
}

.lead-popup-heading {
  padding-right: 3rem;
}

.lead-popup-heading h2 {
  margin-top: 0.65rem;
  color: var(--ink);
  font-size: clamp(2rem, 9vw, 3.25rem);
  line-height: 1.02;
}

.lead-popup-heading p {
  margin: 0.85rem 0 0;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.65;
}

.compact-lead-form {
  margin-top: 1.25rem;
}

.compact-lead-form .field-grid {
  gap: 0.85rem;
}

.compact-lead-form .field textarea {
  min-height: 64px;
  max-height: 120px;
}

.popup-phone-row {
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
  gap: 0.75rem;
}

.popup-phone-row select,
.popup-phone-row input {
  min-width: 0;
}

.lead-popup .btn {
  width: 100%;
  margin-top: 1rem;
}

.lead-popup-dismiss {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-transform: uppercase;
}

.lead-popup-success {
  margin-top: 1.25rem;
}

.lead-popup-success h3 {
  font-size: 2rem;
}

.lead-popup-success p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.form-error,
.form-success {
  display: none;
  margin-top: 1rem;
  border: 1px solid;
  border-radius: 0;
  padding: 1rem;
}

.form-error {
  border-color: rgba(161, 54, 54, 0.36);
  background: rgba(161, 54, 54, 0.07);
  color: var(--danger);
}

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

.form-success {
  border-color: rgba(111, 90, 54, 0.36);
  background: rgba(184, 155, 98, 0.1);
}

.form-success h3 {
  font-size: 2rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.trust-section {
  background: var(--surface-low);
}

.trust-grid,
.faq-grid {
  border: 1px solid var(--outline);
}

.trust-card,
.faq-card {
  min-height: 210px;
  background: var(--surface);
}

.permit-note {
  margin: 1rem 0 0;
  color: var(--slate);
  font-size: 0.76rem;
}

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

.faq-card p {
  font-size: 0.94rem;
}

.footer {
  padding: 0 0 5rem;
  background: var(--ink);
  color: var(--white);
}

.footer-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.footer-panel p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.footer-site-link {
  display: inline-block;
  border-bottom: 1px solid rgba(184, 155, 98, 0.72);
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-note {
  margin-top: 2rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1rem;
  font-size: 0.74rem;
}

.mobile-contact-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 44;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--ink);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-contact-bar a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-contact-bar a:first-child {
  background: #30312f;
}

.mobile-contact-bar .btn-whatsapp {
  background: var(--gold);
  color: var(--ink);
}

.thank-you-shell {
  min-height: 76svh;
  display: grid;
  align-items: center;
  padding: 4rem 0;
}

.thank-you-panel {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--outline);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.thank-you-panel .eyebrow {
  justify-content: center;
}

.thank-you-panel h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 8vw, 6rem);
}

.thank-you-panel .section-copy {
  margin-inline: auto;
}

.whatsapp-redirect-note {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.65;
}

.whatsapp-redirect-note strong {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.thank-you-panel .cta-row {
  justify-content: center;
}

.thank-you-panel .btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

@media (min-width: 700px) {
  .lead-popup {
    align-items: center;
    justify-items: center;
    padding: 2rem;
  }

  .lead-popup-card {
    width: min(520px, 100%);
    max-height: calc(100svh - 4rem);
    border-bottom: 1px solid rgba(184, 155, 98, 0.48);
    padding: 2rem;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
    transform: translateY(14px) scale(0.985);
  }

  .lead-popup.is-open .lead-popup-card {
    transform: translateY(0) scale(1);
  }

  .proof-image figcaption {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

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

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

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

  .insight-grid,
  .amenity-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .media-grid {
    columns: 2;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .proof-note-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .proof-note-row p {
    max-width: 680px;
  }
}

@media (min-width: 1024px) {
  .shell {
    width: min(1280px, calc(100% - 96px));
  }

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

  .nav-links {
    gap: 1.25rem;
  }

  .nav-actions {
    gap: 0.8rem;
  }

  .nav-actions .btn {
    min-height: 44px;
    padding-inline: 1rem;
  }

  .mobile-menu-button,
  .mobile-menu,
  .mobile-contact-bar {
    display: none;
  }

  .section {
    padding: 7.5rem 0;
  }

  .hero-content {
    padding: 9rem 0 5rem;
  }

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

  .detail-card {
    min-height: 130px;
    padding: 1.25rem 1rem;
  }

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

  .proof-visual-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
  }

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

  .proof-image img {
    min-height: 100%;
  }

  .proof-payment {
    padding: 2.5rem;
  }

  .proof-block-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    align-items: end;
  }

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

  .proof-info-card,
  .proof-film,
  .contact-trust-strip {
    padding: 2rem;
  }

  .about-panel {
    min-height: 620px;
  }

  .about-copy {
    padding: 4rem;
  }

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

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

  .payment-card {
    min-height: 270px;
    padding: 1.55rem 1.25rem;
  }

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

  .gallery-image {
    min-height: min(72vh, 760px);
  }

  .location-panel {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 2rem;
  }

  .location-visual {
    grid-column: 1 / -1;
  }

  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .form-intro,
  .form-panel,
  .thank-you-panel {
    padding: 2.5rem;
  }

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

@media (min-width: 1280px) {
  .media-grid {
    column-gap: 1.5rem;
  }

  .media-card {
    margin-bottom: 1.5rem;
  }

  .form-intro,
  .form-panel {
    padding: 3.5rem;
  }
}

@media (max-width: 699px) {
  body {
    padding-bottom: 56px;
  }

  .has-section-motion [data-animated-section] .hero-content,
  .has-section-motion [data-animated-section] .section-kicker,
  .has-section-motion [data-animated-section] .proof-visual-grid,
  .has-section-motion [data-animated-section] .proof-payment,
  .has-section-motion [data-animated-section] .proof-meta-grid,
  .has-section-motion [data-animated-section] .form-intro,
  .has-section-motion [data-animated-section] .form-panel-3d,
  .has-section-motion [data-animated-section] .contact-trust-strip {
    translate: 0 18px;
    transition-duration: 560ms;
  }

  .has-section-motion [data-animated-section].is-in-view .hero-content,
  .has-section-motion [data-animated-section].is-in-view .section-kicker,
  .has-section-motion [data-animated-section].is-in-view .proof-visual-grid,
  .has-section-motion [data-animated-section].is-in-view .proof-payment,
  .has-section-motion [data-animated-section].is-in-view .proof-meta-grid,
  .has-section-motion [data-animated-section].is-in-view .form-intro,
  .has-section-motion [data-animated-section].is-in-view .form-panel-3d,
  .has-section-motion [data-animated-section].is-in-view .contact-trust-strip {
    translate: 0 0;
  }

  h1 {
    font-size: clamp(2.55rem, 11.4vw, 3rem);
    line-height: 0.98;
  }

  .hero {
    min-height: 700px;
  }

  .hero-bg {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 15, 12, 0.8), rgba(12, 15, 12, 0.3)),
      linear-gradient(0deg, rgba(12, 15, 12, 0.78), rgba(12, 15, 12, 0.08) 72%);
  }

  .hero-content {
    padding: 4.5rem 0 1.6rem;
  }

  .hero p {
    margin-top: 1rem;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .hero .cta-row {
    margin-top: 1.2rem;
  }

  .hero .cta-row .btn-ghost {
    display: none;
  }

  .hero-fact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.2rem;
  }

  .hero-fact {
    min-height: 106px;
    padding: 0.8rem 0.65rem;
  }

  .hero-fact span {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .hero-fact strong {
    margin-top: 0.45rem;
    font-size: 1rem;
  }

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

  .section-title {
    font-size: clamp(2.2rem, 10.5vw, 2.65rem);
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-kicker {
    margin-bottom: 1.4rem;
  }

  .section-copy {
    line-height: 1.65;
  }

  .proof-visual-grid {
    gap: 1rem;
  }

  .proof-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

  .proof-visual-grid .highlight-card {
    min-height: 102px;
    padding: 0.75rem;
  }

  .highlight-card strong {
    margin-top: 0.75rem;
    font-size: 1.05rem;
  }

  .highlight-card:nth-child(6) {
    grid-column: auto;
  }

  .proof-payment {
    margin-top: 2.5rem;
    padding: 1.25rem;
  }

  .proof-block-heading {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .proof-block-heading h3 {
    font-size: 2rem;
  }

  .proof-block-heading p,
  .proof-note-row p {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .mobile-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 0.65rem;
    color: var(--gold-deep);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .proof-payment .mobile-swipe-hint {
    color: #dccaa6;
  }

  .payment-grid,
  .proof-meta-grid,
  .contact-trust-strip .trust-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 1px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y;
  }

  .payment-grid::-webkit-scrollbar,
  .proof-meta-grid::-webkit-scrollbar,
  .contact-trust-strip .trust-grid::-webkit-scrollbar {
    height: 4px;
  }

  .payment-grid::-webkit-scrollbar-thumb,
  .proof-meta-grid::-webkit-scrollbar-thumb,
  .contact-trust-strip .trust-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
  }

  .payment-grid {
    background: transparent;
    padding-bottom: 0.65rem;
  }

  .payment-card {
    flex: 0 0 82%;
    min-height: 205px;
    padding: 1.2rem;
    scroll-snap-align: start;
  }

  .payment-value {
    font-size: 3rem !important;
  }

  .proof-note-row {
    margin-top: 0.8rem;
  }

  .proof-meta-grid {
    gap: 0.75rem;
    margin-top: 0;
    border: 0;
    background: transparent;
    padding-bottom: 0.65rem;
  }

  .proof-meta-grid > .proof-info-card,
  .proof-meta-grid > .proof-film {
    flex: 0 0 84%;
    border: 1px solid var(--outline);
    padding: 1.2rem;
    scroll-snap-align: start;
  }

  .proof-info-card h3 {
    font-size: 1.65rem;
  }

  .proof-info-card .location-list,
  .proof-chip-list {
    margin-top: 1rem;
  }

  .proof-info-card .location-list li {
    padding: 0.7rem 0 0.7rem 1.2rem;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .proof-info-card .location-list li::before {
    top: 1.15rem;
  }

  .proof-chip {
    padding: 0.5rem 0.6rem;
    font-size: 0.66rem;
  }

  .proof-film {
    padding: 0.75rem !important;
  }

  .form-intro,
  .form-panel,
  .contact-trust-strip {
    min-width: 0;
    width: 100%;
    padding: 1.25rem;
  }

  .form-panel-3d {
    width: calc(100% - 8px);
    margin: 0 8px 8px 0;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      8px 8px 0 rgba(111, 90, 54, 0.78),
      0 18px 32px rgba(24, 27, 24, 0.16);
    transform: none;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-intro .section-title {
    font-size: 2.55rem;
  }

  .intro-points {
    display: none;
  }

  .field-grid {
    gap: 0.75rem;
  }

  .field textarea {
    min-height: 78px;
  }

  .phone-input-row {
    grid-template-columns: minmax(118px, 0.45fr) minmax(0, 1fr);
    gap: 0.75rem;
  }

  .disclaimer {
    margin-top: 0.5rem;
    font-size: 0.66rem;
    line-height: 1.5;
  }

  .contact-trust-heading {
    margin-bottom: 0.8rem;
  }

  .contact-trust-heading h3 {
    font-size: 1.85rem;
  }

  .contact-trust-strip .trust-grid {
    border: 0;
    background: transparent;
    padding-bottom: 0.65rem;
  }

  .contact-trust-strip .trust-card {
    flex: 0 0 82%;
    border: 1px solid var(--outline);
    scroll-snap-align: start;
  }

  .country-picker-panel {
    width: calc(100vw - 72px);
  }

  .gallery-image {
    min-height: 500px;
  }

  .about-panel {
    width: 100%;
    margin-left: 0;
  }

  .footer {
    padding-bottom: 2.5rem;
  }

  .footer-panel {
    padding-top: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid strong {
    font-size: 1.2rem;
  }

  .footer-panel p {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .footer-note {
    margin-top: 1rem !important;
  }
}

/* Variant B: payment-first concept */
.page-variant-payment {
  --surface: #f4f6f7;
  --surface-low: #e9edf0;
  --surface-container: #dee4e8;
  --surface-high: #d2dadf;
  --ink: #17232e;
  --ink-soft: #354654;
  --slate: #62717c;
  --outline: #c2cbd1;
  --gold: #b8a171;
  --gold-deep: #6c5c3c;
  --shadow: 0 26px 70px rgba(23, 35, 46, 0.12);
}

.page-variant-payment h1,
.page-variant-payment h2,
.page-variant-payment h3,
.page-variant-payment .footer-grid strong {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.page-variant-payment .topbar,
.page-variant-payment .footer,
.page-variant-payment .mobile-contact-bar {
  background: #17232e;
}

.page-variant-payment .topbar.is-scrolled {
  background: rgba(23, 35, 46, 0.98);
}

.page-variant-payment .nav-only-cta,
.page-variant-payment .btn,
.page-variant-payment .proof-chip,
.page-variant-payment .form-panel,
.page-variant-payment .lead-popup-card,
.page-variant-payment .lead-popup-close {
  border-radius: 999px;
}

.page-variant-payment .nav-only-cta {
  border-color: #d7c99f;
  background-color: #d7c99f;
  color: #17232e;
}

.hero-payment {
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  background: #17232e;
}

.hero-payment .hero-bg {
  right: 0;
  left: auto;
  width: 61%;
  object-position: 68% center;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  filter: saturate(0.82) contrast(1.04);
}

.hero-payment .hero-shade {
  background:
    linear-gradient(90deg, #17232e 0 42%, rgba(23, 35, 46, 0.9) 53%, rgba(23, 35, 46, 0.16) 78%),
    linear-gradient(0deg, rgba(23, 35, 46, 0.66), transparent 54%);
}

.hero-payment .hero-content {
  max-width: 720px;
  padding-top: 6rem;
}

.hero-payment h1 {
  max-width: 680px;
  font-size: clamp(3.65rem, 7.8vw, 7.6rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-payment .eyebrow {
  color: #d7c99f;
}

.hero-payment .btn-primary {
  border-color: #d7c99f;
  background: #d7c99f;
  color: #17232e;
}

.hero-payment .hero-fact-grid {
  gap: 0.7rem;
  border: 0;
  background: transparent;
}

.hero-payment .hero-fact {
  border: 1px solid rgba(215, 201, 159, 0.34);
  border-radius: 1rem;
  background: rgba(23, 35, 46, 0.78);
}

.payment-concept {
  background:
    radial-gradient(circle at 88% 12%, rgba(184, 161, 113, 0.14), transparent 28rem),
    var(--surface);
}

.payment-concept-heading {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.payment-concept-heading .section-kicker {
  margin-bottom: 0;
}

.payment-summary-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 1.5rem;
  background: #17232e;
  color: #fff;
  padding: 1.5rem;
  box-shadow: 18px 18px 0 #b8a171;
}

.payment-summary-card span {
  color: #d7c99f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-summary-card strong {
  margin-top: 0.2rem;
  font-size: clamp(4rem, 10vw, 7rem);
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.payment-summary-card p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.payment-led-grid {
  gap: 0.8rem;
  margin-top: 3rem;
  background: transparent;
}

.page-variant-payment .payment-card {
  border: 1px solid var(--outline);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(23, 35, 46, 0.07);
}

.page-variant-payment .payment-card .payment-value {
  color: var(--gold-deep);
}

.page-variant-payment .payment-led-grid .payment-card strong {
  color: var(--ink);
}

.page-variant-payment .payment-led-grid .payment-card p {
  color: var(--slate);
}

.payment-route-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  border: 1px solid var(--outline);
  border-radius: 1.25rem;
  background: #fbfcfc;
  padding: 1.25rem;
}

.payment-route-bar p {
  margin: 0;
  color: var(--ink-soft);
}

.payment-context-grid {
  gap: 1rem;
  margin-top: 3rem;
  border: 0;
  background: transparent;
}

.page-variant-payment .proof-map,
.page-variant-payment .proof-info-card {
  overflow: hidden;
  border-radius: 1.5rem;
}

.payment-context-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-variant-payment .contact-section {
  background: #17232e;
}

.page-variant-payment .contact-layout,
.page-variant-payment .contact-trust-strip {
  border-radius: 1.5rem;
}

.page-variant-payment .form-intro {
  border-radius: 1.5rem 0 0 1.5rem;
  background: #d7c99f;
  color: #17232e;
}

.page-variant-payment .form-intro .eyebrow,
.page-variant-payment .form-intro .section-title,
.page-variant-payment .form-intro .section-copy,
.page-variant-payment .intro-points span {
  color: #17232e;
}

.page-variant-payment .form-panel-3d {
  border-radius: 1.5rem;
  border-color: #b8a171;
  box-shadow: 16px 16px 0 #b8a171, 0 28px 70px rgba(0, 0, 0, 0.24);
  transform: perspective(1500px) rotateY(2deg) translate3d(0, -8px, 0);
}

/* Variant C: community-first concept */
.page-variant-community {
  --surface: #f6f2ec;
  --surface-low: #ece5dc;
  --surface-container: #e1d6c9;
  --surface-high: #d6c8b8;
  --ink: #2b2622;
  --ink-soft: #514943;
  --slate: #70665e;
  --outline: #c9beb1;
  --gold: #ae8a66;
  --gold-deep: #6e513a;
  --shadow: 0 28px 80px rgba(43, 38, 34, 0.12);
}

.page-variant-community .topbar,
.page-variant-community .footer,
.page-variant-community .mobile-contact-bar {
  background: #2b2622;
}

.page-variant-community .topbar.is-scrolled {
  background: rgba(43, 38, 34, 0.98);
}

.page-variant-community .nav-only-cta,
.page-variant-community .btn,
.page-variant-community .proof-chip,
.page-variant-community .form-panel,
.page-variant-community .lead-popup-card,
.page-variant-community .lead-popup-close {
  border-radius: 0.85rem;
}

.hero-community {
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  background: #f6f2ec;
}

.hero-community .hero-bg {
  top: 5%;
  right: 3%;
  bottom: 5%;
  left: auto;
  width: 51%;
  height: 90%;
  border-radius: 46% 46% 2rem 2rem;
  object-position: 70% center;
  box-shadow: 0 30px 90px rgba(43, 38, 34, 0.2);
}

.hero-community .hero-shade {
  background: linear-gradient(90deg, #f6f2ec 0 45%, rgba(246, 242, 236, 0.96) 51%, rgba(246, 242, 236, 0) 70%);
}

.hero-community .hero-content {
  max-width: 700px;
  padding-top: 6rem;
}

.hero-community h1 {
  max-width: 650px;
  color: #2b2622;
  font-size: clamp(3.7rem, 6.4vw, 6.4rem);
  line-height: 0.92;
}

.hero-community .eyebrow {
  color: #765c45;
}

.hero-community p {
  max-width: 600px;
  color: #62574f;
}

.hero-community .btn-primary {
  border-color: #2b2622;
  background: #2b2622;
}

.hero-community .btn-ghost {
  border-color: #2b2622;
  background: transparent;
  color: #2b2622;
}

.hero-community .hero-fact-grid {
  gap: 0.75rem;
  border: 0;
  background: transparent;
}

.hero-community .hero-fact {
  border: 1px solid rgba(43, 38, 34, 0.18);
  border-radius: 4rem 4rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
}

.hero-community .hero-fact span,
.hero-community .hero-fact strong {
  color: #2b2622;
}

.community-concept {
  background:
    radial-gradient(circle at 5% 90%, rgba(174, 138, 102, 0.14), transparent 24rem),
    var(--surface);
}

.community-editorial-grid {
  display: grid;
  gap: 1.25rem;
}

.community-copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2rem;
  background: #2b2622;
  color: #fff;
  padding: 1.5rem;
}

.community-copy-panel .section-title,
.community-copy-panel .section-copy {
  color: #fff;
}

.community-copy-panel .section-copy {
  color: rgba(255, 255, 255, 0.7);
}

.community-copy-panel .eyebrow {
  color: #d6b995;
}

.community-stat-row {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
}

.community-stat-row span {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.community-stat-row strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.community-footnote {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.page-variant-community .proof-map {
  overflow: hidden;
  border-radius: 2rem 2rem 2rem 0;
}

.community-feature-board {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.25rem;
  border: 1px solid var(--outline);
  border-radius: 2rem 0 2rem 2rem;
  background: rgba(255, 255, 255, 0.54);
  padding: 1.5rem;
}

.community-feature-board h3 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.community-amenity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-content: center;
}

.page-variant-community .proof-chip {
  border-radius: 999px;
  background: #e8ded1;
  padding: 0.75rem 1rem;
  color: #2b2622;
}

.community-facts {
  gap: 1rem;
  margin-top: 1.25rem;
  border: 0;
  background: transparent;
}

.community-facts .proof-info-card {
  border: 1px solid var(--outline);
  border-radius: 1.5rem;
  background: #fcfaf7;
}

.page-variant-community .contact-section {
  background: #e7ded3;
}

.page-variant-community .contact-layout {
  border: 0;
  box-shadow: none;
}

.page-variant-community .form-intro {
  border-radius: 2rem 0 0 2rem;
  background: #2b2622;
}

.page-variant-community .form-panel-3d {
  border-radius: 0 2rem 2rem 0;
  border-color: #b8a38e;
  box-shadow: 14px 14px 0 #b8a38e, 0 28px 70px rgba(43, 38, 34, 0.16);
  transform: perspective(1500px) rotateY(-1.5deg) rotateX(0.6deg) translate3d(0, -8px, 0);
}

.page-variant-community .contact-trust-strip {
  border-radius: 0 0 2rem 2rem;
  background: rgba(255, 255, 255, 0.54);
}

.has-section-motion [data-animated-section] .payment-concept-heading,
.has-section-motion [data-animated-section] .payment-route-bar,
.has-section-motion [data-animated-section] .community-editorial-grid,
.has-section-motion [data-animated-section] .community-feature-board {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 720ms ease-out, translate 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-section-motion [data-animated-section].is-in-view .payment-concept-heading,
.has-section-motion [data-animated-section].is-in-view .payment-route-bar,
.has-section-motion [data-animated-section].is-in-view .community-editorial-grid,
.has-section-motion [data-animated-section].is-in-view .community-feature-board {
  opacity: 1;
  translate: 0 0;
}

@media (min-width: 1024px) {
  .payment-concept-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  }

  .payment-route-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .payment-route-bar p {
    max-width: 800px;
  }

  .payment-context-grid,
  .community-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-feature-board {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    padding: 2.5rem;
  }
}

@media (max-width: 699px) {
  .hero-payment,
  .hero-community {
    min-height: 650px;
    align-items: flex-end;
  }

  .hero-payment .hero-bg,
  .hero-community .hero-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    clip-path: none;
    object-position: 68% center;
  }

  .hero-payment .hero-shade {
    background:
      linear-gradient(0deg, rgba(23, 35, 46, 0.96) 0 55%, rgba(23, 35, 46, 0.22) 100%),
      linear-gradient(90deg, rgba(23, 35, 46, 0.76), transparent);
  }

  .hero-community .hero-shade {
    background:
      linear-gradient(0deg, rgba(246, 242, 236, 0.98) 0 58%, rgba(246, 242, 236, 0.12) 100%),
      linear-gradient(90deg, rgba(246, 242, 236, 0.45), transparent);
  }

  .hero-payment h1 {
    font-size: clamp(2.95rem, 13.5vw, 3.85rem);
  }

  .hero-community h1 {
    font-size: clamp(2.8rem, 12vw, 3.45rem);
  }

  .hero-payment .hero-content,
  .hero-community .hero-content {
    padding: 4rem 0 1.25rem;
  }

  .payment-summary-card {
    min-height: 210px;
    margin: 0 12px 12px 0;
    box-shadow: 12px 12px 0 #b8a171;
  }

  .payment-led-grid {
    margin-top: 1.5rem;
  }

  .payment-context-grid > .proof-map,
  .payment-context-grid > .proof-info-card,
  .community-facts > .proof-info-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .payment-context-grid .proof-map {
    min-height: 390px;
  }

  .page-variant-payment .form-intro,
  .page-variant-community .form-intro {
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .page-variant-payment .form-panel-3d,
  .page-variant-community .form-panel-3d {
    border-radius: 0 0 1.25rem 1.25rem;
    transform: none;
  }

  .page-variant-community .community-copy-panel,
  .page-variant-community .proof-map,
  .community-feature-board {
    border-radius: 1.25rem;
  }

  .community-copy-panel,
  .community-feature-board {
    padding: 1.25rem;
  }

  .community-editorial-grid .proof-map {
    min-height: 350px;
  }
}

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

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