:root {
  --bg: #09111d;
  --bg-soft: #0e1928;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --text: #eef2f7;
  --muted: #a7b2c4;
  --sand: #e7d8b0;
  --gold: #d9bc7b;
  --gold-strong: #f0c96a;
  --ink: #0d1726;
  --tint: #f5f1e8;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 181, 114, 0.18), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(52, 83, 133, 0.25), transparent 30%),
    linear-gradient(180deg, #09111d 0%, #0c1522 42%, #101b2b 100%);
  font-family: "Be Vietnam Pro", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(transparent 0, transparent 48%, rgba(255, 255, 255, 0.2) 49%, transparent 50%),
    linear-gradient(90deg, transparent 0, transparent 48%, rgba(255, 255, 255, 0.08) 49%, transparent 50%);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
  z-index: 1;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(9, 17, 29, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.main-nav a {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s ease;
}

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

.ghost-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
  font-weight: 600;
}

.ghost-btn {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.ghost-btn:hover,
.ghost-btn:focus-visible,
.primary-btn:hover,
.primary-btn:focus-visible,
.secondary-btn:hover,
.secondary-btn:focus-visible {
  transform: translateY(-2px);
}

.primary-btn {
  color: #0d1420;
  background: linear-gradient(135deg, #f3ddad 0%, #d7b56b 100%);
  box-shadow: 0 14px 30px rgba(215, 181, 107, 0.22);
}

.secondary-btn {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.primary-btn.small {
  min-height: 46px;
  padding: 0 18px;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
}

.mobile-menu {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: end;
  padding: 68px 0 64px;
  overflow: clip;
}

.hero-video,
.hero-overlay,
.hero-radial {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 17, 29, 0.2) 0%, rgba(9, 17, 29, 0.66) 36%, rgba(9, 17, 29, 0.94) 100%),
    linear-gradient(90deg, rgba(9, 17, 29, 0.88) 0%, rgba(9, 17, 29, 0.55) 50%, rgba(9, 17, 29, 0.76) 100%);
}

.hero-radial {
  filter: blur(30px);
}

.hero-radial-left {
  background: radial-gradient(circle at 25% 35%, rgba(238, 203, 127, 0.18), transparent 26%);
}

.hero-radial-right {
  background: radial-gradient(circle at 78% 20%, rgba(73, 110, 176, 0.22), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: end;
}

.eyebrow,
.kicker,
.card-badge,
.placeholder-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--sand);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.feature-copy h2,
.contact-copy h2 {
  margin: 20px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4.9vw, 5rem);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-main {
  max-width: 8ch;
}

.hero-title-sub {
  max-width: 12ch;
  margin-top: 18px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 0.34em;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: rgba(238, 242, 247, 0.9);
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(238, 242, 247, 0.88);
  font-size: 1.02rem;
}

.hero-actions,
.hero-quick,
.placeholder-actions,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-quick {
  margin-top: 22px;
}

.hero-quick a,
.contact-points a {
  color: var(--sand);
  border-bottom: 1px solid rgba(231, 216, 176, 0.3);
}

.hero-card,
.info-panel,
.distance-card,
.insight-card,
.destination-card,
.amenity-box,
.product-card,
.pricing-panel,
.gallery-card,
.faq-item,
.quick-contact-card,
.disclaimer-box {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-card {
  max-width: 430px;
  padding: 28px;
  justify-self: end;
  backdrop-filter: blur(24px);
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  margin-top: 18px;
}

.summary-grid span,
.spec-row span,
.price-row span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.summary-grid strong,
.spec-row strong,
.price-row strong,
.distance-card strong,
.product-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.hero-note,
.price-note,
.section-heading p,
.feature-copy p,
.location-copy p,
.mosaic-copy p,
.contact-copy p,
.quick-contact-card p,
.site-footer p {
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.stat-pill {
  padding: 18px 20px;
  border-radius: 20px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-pill span {
  display: block;
  color: var(--gold-strong);
  font-size: 0.9rem;
}

.stat-pill strong {
  display: block;
  margin-top: 8px;
}

.section {
  padding: 112px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 15% 0, rgba(217, 188, 123, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015));
}

.section-tint {
  color: #0f1722;
  background:
    radial-gradient(circle at top right, rgba(221, 188, 116, 0.14), transparent 20%),
    linear-gradient(180deg, #f4efe5 0%, #f7f3eb 100%);
}

.section-tint .section-heading p,
.section-tint .distance-card span,
.section-tint .location-copy p,
.section-tint .pricing-panel p,
.section-tint .policy-list li {
  color: #5f6775;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading h2,
.feature-copy h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  text-wrap: balance;
}

.editorial-grid,
.split-feature,
.contact-shell {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
}

.editorial,
.split-feature,
.contact-shell {
  align-items: center;
}

.info-panel {
  padding: 18px;
}

.info-panel img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-table {
  display: grid;
  gap: 16px;
}

.spec-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.split-feature {
  grid-template-columns: 0.92fr 1.08fr;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.proof-panel,
.video-panel {
  border-radius: var(--radius);
  box-shadow: 0 26px 56px rgba(30, 41, 59, 0.08);
}

.proof-panel {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(217, 188, 123, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 39, 61, 0.08);
}

.proof-panel h2,
.video-caption h3 {
  color: #0f1722;
}

.proof-panel p,
.video-caption p {
  color: #5f6775;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.proof-metric {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 39, 61, 0.08);
}

.proof-metric span {
  display: block;
  color: #8f6f2d;
  font-size: 1.05rem;
  font-weight: 700;
}

.proof-metric strong {
  display: block;
  margin-top: 8px;
  color: #0f1722;
  font-size: 0.98rem;
  line-height: 1.5;
}

.video-panel {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(24, 39, 61, 0.08);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #0d1726;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-caption {
  padding: 26px 28px 30px;
}

.video-caption h3 {
  margin: 18px 0 12px;
  font-size: 2rem;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.feature-list strong {
  color: var(--sand);
  font-size: 1.05rem;
}

.feature-media {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.insight-card {
  padding: 26px;
}

.insight-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(243, 221, 173, 0.12);
  color: var(--gold-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.insight-card h3 {
  margin: 18px 0 12px;
  font-size: 1.2rem;
}

.insight-card p,
.journey-step p,
.faq-item p {
  color: var(--muted);
}

.journey-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.destination-card {
  padding: 26px;
}

.destination-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(243, 221, 173, 0.12);
  color: var(--gold-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.destination-card h3 {
  margin: 18px 0 12px;
  font-size: 1.2rem;
}

.destination-card p,
.section-footnote {
  color: var(--muted);
}

.section-footnote {
  max-width: 860px;
  margin: 20px 0 0;
}

.journey-step {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-step strong {
  display: block;
  margin-bottom: 10px;
  color: var(--sand);
}

.stacked-card,
.mini-stack img {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.stacked-card img {
  min-height: 100%;
  object-fit: cover;
}

.mini-stack {
  display: grid;
  gap: 18px;
}

.connectivity-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.connectivity-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(24, 39, 61, 0.08);
}

.connectivity-card img {
  border-radius: 18px;
}

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

.distance-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(24, 39, 61, 0.08);
  box-shadow: 0 22px 40px rgba(42, 56, 76, 0.08);
}

.distance-card strong {
  font-size: 1.7rem;
  color: #0f1722;
}

.distance-card span {
  display: block;
  margin-top: 6px;
}

.location-copy {
  margin-top: 18px;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.mosaic-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.mosaic-card.large {
  min-height: 520px;
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 17, 29, 0.86) 100%);
}

.mosaic-copy h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.amenity-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.amenity-box {
  padding: 28px;
}

.amenity-box h3 {
  margin-top: 0;
  color: var(--sand);
}

.amenity-box ul,
.policy-list,
.quick-contact-card ul,
.tower-spec ul {
  padding-left: 18px;
  margin: 0;
}

.amenity-box li,
.policy-list li,
.quick-contact-card li,
.tower-spec li {
  margin: 10px 0;
}

.plan-tabs {
  margin-top: 12px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-button,
.switch-chip {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-button.active,
.switch-chip.active {
  color: #0f1722;
  border-color: transparent;
  background: linear-gradient(135deg, #f3ddad 0%, #d7b56b 100%);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.plan-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-layout img {
  border-radius: 18px;
  background: #fff;
}

.tower-spec {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.tower-spec h3 {
  margin-top: 0;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
}

.product-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

.product-card {
  padding: 24px;
}

.product-card span {
  color: var(--gold-strong);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.pricing-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(24, 39, 61, 0.08);
  box-shadow: 0 22px 40px rgba(42, 56, 76, 0.08);
}

.pricing-panel h3 {
  margin-top: 0;
  color: #0f1722;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.price-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 23, 34, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.portrait {
  grid-row: span 2;
}

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

.faq-item {
  padding: 0;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(24, 39, 61, 0.08);
  box-shadow: 0 22px 40px rgba(42, 56, 76, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 26px;
  font-weight: 700;
  color: #0f1722;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #8f6f2d;
}

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

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: #5f6775;
}

.contact-shell {
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-form-shell {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.form-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.form-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.benefit-pill {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-pill strong,
.benefit-pill span {
  display: block;
}

.benefit-pill strong {
  color: var(--sand);
}

.benefit-pill span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.native-form-panel,
.quick-contact-panel {
  display: none;
}

.native-form-panel.active,
.quick-contact-panel.active {
  display: block;
}

.form-head,
.lead-form,
.quick-contact-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lead-form {
  margin-top: 16px;
}

.form-head p,
.form-meta {
  color: var(--muted);
}

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

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.field-group label {
  color: var(--sand);
  font-weight: 600;
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: rgba(167, 178, 196, 0.82);
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(243, 221, 173, 0.55);
  box-shadow: 0 0 0 4px rgba(243, 221, 173, 0.08);
  background: rgba(255, 255, 255, 0.07);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.form-meta {
  margin: 16px 0 0;
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid transparent;
}

.form-status.is-pending {
  color: var(--sand);
  background: rgba(243, 221, 173, 0.08);
  border-color: rgba(243, 221, 173, 0.2);
}

.form-status.is-success {
  color: #d8ffe9;
  background: rgba(38, 179, 114, 0.14);
  border-color: rgba(38, 179, 114, 0.28);
}

.form-status.is-error {
  color: #ffd8d8;
  background: rgba(233, 93, 93, 0.14);
  border-color: rgba(233, 93, 93, 0.28);
}

.form-target {
  width: 0;
  height: 0;
  border: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.lead-form .primary-btn[disabled] {
  opacity: 0.72;
  pointer-events: none;
}

.quick-contact-card h3 {
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
}

.disclaimer-box {
  margin-top: 24px;
  padding: 18px 20px;
}

.site-footer {
  padding: 36px 0 110px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 10, 17, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 24px;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: var(--sand);
}

.site-footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.82);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 35;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(7, 14, 24, 0.86);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.sticky-cta a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.sticky-cta a:nth-child(1),
.sticky-cta a:nth-child(2) {
  background: rgba(255, 255, 255, 0.06);
}

.sticky-cta a:nth-child(3) {
  background: linear-gradient(135deg, #f3ddad 0%, #d7b56b 100%);
  color: #0d1726;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .main-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

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

  .hero-grid,
  .editorial-grid,
  .split-feature,
  .proof-layout,
  .connectivity-grid,
  .contact-shell,
  .plan-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-copy h1 {
    max-width: 11.5ch;
  }

  .hero-stats,
  .product-grid,
  .pricing-grid,
  .distance-grid,
  .proof-grid,
  .insight-grid,
  .destination-grid,
  .form-benefits,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-media,
  .amenity-columns,
  .journey-strip {
    grid-template-columns: 1fr;
  }

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

  .mosaic-card.large {
    grid-column: span 2;
  }

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

  .gallery-card.wide,
  .gallery-card.portrait {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 72px;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 10.4vw, 3.1rem);
    line-height: 0.98;
  }

  .hero-title-main {
    max-width: 7ch;
  }

  .hero-title-sub {
    max-width: 100%;
    margin-top: 12px;
    font-size: 0.44em;
    line-height: 1.18;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-card {
    max-width: none;
    padding: 22px;
  }

  .hero-actions,
  .hero-quick,
  .placeholder-actions,
  .contact-points {
    flex-direction: column;
  }

  .ghost-btn,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .summary-grid,
  .hero-stats,
  .distance-grid,
  .proof-grid,
  .insight-grid,
  .destination-grid,
  .form-benefits,
  .faq-grid,
  .product-grid,
  .pricing-grid,
  .gallery-grid,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-card.large {
    grid-column: auto;
  }

  .proof-panel,
  .video-caption {
    padding: 22px;
  }

  .video-caption h3 {
    font-size: 1.6rem;
  }

  .section {
    padding: 84px 0;
  }

  .contact-form-shell,
  .form-head,
  .lead-form,
  .quick-contact-card {
    padding: 22px;
  }

  .lead-grid,
  .quick-contact-card {
    min-height: auto;
  }

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

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: none;
    gap: 6px;
    justify-content: stretch;
  }

  .sticky-cta a {
    flex: 1;
    padding: 0 10px;
    font-size: 0.84rem;
  }
}
