/* ========== Design Tokens ========== */
:root {
  --navy: #071b33;
  --navy-soft: #122a46;
  --navy-mid: #1a3a5c;
  --gold: #c9a24d;
  --gold-hover: #b8923f;
  --gold-soft: #e8d6a8;
  --gold-tint: #f7f1e3;
  --white: #ffffff;
  --soft: #f5f7fa;
  --cream: #f7f4ed;
  --grey-bg: #eef1f5;
  --grey-border: #dde3eb;
  --charcoal: #2a3340;
  --muted: #5c6775;
  --error: #c0392b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 32px rgba(7, 27, 51, 0.1);
  --shadow-lg: 0 18px 48px rgba(7, 27, 51, 0.14);
  --max: 1180px;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ========== Reset ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--soft);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input {
  font: inherit;
}

svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========== Layout ========== */
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4.25rem 0;
  position: relative;
}

.section-soft {
  background: var(--soft);
}

.section-grey {
  background: var(--grey-bg);
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  background:
    radial-gradient(ellipse 80% 70% at 90% 10%, rgba(201, 162, 77, 0.18), transparent 55%),
    linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 55%, #0a243f 100%);
  color: var(--white);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.section-label-gold {
  color: var(--gold-soft);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.28;
}

.section-title-light {
  color: var(--white);
}

.section-lead,
.section-text {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 560px;
  font-size: 1.02rem;
}

.section-text-light {
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
}

.section-cta {
  text-align: center;
  margin-top: 2.25rem;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  min-height: 48px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(180deg, #d4af61 0%, var(--gold) 100%);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(201, 162, 77, 0.28);
}

.btn-gold:hover {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-hover) 100%);
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(7, 27, 51, 0.18);
}

.btn-navy:hover {
  background: var(--navy-soft);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(7, 27, 51, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.55);
}

.btn-full {
  width: 100%;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 1.75rem 0 0;
  overflow: hidden;
  background: linear-gradient(160deg, #f8f5ee 0%, #ffffff 38%, #eef3f8 72%, #f4eee3 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 162, 77, 0.16), transparent 32%),
    radial-gradient(circle at 12% 82%, rgba(7, 27, 51, 0.08), transparent 40%),
    linear-gradient(135deg, transparent 48%, rgba(201, 162, 77, 0.05) 48.5%, transparent 49%),
    linear-gradient(45deg, transparent 62%, rgba(7, 27, 51, 0.04) 62.5%, transparent 63%);
  opacity: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 8%;
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: 28% 72% 40% 60% / 55% 35% 65% 45%;
  transform: rotate(12deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: start;
  padding-bottom: 2.5rem;
}

.hero-logo {
  margin-bottom: 1.1rem;
  width: 148px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 4.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.32;
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.hero-solution {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 1.04rem;
  max-width: 34rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.badge {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(7, 27, 51, 0.1);
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(7, 27, 51, 0.04);
}

.badge-gold {
  background: var(--gold-tint);
  border-color: rgba(201, 162, 77, 0.45);
  color: var(--navy);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-strip {
  position: relative;
  z-index: 1;
  background: var(--navy);
  border-top: 3px solid var(--gold);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  padding: 1rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ========== Forms ========== */
.hero-form-wrap,
#enquiry-form {
  scroll-margin-top: 1rem;
}

.lead-form {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(7, 27, 51, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 1.65rem 1.4rem 1.5rem;
  overflow: hidden;
}

.form-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #e0c47a, var(--gold));
}

.lead-form h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.15rem;
}

.form-group {
  margin-bottom: 0.95rem;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-group input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  background: #fafbfc;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.2);
}

.form-group input.is-invalid {
  border-color: var(--error);
}

.error-msg {
  display: block;
  min-height: 1.1em;
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 0.25rem;
}

/* ========== Split / Overview ========== */
.split-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-copy .section-text {
  max-width: 34rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.highlight-card {
  background: var(--white);
  border: 1px solid rgba(7, 27, 51, 0.06);
  border-radius: var(--radius);
  padding: 1.15rem 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.highlight-card-gold {
  background: linear-gradient(160deg, #fff9ed, #f3e6c8);
  border-color: rgba(201, 162, 77, 0.35);
}

.highlight-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.highlight-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ========== Location ========== */
.location-block {
  max-width: 820px;
}

.location-chips,
.map-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.loc-chip {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(201, 162, 77, 0.35);
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.loc-chip-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(7, 27, 51, 0.05);
}

/* ========== Connectivity Cards ========== */
.card-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(7, 27, 51, 0.05);
  border-radius: var(--radius);
  padding: 1.45rem 1.3rem;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.22s, box-shadow 0.22s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3e7c8, var(--gold));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.7rem;
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.25);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--navy);
}

.info-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== Site Reality ========== */
.site-media {
  display: grid;
  gap: 0.9rem;
}

.site-media-col {
  display: grid;
  gap: 0.9rem;
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-visual {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 1.25rem;
}

.media-visual-1 {
  background:
    linear-gradient(160deg, rgba(7, 27, 51, 0.55), rgba(7, 27, 51, 0.75)),
    linear-gradient(135deg, #1a3a5c, #0d2744);
  min-height: 200px;
}

.media-visual-2 {
  background:
    linear-gradient(160deg, rgba(7, 27, 51, 0.5), rgba(201, 162, 77, 0.35)),
    linear-gradient(135deg, #243f63, #8a7340);
}

.media-visual-3 {
  background:
    linear-gradient(160deg, rgba(7, 27, 51, 0.55), rgba(7, 27, 51, 0.7)),
    linear-gradient(135deg, #2a4568, #16324f);
}

.media-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.media-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(7, 27, 51, 0.85));
  text-align: left;
}

/* ========== Amenities ========== */
.amenity-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 27, 51, 0.05);
  transition: transform 0.22s, box-shadow 0.22s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.amenity-visual {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.amenity-visual-1 {
  background: linear-gradient(145deg, #16324f 0%, #2a4d72 50%, #8f7a45 100%);
}

.amenity-visual-2 {
  background: linear-gradient(145deg, #0f2742 0%, #1e3f63 45%, #c9a24d 120%);
}

.amenity-visual-3 {
  background: linear-gradient(145deg, #122a46 0%, #33587e 60%, #a89052 110%);
}

.amenity-icon {
  width: 48px;
  height: 48px;
}

.amenity-body {
  padding: 1.25rem 1.25rem 1.4rem;
  flex: 1;
}

.gold-line {
  width: 42px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.amenity-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.amenity-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ========== Video ========== */
.video-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.video-frame {
  max-width: 280px;
  margin-inline: auto;
  width: 100%;
}

.video-placeholder {
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(circle at 50% 35%, rgba(201, 162, 77, 0.18), transparent 45%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  padding: 1.5rem;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 1.1rem 1.15rem 1.25rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.4);
}

.video-title {
  font-size: 1.05rem;
}

.video-placeholder small {
  margin-top: 0.45rem;
  color: var(--gold-soft);
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 0.8rem;
}

.video-copy p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 34rem;
}

.video-copy-mobile {
  display: block;
}

.video-label-desktop,
.video-title-desktop {
  display: none;
}

.feature-points {
  margin-bottom: 1.5rem;
}

.feature-points li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: var(--charcoal);
  font-weight: 500;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-points-light li {
  color: rgba(255, 255, 255, 0.9);
}

/* ========== Map ========== */
.map-chips {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.map-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(7, 27, 51, 0.06);
  background: var(--white);
}

.map-card-inner {
  aspect-ratio: 16 / 9;
  min-height: 220px;
  background:
    linear-gradient(160deg, rgba(7, 27, 51, 0.04), rgba(201, 162, 77, 0.08)),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(7, 27, 51, 0.04) 40px),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(7, 27, 51, 0.04) 40px),
    linear-gradient(145deg, #e8eef5, #dfe7f0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--navy);
}

.map-pin {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.map-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

.map-card-inner small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ========== Price ========== */
.section-price {
  background:
    radial-gradient(ellipse 70% 80% at 15% 20%, rgba(201, 162, 77, 0.2), transparent 50%),
    linear-gradient(150deg, var(--navy) 0%, #0c2542 50%, #132f4d 100%);
  padding: 4.5rem 0;
}

.price-panel {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 162, 77, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.price-main {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin: 0.5rem 0 1.5rem;
}

.price-main span {
  font-size: 0.42em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.price-meta {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.price-meta-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.price-meta-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.2rem;
}

.price-meta-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}

.price-note {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.6rem;
}

/* ========== Gallery ========== */
.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.gallery-visual {
  position: relative;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  transition: transform 0.35s;
}

.gallery-item:hover .gallery-visual {
  transform: scale(1.04);
}

.gallery-icon {
  width: 34px;
  height: 34px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.gallery-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.7rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
  background: linear-gradient(transparent, rgba(7, 27, 51, 0.88));
}

.gallery-v1 { background: linear-gradient(145deg, #16324f, #3d5f86); }
.gallery-v2 { background: linear-gradient(145deg, #1a334f, #8a7340); }
.gallery-v3 { background: linear-gradient(145deg, #0f2742, #2f4f74); }
.gallery-v4 { background: linear-gradient(145deg, #1d3b5c, #a08a4d); }
.gallery-v5 { background: linear-gradient(145deg, #122a46, #456486); }
.gallery-v6 { background: linear-gradient(145deg, #183553, #7d6a3d); }
.gallery-v7 { background: linear-gradient(145deg, #102843, #c9a24d); }
.gallery-v8 { background: linear-gradient(145deg, #1a3655, #4a6788); }

/* ========== Lightbox ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 27, 51, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  width: min(100%, 520px);
}

.lightbox-visual {
  min-height: 280px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1a3a5c, #0d2744);
  border: 2px solid var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  padding: 1.5rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

/* ========== Final CTA ========== */
.section-final {
  background:
    radial-gradient(ellipse 60% 70% at 85% 30%, rgba(201, 162, 77, 0.18), transparent 55%),
    linear-gradient(155deg, var(--navy) 0%, #0d2744 55%, #152f4c 100%);
  padding: 4.5rem 0;
}

.final-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.lead-form-final {
  max-width: 440px;
  width: 100%;
  margin-inline: auto;
}

/* ========== Footer ========== */
.footer {
  background: #051525;
  color: rgba(255, 255, 255, 0.85);
  padding: 2.75rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-logo {
  width: 108px;
  margin-bottom: 0.85rem;
  background: var(--white);
  padding: 0.55rem;
  border-radius: 10px;
}

.footer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========== Sticky Mobile CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d4af61, var(--gold));
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  min-height: 56px;
  box-shadow: 0 -6px 24px rgba(7, 27, 51, 0.18);
}

/* ========== Tablet+ ========== */
@media (min-width: 640px) {
  .trust-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-meta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .sticky-cta {
    display: none;
  }

  .section {
    padding: 5.25rem 0;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.75rem;
    align-items: center;
    padding-bottom: 3rem;
  }

  .hero-logo {
    width: 168px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .site-media {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .media-card-tall .media-visual {
    min-height: 100%;
  }

  .site-media-col {
    height: 100%;
  }

  .site-media-col .media-card,
  .site-media-col .media-visual {
    height: 100%;
  }

  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-layout {
    grid-template-columns: 260px 1fr;
    gap: 3.5rem;
  }

  .video-frame {
    margin-inline: 0;
  }

  .video-copy-mobile {
    display: none;
  }

  .video-label-desktop,
  .video-title-desktop {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-visual {
    min-height: 180px;
  }

  .final-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .lead-form-final {
    margin-inline: 0;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lead-form {
    padding: 1.85rem 1.65rem 1.7rem;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-row: span 1;
  }

  .gallery-visual {
    min-height: 190px;
  }

  .gallery-item:nth-child(odd) .gallery-visual {
    min-height: 210px;
  }
}

@media (max-width: 380px) {
  .hero-actions .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== LOCATION + GROWTH SECTION ========== */

.section-navy {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 77, 0.14), transparent 34%),
    linear-gradient(135deg, #071b33 0%, #0b2746 55%, #071b33 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-navy::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201, 162, 77, 0.16);
  border-radius: 50%;
  right: -160px;
  top: -140px;
}

.section-navy::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(201, 162, 77, 0.07);
  filter: blur(80px);
  left: 8%;
  bottom: -100px;
}

.location-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
}

.section-label-gold {
  color: #d8b45c;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.section-title-light {
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 26px;
}

.location-text {
  max-width: 800px;
}

.location-text p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.loc-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #ffffff;
  color: #071b33;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.location-highlight {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 20px;
  padding: 20px 18px;
  backdrop-filter: blur(8px);
  min-height: 130px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.location-highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 77, 0.75);
  background: rgba(255, 255, 255, 0.11);
}

.location-highlight h3 {
  color: #d8b45c;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 800;
}

.location-highlight p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .location-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-text p {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .section-navy {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .location-content {
    max-width: 100%;
  }

  .section-title-light {
    font-size: 34px;
    line-height: 1.15;
  }

  .location-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .location-chips {
    gap: 10px;
  }

  .loc-chip {
    padding: 10px 16px;
    font-size: 14px;
  }

  .location-highlights {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .location-highlight {
    min-height: auto;
    padding: 18px;
  }
}

.project-points {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}

.project-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #5f6b7a;
  font-size: 18px;
  line-height: 1.7;
}

.project-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 9px;
  height: 9px;
  background: #c9a24d;
  border-radius: 50%;
}
