:root {
  --ink: #1a130d;
  --text: #4f463d;
  --heading: #271d15;
  --gold: #bc955f;
  --gold-deep: #906b3f;
  --sand: #f4ecdf;
  --surface: #fffdf9;
  --surface-soft: #f6ecdd;
  --edge: #dfcfb9;
  --footer-text: #eadcc7;
  --shadow-soft: 0 22px 42px rgba(20, 14, 9, 0.16);
  --shadow-card: 0 16px 34px rgba(24, 16, 10, 0.1);
  --max-width: 1180px;
  --header-height: 78px;
  --header-total-height: var(--header-height);
  --fixed-form-width: 372px;
  --section-pad: 92px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.68;
  background:
    radial-gradient(circle at 12% 10%, rgba(188, 149, 95, 0.18), transparent 40%),
    radial-gradient(circle at 90% 8%, rgba(149, 114, 67, 0.12), transparent 38%),
    linear-gradient(180deg, #fffdf8 0%, #f8f1e5 100%);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.14;
}

h1 {
  font-size: clamp(42px, 5vw, 64px);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(25px, 2.6vw, 32px);
  margin-bottom: 10px;
}

p,
li,
a,
input,
button,
select {
  font-size: 17px;
}

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

.container {
  width: min(var(--max-width), 100% - 54px);
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.bg-light {
  background: linear-gradient(180deg, #f8f1e6 0%, #fcf8f2 100%);
  border-top: 1px solid #ebdecb;
  border-bottom: 1px solid #ebdecb;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 247, 239, 0.94);
  border-bottom: 1px solid rgba(144, 107, 63, 0.25);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header .nav-wrap {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-left: 0;
  padding-right: 20px;
}

.header-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.top-nav {
  display: flex;
  margin-left: auto;
  gap: 22px;
}

.top-nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #382b1f;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.top-nav a:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-gold {
  background: linear-gradient(120deg, #c5a06d 0%, #a67e4b 100%);
  color: #fff;
  border: 1px solid #a67e4b;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.icon-btn {
  min-width: 58px;
  height: 40px;
  border: 1px solid rgba(144, 107, 63, 0.7);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  padding: 0 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.9);
}

.page-shell {
  position: relative;
  padding-right: var(--fixed-form-width);
  overflow: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-copy {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 25px 27px;
  border-radius: 0;
  border: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0) 50%
  );
  box-shadow: none;
  max-width: 650px;
  width: 50vw;
  backdrop-filter: blur(4px);
  font-family: "Lato", "Segoe UI", sans-serif;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
  color: #ffffff;
  background: rgba(8, 8, 8, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 600;
}

.hero-copy h1 {
  margin: 0 0 10px;
  color: #ffffff;
  letter-spacing: 0.02em;
  font-size: 31px;
  font-weight: 600;
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid rgba(188, 149, 95, 0.9);
  background: rgba(8, 8, 8, 0.55);
  box-shadow: 0 8px 20px rgba(10, 7, 4, 0.28);
}

.lead {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #f5f5f5;
  line-height: 1.6;
}

.hero-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.hero-quick div {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: rgba(8, 8, 8, 0.55);
  padding: 12px;
}

.quick-label {
  margin: 0 0 3px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 700;
  color: #e0e0e0;
}

.quick-value {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.26s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(29, 20, 13, 0.16);
}

.btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.btn-primary {
  background: linear-gradient(120deg, #c7a16d 0%, #a17642 100%);
  border-color: #a17642;
  color: #fff;
}

.hero .cta-row .btn-primary {
  border-color: #000000;
}

.btn-outline {
  border-color: rgba(255, 243, 222, 0.62);
  color: #fff4df;
  background: rgba(255, 255, 255, 0.06);
}

.btn-brochure {
  position: relative;
  isolation: isolate;
  border-color: rgba(226, 199, 155, 0.85);
  background: linear-gradient(120deg, rgba(53, 37, 25, 0.82), rgba(22, 16, 11, 0.94));
  color: #f8ead2;
  overflow: hidden;
}

.btn-brochure::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -38%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 233, 189, 0.55), transparent);
  transform: skewX(-20deg);
  transition: transform 0.45s ease;
  pointer-events: none;
}

.btn-brochure:hover::before {
  transform: translateX(420%) skewX(-20deg);
}

.btn-brochure:hover {
  border-color: #e6c286;
  color: #fff6e6;
}

.lead-form {
  position: fixed;
  top: var(--header-total-height);
  right: 0;
  bottom: 0;
  width: var(--fixed-form-width);
  height: calc(100vh - var(--header-total-height));
  z-index: 35;
  border-left: 1px solid rgba(185, 146, 90, 0.48);
  background:
    radial-gradient(circle at top right, rgba(232, 196, 149, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(244, 232, 212, 0.96) 100%);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(191, 154, 101, 0.28);
  pointer-events: none;
}

.lead-form > * {
  position: relative;
  z-index: 1;
}

.lead-form-header h3 {
  margin: 0 0 3px;
  font-size: 32px;
  letter-spacing: 0.02em;
}

.lead-form-header p {
  margin: 0;
  font-size: 13px;
  color: #5e4a36;
}

.form-contact-lines {
  margin: 0;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(142, 109, 66, 0.22);
  display: grid;
  gap: 6px;
}

.form-contact-lines a {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #473726;
  border: 1px solid rgba(142, 109, 66, 0.24);
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.78);
}

.lead-capture-form,
.modal-lead-form {
  display: grid;
  gap: 7px;
}

.lead-form label,
.modal-lead-form label {
  display: block;
  font-weight: 700;
  color: #433225;
  margin: 2px 0 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.modal-lead-form input {
  width: 100%;
  border: 1px solid rgba(142, 109, 66, 0.36);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.94);
  padding: 10px 12px;
  min-height: 42px;
  color: #3b3026;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.modal-lead-form input:focus {
  outline: 0;
  border-color: #b08a58;
  box-shadow: 0 0 0 3px rgba(183, 145, 93, 0.2);
}

.lead-form input:invalid:focus,
.modal-lead-form input:invalid:focus {
  border-color: #a9483a;
  box-shadow: 0 0 0 3px rgba(169, 72, 58, 0.18);
}

.full {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 2px 0 0;
  font-size: 12px;
  color: #6d5640;
}

.form-disclaimer {
  margin: 8px 0 0;
  font-size: 12px;
  color: #5e4a36;
  line-height: 1.45;
  opacity: 0.95;
}

/* Nudge the sidebar (right-fixed) form disclaimer up slightly to prevent clipping */
#sidebarLeadForm .form-disclaimer {
  margin-top: 6px; /* 2px up from default */
}

/* small helper to ensure header logo link doesn't affect layout */
.header-logo-link {
  display: inline-block;
}

/* Make privacy link within form disclaimers stand out and remove footer bullet */
.form-disclaimer .footer-link {
  display: inline;
  margin: 0;
  padding-left: 0;
  position: static;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 11px; /* reduced size per request */
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-disclaimer .footer-link::before {
  display: none;
}

.form-feedback {
  margin: 2px 0 0;
  min-height: 18px;
  font-size: 12px;
  color: #6d5640;
}

.form-feedback.is-success {
  color: #2f6c43;
}

.form-feedback.is-error {
  color: #9d3e31;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.46);
  border: 1px solid rgba(240, 219, 186, 0.4);
  border-radius: 50%;
  z-index: 50;
  animation: whatsappPulse 1.6s ease-in-out infinite;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: stretch;
}

.media-block,
.gallery-slide {
  border: 1px solid rgba(142, 109, 66, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
}

.media-block {
  height: 520px;
  box-shadow: var(--shadow-card);
  background: #e9dcc8;
}

.media-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

#overview .split {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

#overview .media-block {
  border-radius: 18px;
  border-color: rgba(142, 109, 66, 0.28);
  box-shadow: 0 20px 38px rgba(30, 22, 14, 0.14);
}

#overview .overview-copy {
  padding: 10px 0;
}

#overview .overview-copy h2 {
  margin-bottom: 16px;
}

#overview .overview-lead {
  font-size: 19px;
  font-weight: 600;
  color: #2f261d;
  margin-bottom: 16px;
}

#overview .overview-highlights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#overview .highlight-box {
  padding: 18px 16px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 253, 249, 1), rgba(250, 243, 233, 0.9));
  border: 1px solid rgba(142, 109, 66, 0.18);
  box-shadow: 0 10px 22px rgba(31, 23, 15, 0.06);
  transition: all 0.3s ease;
}

#overview .highlight-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(31, 23, 15, 0.1);
}

#overview .highlight-value {
  display: block;
  font-weight: 700;
  font-size: 17px;
  color: #8e6d42;
  margin-bottom: 4px;
}

#overview .highlight-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a4a39;
}

.highlight-section {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.highlight-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url("g2.webp");
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  z-index: 2;
}

.highlight-content {
  position: relative;
  z-index: 3;
}

.section-title.light {
  text-align: center;
  color: #fff;
  margin-bottom: 42px;
}

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

.highlight-card {
  padding: 24px 22px;
  border-radius: var(--radius);
  backdrop-filter: blur(9px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
}

.highlight-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #e0be86;
}

.highlight-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #ece4d8;
}

#plans {
  background: var(--surface);
  padding-top: calc(var(--section-pad) * 0.7);
  padding-bottom: calc(var(--section-pad) * 0.7);
}

.plans-title {
  text-align: center;
  margin-bottom: 34px;
}

.plans-box {
  position: relative;
  min-height: 300px;
}

.plans-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.plan-tile {
  width: 230px;
  height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(183, 145, 93, 0.5);
  box-shadow: var(--shadow-card);
}

.plan-tile::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 6, 4, 0.75) 100%);
  z-index: 1;
}

.plan-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px);
  transition: transform 0.45s ease;
}

.plan-tile:hover img {
  transform: scale(1.07);
  filter: blur(10px);
}

.tile-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 12px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f2dfc1;
  text-transform: uppercase;
  font-size: 12px;
  z-index: 3;
}

.plan-tile-cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(235, 205, 156, 0.85);
  background: linear-gradient(120deg, rgba(200, 159, 98, 0.3), rgba(29, 20, 13, 0.8));
  color: #fff0d6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}

.plan-expanded {
  display: none;
  position: relative;
  animation: fadeIn 0.4s ease;
}

.plan-expanded-inner {
  display: flex;
  min-height: 308px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1b1714;
  border: 1px solid rgba(212, 176, 106, 0.3);
}

.expanded-image {
  flex: 1;
}

.expanded-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px);
  transform: scale(1.04);
}

.expanded-content {
  flex: 1;
  padding: 34px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expanded-content h3 {
  color: #ddb777;
  margin-bottom: 14px;
}

.expanded-content p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #f5ebdc;
  white-space: pre-line;
}

.expanded-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.back-arrow {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  background: #d4b06a;
  color: #1b130d;
  font-size: 24px;
  font-weight: 700;
  width: 40px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(212, 176, 106, 0.5);
}

.plans-price-wrap {
  margin-top: 22px;
  border: 1px solid rgba(142, 109, 66, 0.24);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.86), rgba(245, 235, 220, 0.7));
}

.plans-price-title {
  margin: 0;
  padding: 14px 18px;
  font-size: 24px;
  color: #2f2419;
  border-bottom: 1px solid rgba(142, 109, 66, 0.2);
}

.plans-price-table-wrap {
  width: 100%;
}

.plans-price-table {
  width: 100%;
  border-collapse: collapse;
}

.plans-price-table th,
.plans-price-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(142, 109, 66, 0.16);
}

.plans-price-table th {
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #4c3a29;
  background: rgba(221, 190, 143, 0.16);
}

.plans-price-table td {
  color: #2f2419;
  font-size: 15px;
  font-weight: 600;
}

.plans-price-table tr:last-child td {
  border-bottom: 0;
}

.price-check-btn {
  min-width: 132px;
  justify-content: center;
  padding-inline: 14px;
}

.amenities-section {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.amenities-bg {
  position: absolute;
  inset: 0;
  background-image: url("23.03.2024_1855055434_L-Azur_Image-Resize_1000X480_SN5.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.03);
}

.amenities-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.77));
  z-index: 2;
}

.amenities-content {
  position: relative;
  z-index: 3;
}

.amenities-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.amenity-group {
  padding: 28px 26px;
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 176, 106, 0.3);
  transition: all 0.35s ease;
}

.amenity-group:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.amenity-group h3 {
  font-size: 24px;
  color: #e2bf88;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.amenity-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-group li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 11px;
  font-size: 15px;
  color: #f3ece3;
}

.amenity-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #d4b06a;
  border-radius: 50%;
}

.location-advantage {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(183, 145, 93, 0.2), transparent 42%),
    radial-gradient(circle at 80% 10%, rgba(169, 133, 85, 0.15), transparent 40%),
    linear-gradient(135deg, #ebcca0 0%, #cfa66f 100%);
  border: 1px solid rgba(142, 109, 66, 0.25);
  overflow: hidden;
}

.location-advantage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(57, 44, 30, 0.06) 1px, transparent 1px),
    linear-gradient(210deg, rgba(57, 44, 30, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.44;
  pointer-events: none;
}

.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  grid-template-areas:
    "header header"
    "map list";
  gap: 22px;
  align-items: start;
}

.loc-header {
  grid-area: header;
  text-align: center;
}

.loc-title {
  margin: 0;
}

.loc-map-card {
  grid-area: map;
  border: 1px solid rgba(142, 109, 66, 0.32);
  border-radius: var(--radius);
  overflow: hidden;
}

.loc-visual {
  position: relative;
  width: 100%;
  min-height: 480px;
}

.loc-visual-pane {
  position: absolute;
  inset: 0;
  display: none;
}

.loc-visual-pane.active {
  display: block;
}

.loc-visual-pane img,
.loc-visual-pane iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.loc-toggle-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.7), rgba(244, 230, 209, 0.56));
  color: #2b2017;
  border: 1px solid rgba(61, 47, 34, 0.28);
  box-shadow: 0 10px 28px rgba(31, 23, 15, 0.18);
  font-size: 11px;
  letter-spacing: 0.08em;
  border-radius: 999px;
}

.loc-toggle-btn:hover {
  background: linear-gradient(135deg, rgba(45, 34, 24, 0.87), rgba(61, 47, 34, 0.72));
  color: #fff;
}

.loc-connectivity-card {
  grid-area: list;
  border: 1px solid rgba(58, 44, 31, 0.2);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-note {
  margin: 0 0 10px;
  color: #584838;
}

.connectivity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(56, 42, 30, 0.22);
  border-bottom: 1px solid rgba(56, 42, 30, 0.22);
}

.connectivity-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 8px;
  border-bottom: 1px solid rgba(56, 42, 30, 0.12);
}

.connectivity-item:last-child {
  border-bottom: none;
}

.connect-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(56, 42, 30, 0.35);
  background: rgba(255, 250, 241, 0.85);
  mask-size: 22px 22px;
  mask-repeat: no-repeat;
  mask-position: center;
}

.connect-meta {
  display: grid;
  gap: 2px;
}

.connect-name {
  font-weight: 700;
  color: #2f2419;
  font-size: 15px;
}

.connect-time {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5e4a36;
}

.connect-distance {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  color: #2f2419;
}

.icon-hospital .connect-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M11 2h2v5h5v2h-5v5h-2V9H6V7h5V2z'/%3E%3Cpath d='M4 13h16v9H4z'/%3E%3C/svg%3E");
  background-color: #2f2419;
}

.icon-plane .connect-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 00-3 0V9l-8 5v2l8-2.5V20l-2 1.5V23l3-1 3 1v-1.5L13 20v-6.5z'/%3E%3C/svg%3E");
  background-color: #2f2419;
}

.icon-train .connect-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M7 2h10a3 3 0 013 3v9a3 3 0 01-3 3l2 2v1h-2l-2.5-3h-5L7 20H5v-1l2-2a3 3 0 01-3-3V5a3 3 0 013-3zm0 2a1 1 0 00-1 1v6h12V5a1 1 0 00-1-1zm2 14a1 1 0 100-2 1 1 0 000 2zm6 0a1 1 0 100-2 1 1 0 000 2z'/%3E%3C/svg%3E");
  background-color: #2f2419;
}

.icon-road .connect-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M10 2h4l2 20h-2l-1-8h-2l-1 8H8z'/%3E%3Cpath d='M12 5h-1l-.5 4h3L13 5z'/%3E%3C/svg%3E");
  background-color: #2f2419;
}

.btn-map {
  align-self: flex-start;
  background: #f7f0e5;
  color: #2e2419;
  border-color: #3a2c1f;
}

.btn-map:hover {
  background: #2e2419;
  color: #f7f0e5;
}

.gallery-section {
  background: linear-gradient(180deg, #f7f0e5 0%, #fbf7f1 100%);
  border-top: 1px solid rgba(142, 109, 66, 0.18);
  border-bottom: 1px solid rgba(142, 109, 66, 0.18);
}

.gallery-shell {
  display: grid;
  gap: 18px;
}

.gallery-header {
  text-align: center;
}

.gallery-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(142, 109, 66, 0.35);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 11px;
  color: #3a2c1f;
}

.gallery-title {
  margin: 12px 0 10px;
}

.gallery-rule {
  width: 120px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, #c09a66 50%, transparent 100%);
}

.gallery-frame {
  position: relative;
  border: 1px solid rgba(142, 109, 66, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 640px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(212, 176, 106, 0.35);
  background: rgba(255, 248, 238, 0.54);
  color: #3a2c1f;
  font-size: 26px;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.gallery-nav:hover {
  background: linear-gradient(135deg, #f9edd9, #f1dfc2);
  color: #2a211a;
  box-shadow: 0 10px 20px rgba(24, 16, 10, 0.18);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.gallery-dots {
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(131, 100, 62, 0.45);
  background: rgba(208, 174, 122, 0.26);
  cursor: pointer;
}

.gallery-dot.active {
  background: #b78648;
  border-color: #9f6f36;
}

.gallery-counter {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f3c2a;
  font-weight: 700;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% -10%, rgba(191, 149, 91, 0.26), transparent 36%),
    radial-gradient(circle at 95% 10%, rgba(191, 149, 91, 0.14), transparent 34%),
    linear-gradient(180deg, #1b130d 0%, #0f0a06 100%);
  color: var(--footer-text);
  padding: 44px 0 24px;
  padding-right: var(--fixed-form-width);
  border-top: 1px solid rgba(212, 186, 145, 0.3);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(209, 170, 115, 0.06) 1px, transparent 1px),
    linear-gradient(240deg, rgba(209, 170, 115, 0.06) 1px, transparent 1px);
  background-size: 130px 130px;
  opacity: 0.42;
  pointer-events: none;
  z-index: -1;
}

.footer-shell {
  display: grid;
  gap: 20px;
  position: relative;
  transform: none;
}

.footer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(212, 186, 145, 0.34);
}

.footer-brand-wrap {
  display: grid;
  gap: 8px;
}

.footer-brand-logo {
  max-width: 210px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

.footer-tagline {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(235, 217, 189, 0.9);
}

.footer-tour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border: 1px solid rgba(226, 198, 157, 0.72);
  background: linear-gradient(120deg, rgba(185, 145, 89, 0.24), rgba(35, 25, 17, 0.8));
  color: #f6e6ca;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.28s ease;
}

.footer-tour-btn:hover {
  border-color: #f3d19c;
  background: linear-gradient(120deg, rgba(207, 164, 106, 0.34), rgba(57, 40, 27, 0.88));
  color: #fff4df;
  transform: translateY(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.footer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 185, 142, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 247, 235, 0.07) 0%, rgba(255, 247, 235, 0.02) 100%);
  backdrop-filter: blur(8px);
  padding: 18px 16px;
  min-height: 168px;
}

.footer-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: -9px;
  width: 1px;
  height: 64%;
  background: rgba(226, 194, 146, 0.28);
}

.footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(201, 160, 101, 0.2), transparent 38%),
    repeating-linear-gradient(
      -35deg,
      rgba(216, 187, 140, 0.06) 0,
      rgba(216, 187, 140, 0.06) 1px,
      transparent 1px,
      transparent 13px
    );
  pointer-events: none;
}

.footer-card > * {
  position: relative;
  z-index: 1;
}

.footer-kicker {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e9cfaa;
  position: relative;
  padding-bottom: 8px;
}

.footer-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 1px;
  background: rgba(231, 199, 150, 0.72);
}

.footer-text {
  margin: 0;
  font-size: 16px;
  color: rgba(239, 225, 201, 0.92);
  line-height: 1.75;
}

.footer-link {
  display: block;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  color: rgba(239, 225, 201, 0.92);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(231, 199, 150, 0.65);
  background: rgba(201, 160, 101, 0.45);
}

.footer-link:hover {
  color: #ffefd4;
  transform: translateX(4px);
}

/* make footer phone number slightly larger and more prominent */
.footer-link-phone {
  font-size: 15px;
  font-weight: 800;
  color: #fff4df;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 186, 145, 0.22);
  padding-top: 14px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.footer-backtop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid rgba(227, 200, 157, 0.56);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(211, 172, 113, 0.18), rgba(37, 26, 18, 0.72));
  color: #f5e4c8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

/* RERA number styling in footer */
.footer-rera {
  display: inline-block;
  font-size: 13px;
  color: #fbf6ec; /* high contrast */
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  box-shadow: 0 6px 18px rgba(8,6,4,0.35);
}

.footer-rera strong {
  color: #fff;
  font-weight: 800;
}

.footer-backtop:hover {
  color: #fff1d9;
  border-color: rgba(243, 213, 164, 0.9);
  transform: translateY(-2px);
}

.copyright {
  margin: 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(214, 190, 156, 0.88);
}

body.modal-open {
  overflow: hidden;
}

.legal-modal,
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 90; /* base overlay */
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(19, 14, 10, 0.76);
}

/* Ensure legal (privacy/terms) modals appear above enquiry modal */
.legal-modal {
  z-index: 210;
}

.enquiry-modal {
  z-index: 195;
}

.legal-modal[hidden],
.enquiry-modal[hidden] {
  display: none;
}

.legal-modal-panel,
.enquiry-modal-panel {
  width: min(980px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: #fff9f0;
  border: 1px solid rgba(142, 109, 66, 0.35);
  box-shadow: 0 22px 44px rgba(16, 11, 7, 0.36);
  border-radius: 12px;
  padding: 28px 24px 24px;
}

.enquiry-modal-panel {
  width: min(520px, 100%);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.99) 0%, rgba(246, 233, 212, 0.98) 100%);
  position: relative;
}

.legal-modal-panel h3,
.enquiry-modal-panel h3 {
  margin-bottom: 14px;
}

.legal-modal-panel p,
.enquiry-modal-panel p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #3f3227;
}

.legal-close,
.enquiry-close {
  border: 1px solid rgba(142, 109, 66, 0.6);
  background: #fff5e6;
  color: #5a4632;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
}

.legal-close {
  float: right;
  margin-left: 12px;
}

.enquiry-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

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

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 12px 28px rgba(12, 65, 33, 0.32);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 16px 34px rgba(12, 65, 33, 0.44);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 12px 28px rgba(12, 65, 33, 0.32);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  :root {
    --fixed-form-width: 332px;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 72px;
  }

  .page-shell,
  .site-footer {
    padding-right: 0;
  }

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

  #overview .split {
    grid-template-columns: 1fr;
  }

  #overview .media-block {
    height: 430px;
  }

  .lead-form {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-top: 28px;
    border-left: 1px solid rgba(185, 146, 90, 0.34);
    border-radius: 12px;
  }

  .hero-copy {
    bottom: 18px;
    left: 18px;
    max-width: 450px;
    padding: 22px 24px;
  }

  .top-nav,
  .nav-cta {
    display: none;
  }

  .site-header .nav-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-logo {
    height: 56px;
  }

  #highlights .highlights-grid,
  .amenities-wrapper,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "map"
      "list";
  }

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

@media (max-width: 640px) {
  :root {
    --section-pad: 56px;
  }

  .container {
    width: min(var(--max-width), 100% - 28px);
  }

  .gallery-section .container {
    width: min(var(--max-width), 100% - 16px);
  }

  #overview .split {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px 24px;
    max-width: calc(100% - 40px);
    width: 100%;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-copy h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .lead {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .hero-quick {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .quick-value {
    font-size: 15px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 11px;
  }

  #highlights .highlights-grid,
  .amenities-wrapper,
  .footer-grid,
  #overview .overview-highlights {
    grid-template-columns: 1fr;
  }

  .plan-tile {
    width: 100%;
    max-width: 240px;
    margin-inline: auto;
  }

  #overview .media-block {
    height: 300px;
  }

  .plans-grid {
    flex-direction: column;
  }

  .plan-expanded-inner {
    flex-direction: column;
  }

  .expanded-content {
    padding: 28px 18px;
  }

  .back-arrow {
    right: 12px;
    height: 66px;
  }

  .plans-price-table-wrap {
    overflow-x: auto;
  }

  .plans-price-table {
    min-width: 470px;
  }

  .gallery-stage {
    aspect-ratio: 4 / 3;
    min-height: 230px;
  }

  .gallery-slide {
    margin: 0;
  }

  .gallery-nav {
    width: 44px;
    height: 44px;
  }

  .gallery-nav.prev {
    left: 10px;
  }

  .gallery-nav.next {
    right: 10px;
  }

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

  .footer-tour-btn,
  .footer-backtop {
    width: 100%;
  }

  .footer-card {
    min-height: auto;
  }

  .footer-card:not(:last-child)::after {
    display: none;
  }

  .legal-modal,
  .enquiry-modal {
    padding: 12px;
  }

  .legal-modal-panel,
  .enquiry-modal-panel {
    padding: 20px 14px 14px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(172, 131, 80, 0.5);
    background: linear-gradient(180deg, #2a1e13 0%, #140d08 100%);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    min-height: 50px;
    border: 0;
    border-right: 1px solid rgba(172, 131, 80, 0.28);
    background: transparent;
    color: #f0dfc2;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    display: grid;
    place-items: center;
  }

  .mobile-action-bar button {
    cursor: pointer;
  }

  .mobile-action-bar a:last-child,
  .mobile-action-bar button:last-child {
    border-right: 0;
  }

  .whatsapp-float {
    bottom: 66px;
  }
}
