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

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: #f4f1e8;
  overflow-x: hidden;
}

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

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


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

:root {
  --bg: #f4f1e8;
  --ink: #142033;
  --muted: #5b6678;
  --paper: #ffffff;
  --brand: #e07a2b;
  --brand-deep: #b35918;
  --forest: #1f4b43;
  --line: rgba(20, 32, 51, 0.16);
  --shadow: 0 20px 45px rgba(20, 32, 51, 0.12);
  --anchor-offset: 110px;
}

html {
  scroll-padding-top: var(--anchor-offset);
}

.riverside-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(224, 122, 43, 0.17), transparent 38%),
    radial-gradient(circle at 82% 18%, rgba(31, 75, 67, 0.2), transparent 32%),
    var(--bg);
}

.riverside-page section[id] {
  scroll-margin-top: var(--anchor-offset);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 5vw;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background: rgba(244, 241, 232, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  border: 1px solid rgba(20, 32, 51, 0.12);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--ink);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--brand-deep);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover summary,
.nav-dropdown[open] summary {
  color: var(--brand-deep);
}

.nav-dropdown[open] summary::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 34px rgba(20, 32, 51, 0.16);
  display: grid;
  gap: 2px;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown[open] .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
}

.nav-dropdown-menu a:hover {
  background: rgba(31, 75, 67, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.topbar-cta {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 75, 67, 0.25);
  background: rgba(31, 75, 67, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  background: linear-gradient(125deg, rgba(11, 19, 32, 0.84) 24%, rgba(14, 26, 42, 0.45) 68%, rgba(224, 122, 43, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(56px, 8vw, 74px) 5vw clamp(52px, 9vw, 82px);
  color: #f8f6ef;
}

.hero-kicker {
  margin: 0 0 14px;
  font-size: 0.88rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #f3cba9;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.85rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(248, 246, 239, 0.91);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-outline,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 28px rgba(179, 89, 24, 0.35);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c49);
  box-shadow: 0 14px 28px rgba(18, 140, 73, 0.36);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
}

.facts-strip {
  margin: -48px auto 0;
  width: min(1000px, 90vw);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 3;
}

.fact-chip {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.section {
  width: min(1180px, 92vw);
  margin: clamp(52px, 8vw, 72px) auto 0;
}

.section-heading p {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: clamp(1.35rem, 3.4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.18;
}

.about-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-grid img {
  width: 90%;
  border-radius: 22px;
  min-height: 100px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-grid h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.2;
}
.about-grid p {
  margin: 20px 0 10px;
  line-height: 1.5;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--muted);
}

.inline-btn {
  margin-top: 6px;
}

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

.highlight-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.price-card {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(152deg, rgba(255, 255, 255, 0.98), rgba(31, 75, 67, 0.09));
  border: 1px solid rgba(31, 75, 67, 0.2);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.price-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.price-tag {
  margin-top: 14px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--forest) !important;
}

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

.plan-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.plan-card-button {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.plan-card-button:focus-visible {
  outline: 3px solid rgba(31, 75, 67, 0.5);
  outline-offset: 2px;
}

.plan-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: filter 0.25s ease;
}

.plans-grid.is-blurred .plan-card img {
  filter: blur(6px);
}

.plan-card h3 {
  margin: 0;
  padding: 16px 18px 18px;
}

.amenity-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.amenity-tile {
  min-height: 90px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.amenity-tile span {
  padding: 10px;
}

.gallery-carousel {
  margin-top: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.carousel-window {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-track img {
  width: 100%;
  flex: 0 0 100%;
  height: 460px;
  object-fit: cover;
}

.carousel-nav {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 32, 51, 0.82);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 32, 51, 0.25);
  cursor: pointer;
}

.dot.active {
  background: var(--brand-deep);
}

.location {
  background: #eeeeef;
  border-radius: 20px;
  padding: 28px 20px 30px;
}

.location-top-action,
.location-map-cta {
  display: flex;
  justify-content: center;
}

.location-top-action .btn-primary {
  min-width: 190px;
}

.location-heading {
  text-align: center;
}

.location-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.location-advantage-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 18px;
  align-items: start;
}

.location-map-wrap img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-advantage-panel {
  margin-top: 0;
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.location-tabs {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-tab {
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid var(--brand-deep);
  background: #fff;
  color: #10253d;
  font-weight: 600;
  cursor: pointer;
}


.location-tab.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  border-color: transparent;
  
}

.location-points {
  margin: 0;
  margin-top: 45px;
  padding: 8px 8px 8px 22px;
}

.location-points li {
  margin-bottom: 12px;
  line-height: 1.5;
  color: #121c2d;
  font-size: 1.03rem;
  overflow-wrap: anywhere;
}

.location-map-cta {
  margin-top: 18px;
}

.contact {
  padding: 36px 28px;
  border-radius: 20px;
  background: linear-gradient(125deg, rgba(20, 32, 51, 0.94), rgba(31, 75, 67, 0.95));
  color: #fff;
}

.contact h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.contact p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-mail {
  margin-top: 10px;
  font-size: 0.95rem;
}

.contact-mail a {
  color: #f3cba9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-actions .btn-primary {
  border: 0;
  cursor: pointer;
}

.contact .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
}

.support-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(20, 32, 51, 0.28);
  transition: transform 0.2s ease;
  animation: wp-pop 0.35s ease-out;
}

.support-link:hover {
  transform: translateY(-2px);
}

.support-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.email-support {
  background: linear-gradient(135deg, #3555d6, #2743ae);
}

.whatsapp-support {
  background: linear-gradient(135deg, #25d366, #128c49);
}

.site-visit-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(8, 15, 24, 0.63);
  display: grid;
  place-items: center;
  padding: 18px;
}

.site-visit-modal-backdrop.is-hidden {
  display: none;
}

.site-visit-modal {
  width: min(460px, 100%);
  padding: 24px 20px 20px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(8, 15, 24, 0.35);
  position: relative;
}

.site-visit-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 32, 51, 0.08);
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.site-visit-modal h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
}

.site-visit-modal p {
  margin: 10px 0 0;
  line-height: 1.5;
  color: #4f5c70;
}

.site-visit-form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.site-visit-form input {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid rgba(20, 32, 51, 0.22);
  font: inherit;
}

.site-visit-form input:focus {
  outline: none;
  border-color: var(--brand);
}

.site-visit-form .btn-primary {
  margin-top: 2px;
  border: 0;
  cursor: pointer;
}

.site-visit-form .btn-primary:disabled {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

.site-visit-feedback {
  margin: 12px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-visit-feedback.success {
  color: #147a3f;
}

.site-visit-feedback.error {
  color: #b33b2d;
}

@keyframes wp-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }

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

.footer {
  margin: 44px 0 0;
  padding: 26px 0 14px;
  background:
    radial-gradient(circle at 12% 10%, rgba(126, 181, 93, 0.2), transparent 36%),
    radial-gradient(circle at 88% 8%, rgba(224, 122, 43, 0.24), transparent 36%),
    linear-gradient(160deg, #101824 0%, #0b111a 58%, #121a27 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 3px solid #7eb95d;
  color: #d6deec;
}

.footer-wrap {
  width: min(1040px, 94vw);
  margin: 0 auto;
  text-align: center;
  padding: 26px 20px 18px;
  border-radius: 24px;
  background: rgba(13, 21, 33, 0.82);
  border: 1px solid rgba(126, 181, 93, 0.34);
  box-shadow: 0 24px 48px rgba(5, 9, 14, 0.58);
  backdrop-filter: blur(4px);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(20, 32, 51, 0.16);
  padding: 6px;
  box-shadow: 0 8px 18px rgba(20, 32, 51, 0.12);
}

.footer-brand-text {
  text-align: left;
}

.footer-brand-text strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.1vw, 1.82rem);
  color: #f0f5ff;
}

.footer-brand-text span {
  display: block;
  margin-top: 3px;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: #9daeca;
}

.footer-site-title {
  margin: 4px 0 0;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #8fd06b;
}

.footer-site-address {
  margin: 10px 0 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.98rem, 1.35vw, 1.24rem);
  line-height: 1.6;
  color: #d8e2f2;
}

.footer-policy-inline {
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.96rem;
}

.footer-policy-inline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #edf2fc;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-policy-inline a:hover {
  transform: translateY(-1px);
  border-color: transparent;
  color: #081014;
  background: linear-gradient(135deg, #9fe071, #7eb95d);
}

.footer-policy-inline span {
  margin: 0 2px;
  color: #8fd06b;
  font-weight: 700;
}

.footer-rera-block {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.footer-rera-block img {
  width: min(228px, 72vw);
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #fff;
  padding: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.48);
}

.footer-copy {
  margin: 14px 0 0;
  color: #90d36a;
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.legal-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(224, 122, 43, 0.17), transparent 33%),
    radial-gradient(circle at 86% 0%, rgba(31, 75, 67, 0.18), transparent 35%),
    var(--bg);
  color: var(--ink);
}

.legal-page {
  width: min(980px, 92vw);
  margin: 34px auto 56px;
}

.legal-header {
  padding: 34px 32px;
  border-radius: 22px;
  background: linear-gradient(132deg, rgba(20, 32, 51, 0.95), rgba(31, 75, 67, 0.92));
  color: #fff;
  box-shadow: var(--shadow);
}

.legal-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.legal-home-link:hover {
  background: rgba(255, 255, 255, 0.18);
}

.legal-header h1 {
  margin: 16px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.legal-header p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.83);
}

.legal-card {
  margin-top: 18px;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.legal-card p {
  margin: 0;
  color: #39465b;
  line-height: 1.72;
}

.legal-card h2 {
  margin: 22px 0 8px;
  font-size: 1.22rem;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.legal-card li {
  margin: 0 0 8px;
  color: #39465b;
  line-height: 1.62;
}

.legal-card a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-footer {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 32, 51, 0.18);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #233349;
}

.legal-footer a:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  border-color: transparent;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .facts-strip,
  .highlights-grid,
  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-advantage-grid {
    grid-template-columns: 1fr;
  }

  .location-map-wrap img {
    min-height: 280px;
  }

  .location-advantage-panel {
    grid-template-columns: 1fr;
  }

  .location-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 1110px) {
  :root {
    --anchor-offset: 132px;
  }

  .topbar {
    align-items: center;
    gap: 10px 12px;
    padding: 12px 4vw;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    font-size: 1.2rem;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .topbar-cta {
    display: none;
  }

  .topbar.is-menu-open .nav-links {
    display: flex;
  }

  .topbar.is-menu-open .topbar-cta {
    display: inline-flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    gap: 2px;
    max-height: min(68vh, 420px);
    overflow-y: auto;
    font-size: 0.95rem;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
  }

  .nav-links a {
    padding: 10px 8px;
    border-radius: 8px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown summary {
    display: flex;
    width: 100%;
    padding: 10px 8px;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: rgba(31, 75, 67, 0.08);
  }

  .nav-dropdown summary:hover {
    background: rgba(31, 75, 67, 0.08);
  }

  .nav-dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 4px 0 6px 10px;
    gap: 2px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown[open] .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    font-size: 0.9rem;
    padding: 8px 8px;
  }

  .topbar-cta {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 11px 14px;
  }

  .about-grid,
  .price-grid,
  .plans-grid,
  .location-advantage-grid {
    grid-template-columns: 1fr;
  }

  .section-heading p {
    margin-bottom: 8px;
    font-size: 1.2rem;
    letter-spacing: 0.07em;
  }

  .section-heading h2 {
    font-size: clamp(1.34rem, 5.8vw, 1.95rem);
    line-height: 1.25;
  }

  .about-grid img {
    width: 100%;
    border-radius: 16px;
  }

  .about-grid h2 {
    font-size: 1.45rem;
    line-height: 1.26;
  }

  .about-grid p {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .location-advantage-panel {
    grid-template-columns: 1fr;
  }

  .location-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .location-tab {
    min-width: 132px;
  }

  .hero {
    min-height: 66vh;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

  .location-advantage-panel {
    margin-top: 0;
  }

  .facts-strip {
    margin-top: 20px;
  }

}

@media (max-width: 640px) {
  :root {
    --anchor-offset: 122px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 52vh;
  }

  .hero-content {
    padding: 44px 4.5vw 36px;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 8.2vw, 2.35rem);
    line-height: 1.12;
  }

  .hero-kicker {
    letter-spacing: 0.08em;
    font-size: 0.78rem;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .hero-actions .btn-whatsapp,
  .contact-actions .btn-primary,
  .contact-actions .btn-whatsapp {
    width: 100%;
  }

  .amenity-grid,
  .highlights-grid,
  .facts-strip {
    grid-template-columns: 1fr;
  }

  .carousel-track img {
    height: 270px;
  }

  .carousel-nav {
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .section {
    margin-top: 40px;
  }

  .section-heading p {
    white-space: normal;
    line-height: 1.2;
    letter-spacing: 0.06em;
  }

  .location {
    padding: 22px 12px 24px;
  }

  .location-top-action .btn-primary {
    width: 100%;
    max-width: 280px;
  }

  .contact {
    padding: 28px 20px;
  }

  .support-stack {
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .support-link {
    padding: 9px 12px;
    font-size: 0.68rem;
    max-width: 88vw;
  }

  .support-icon {
    width: 16px;
    height: 16px;
  }

  .footer-wrap {
    padding: 20px 14px 14px;
    border-radius: 18px;
  }

  .footer-logo {
    width: 60px;
    height: 60px;
  }

  .footer-logo-row {
    flex-direction: column;
    gap: 9px;
  }

  .footer-brand-text {
    text-align: center;
  }

  .footer-brand-text strong {
    font-size: 1.26rem;
  }

  .footer-site-title {
    margin-top: 20px;
    font-size: 20px;
  }

  .footer-site-address {
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .footer-policy-inline {
    margin-top: 20px;
    gap: 8px;
  }

  .footer-policy-inline span {
    display: none;
  }

  .footer-policy-inline a {
    width: 100%;
    max-width: 280px;
    padding: 9px 12px;
  }

  .footer-rera-block img {
    width: min(208px, 82vw);
  }

  .footer-copy {
    font-size: 0.86rem;
  }

  .site-visit-modal {
    padding: 22px 16px 18px;
  }

  .site-visit-modal h3 {
    font-size: 1.45rem;
  }

  .legal-page {
    width: min(980px, 94vw);
    margin-top: 20px;
  }

  .legal-header {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .legal-card {
    padding: 20px 16px;
  }

  .legal-card h2 {
    font-size: 1.12rem;
  }

  .legal-footer {
    gap: 8px;
  }

  .legal-footer a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  :root {
    --anchor-offset: 116px;
  }

  .section {
    width: min(1180px, 94vw);
  }

  .topbar {
    padding-left: 3.5vw;
    padding-right: 3.5vw;
  }

  .support-link {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    font-size: 0;
    letter-spacing: 0;
  }

  .support-icon {
    width: 18px;
    height: 18px;
  }
}
