:root {
  --green: #74bb3a;
  --magenta: #c11566;
  --blue: #54a4de;
  --bg: #f6f7fb;
  --card: rgba(255, 255, 255, 0.92);
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(229, 231, 235, 0.95);
  --radius: 18px;
  --shadow: 0 18px 44px rgba(2, 8, 23, 0.12);
  --shell: 1180px;
  --page: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(84, 164, 222, 0.12), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(193, 21, 102, 0.1), transparent 45%),
    radial-gradient(circle at 30% 90%, rgba(116, 187, 58, 0.1), transparent 55%),
    var(--bg);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

ul {
  padding-left: 18px;
}

.muted {
  color: var(--muted);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.topbar .inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.topbar .inner > *,
.page-shell > *,
.hero-panel > *,
.overlay-actions > *,
.hero-note-actions > *,
.float > * {
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.8);
  padding: 6px;
  box-shadow: var(--shadow);
}

.brand-text strong,
.brand-text b {
  display: block;
  font-size: 13px;
  font-weight: 1100;
  line-height: 1;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.brand-text small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 900;
  overflow-wrap: anywhere;
}

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

.nav a {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  color: #334155;
  transition: background 0.18s ease, transform 0.18s ease;
}

.nav a:hover {
  background: rgba(84, 164, 222, 0.12);
  transform: translateY(-1px);
}

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

.btn {
  border: 0;
  border-radius: 14px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 1000;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #3d8fd1);
  box-shadow: 0 14px 24px rgba(84, 164, 222, 0.22);
}

.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), #a61054);
  box-shadow: 0 14px 24px rgba(193, 21, 102, 0.22);
}

.btn-soft {
  color: #14532d;
  background: rgba(116, 187, 58, 0.12);
  border: 1px solid rgba(116, 187, 58, 0.25);
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  background: rgba(84, 164, 222, 0.12);
  border: 1px solid rgba(84, 164, 222, 0.25);
  color: #0b2a45;
}

.page-shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 16px 16px 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.main,
.sidebar,
.section,
.hero,
.overlay-card,
.hero-note,
.visit,
.article-card,
.content-card {
  min-width: 0;
  max-width: 100%;
}

.wrap {
  max-width: var(--page);
  margin: 0 auto;
  padding: 22px 16px 58px;
}

section[id],
article[id],
aside[id] {
  scroll-margin-top: 88px;
}

.main > .section {
  margin-bottom: 22px;
  content-visibility: auto;
  contain-intrinsic-size: 780px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-card {
  padding: 24px;
  overflow: hidden;
}

.content-card > .badge,
.content-card > .eyebrow {
  margin-bottom: 14px;
}

.section-title {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.2;
  color: #0b2a45;
  font-weight: 1100;
  overflow-wrap: anywhere;
}

.section-lead {
  margin-bottom: 18px;
  color: #334155;
  font-size: 15px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 231, 235, 0.95);
  color: #334155;
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(2, 8, 23, 0.06);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.fact-card {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  box-shadow: 0 12px 26px rgba(2, 8, 23, 0.07);
  min-width: 0;
}

.fact-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fact-card strong,
.fact-card b {
  display: block;
  margin-top: 8px;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.fact-card p {
  margin-top: 8px;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(84, 164, 222, 0.25);
  background: rgba(84, 164, 222, 0.08);
  color: #0b2a45;
  font-size: 12px;
  font-weight: 1000;
  transition: transform 0.18s ease, background 0.18s ease;
}

.source-link:hover {
  transform: translateY(-1px);
  background: rgba(84, 164, 222, 0.14);
}

.source-note,
.source-list {
  margin-top: 14px;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.source-list {
  padding-left: 18px;
}

.disclosure {
  margin-top: 16px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background:
    radial-gradient(circle at 85% 15%, rgba(193, 21, 102, 0.08), transparent 42%),
    radial-gradient(circle at 15% 88%, rgba(84, 164, 222, 0.08), transparent 48%),
    #fff;
}

.disclosure strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
}

.disclosure p {
  margin-top: 8px;
  color: #475569;
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 64vh, 760px);
  border-radius: 24px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow);
}

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

.hero-media img {
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0.18), rgba(2, 8, 23, 0.56)),
    radial-gradient(circle at 20% 20%, rgba(84, 164, 222, 0.28), rgba(84, 164, 222, 0) 46%),
    radial-gradient(circle at 85% 18%, rgba(193, 21, 102, 0.24), rgba(193, 21, 102, 0) 44%),
    radial-gradient(circle at 38% 92%, rgba(116, 187, 58, 0.22), rgba(116, 187, 58, 0) 54%);
}

.hero-panel {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.hero-panel > *,
.about-grid > *,
.two-col > *,
.visit-grid > *,
.footer-wrap > * {
  min-width: 0;
}

.overlay-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 60px rgba(2, 8, 23, 0.28);
  backdrop-filter: blur(18px);
}

.overlay-head {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
}

.overlay-head h1 {
  font-size: 28px;
  line-height: 1.08;
  color: #fff;
  font-weight: 1200;
  text-shadow: 0 10px 28px rgba(2, 8, 23, 0.62);
}

.overlay-sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 950;
}

.eoi-strip {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 15%, rgba(193, 21, 102, 0.28), transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(84, 164, 222, 0.26), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 40px rgba(2, 8, 23, 0.2);
}

.eoi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(193, 21, 102, 0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 1100;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.spark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.36);
  animation: ping 1.6s ease-out infinite;
}

.eoi-text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 900;
}

.overlay-list {
  padding: 14px 16px;
  display: grid;
  gap: 10px;
}

.tag {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.94);
  min-width: 0;
}

.tag b {
  display: block;
  color: #fff;
  font-size: 13px;
}

.tag span:last-child,
.tag .muted {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.overlay-actions {
  padding: 0 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-note {
  justify-self: end;
  align-self: center;
  width: min(100%, 420px);
  max-width: 420px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 31, 47, 0.62), rgba(18, 31, 47, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 48px rgba(2, 8, 23, 0.22);
}

.hero-note h2 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 1100;
  color: #fff;
}

.hero-note p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

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

.hero-note-actions .btn {
  min-width: 150px;
}

.hero .btn {
  color: #fff;
}

.hero .eyebrow {
  color: #fff;
  background: rgba(84, 164, 222, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
}

.overlay-actions .btn-soft {
  color: #fff;
  background: linear-gradient(135deg, #9adf73, #73c857);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 24px rgba(116, 187, 58, 0.22);
}

.overlay-actions .btn-soft:hover {
  filter: brightness(1.03);
}

.stat-grid,
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat,
.kpi {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.92));
  border: 1px solid rgba(229, 231, 235, 0.9);
  min-width: 0;
}

.stat b,
.kpi b {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
  color: #0f172a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.stat span,
.kpi span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.about-grid,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}

.media-box,
.image-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #fff;
  min-height: 220px;
}

.media-box img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hl {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.28);
  min-width: 0;
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(116, 187, 58, 0.14);
  border: 1px solid rgba(116, 187, 58, 0.24);
  color: #14532d;
  font-weight: 1100;
}

.hl div:last-child {
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  margin-top: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  padding: 13px 14px;
  text-align: left;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #3d8fd1);
  font-size: 12px;
  letter-spacing: 0.02em;
}

tbody td {
  padding: 14px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  vertical-align: top;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.94);
  overflow-wrap: anywhere;
}

.pricing-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 900;
}

.amenities,
.gallery,
.insights-grid,
.answer-grid {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

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

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

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

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

.amenity,
.insight-card,
.answer-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(2, 8, 23, 0.08);
  min-width: 0;
}

.amenity .thumb,
.gimg {
  height: 160px;
  overflow: hidden;
  background: #fff;
}

.amenity .thumb img,
.gimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity .cap {
  padding: 12px 14px 14px;
}

.amenity .cap strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.amenity .cap span {
  display: block;
  margin-top: 6px;
  color: #475569;
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.loc-map {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #fff;
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.08);
  margin-top: 8px;
}

.loc-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 12px;
}

.tab {
  border: 1px solid rgba(84, 164, 222, 0.26);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(84, 164, 222, 0.1);
  color: #0b2a45;
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
}

.tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #3d8fd1);
  border-color: rgba(84, 164, 222, 0.36);
}

.loc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  list-style: none;
  padding: 4px 0 0;
}

.li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
  min-width: 0;
  overflow-wrap: anywhere;
}

.pin {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(84, 164, 222, 0.1);
  border: 1px solid rgba(84, 164, 222, 0.26);
  color: var(--blue);
  font-weight: 1100;
}

.faq {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  color: #0f172a;
  font-size: 15px;
  font-weight: 1050;
  cursor: pointer;
  min-width: 0;
}

.faq-q:hover {
  color: #0b2a45;
}

.chev {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(116, 187, 58, 0.1);
  border: 1px solid rgba(116, 187, 58, 0.22);
  color: #14532d;
  flex: 0 0 28px;
}

.faq-a {
  display: none;
  padding: 0 0 16px;
  color: #334155;
  font-size: 14px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.faq-a.open {
  display: block;
}

.insight-card {
  position: relative;
  padding: 18px;
  background:
    radial-gradient(circle at 85% 15%, rgba(193, 21, 102, 0.16), transparent 42%),
    radial-gradient(circle at 15% 90%, rgba(84, 164, 222, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.96);
}

.insight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 1000;
}

.insight-card h3 {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.3;
  color: #0f172a;
}

.insight-card p {
  margin-top: 10px;
  color: #334155;
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.insight-meta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #475569;
  font-size: 11px;
  font-weight: 850;
}

.visit {
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, rgba(84, 164, 222, 0.96), rgba(193, 21, 102, 0.92));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.visit-copy h2 {
  font-size: 28px;
  line-height: 1.12;
  font-weight: 1100;
}

.visit-copy p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.75;
}

.visit-form,
.side-form {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 36px rgba(2, 8, 23, 0.12);
  content-visibility: auto;
  contain-intrinsic-size: 520px;
}

.visit-form {
  padding: 18px;
}

.sidebar {
  position: sticky;
  top: 78px;
}

.side-form {
  padding: 18px;
}

.side-form h3,
.visit-form h3 {
  font-size: 16px;
  line-height: 1.3;
  color: #0b2a45;
  font-weight: 1100;
}

.side-form p,
.visit-form p {
  margin-top: 8px;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.field label {
  color: #334155;
  font-size: 12px;
  font-weight: 1000;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(84, 164, 222, 0.5);
  box-shadow: 0 0 0 4px rgba(84, 164, 222, 0.16);
}

.side-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mini {
  padding: 10px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: linear-gradient(180deg, #fff, #fbfdff);
  color: #334155;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.mini b {
  display: block;
  color: #0f172a;
  font-size: 12px;
  margin-bottom: 3px;
}

.side-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.visit-form .btn,
.side-form .btn,
.modal-form .btn {
  width: 100%;
}

.answer-card {
  padding: 16px;
}

.answer-card h3 {
  font-size: 15px;
  line-height: 1.35;
  color: #0f172a;
}

.answer-card p {
  margin-top: 8px;
  color: #334155;
  font-size: 14px;
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.footer {
  margin-top: 28px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(10px);
}

.footer-wrap {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: start;
}

.fine {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.72;
}

.footer-rera {
  margin-top: 12px;
  color: #0b2a45;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1.6;
}

.helper-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.helper-links a {
  color: #0b2a45;
  font-size: 12px;
  font-weight: 950;
}

.qr {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background:
    radial-gradient(circle at 30% 30%, rgba(116, 187, 58, 0.12), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(84, 164, 222, 0.12), transparent 55%),
    linear-gradient(135deg, #eef2ff, #ffffff);
  overflow: hidden;
}

.qr img {
  max-width: 150px;
  object-fit: contain;
}

.float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pill {
  position: relative;
  overflow: hidden;
  padding: 11px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #c11566 0%, #54a4de 52%, #74bb3a 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(2, 8, 23, 0.22);
  font-size: 12px;
  font-weight: 1050;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  justify-content: center;
  text-shadow: 0 1px 1px rgba(2, 8, 23, 0.18);
}

.pill .icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-weight: 1100;
}

.pill-pop {
  border-color: rgba(255, 255, 255, 0.24);
  animation: pulse 2.4s ease-in-out infinite;
}

.float .pill[data-open-brochure],
.float .pill[href^="tel:"] {
  background: linear-gradient(135deg, #cf1a6f 0%, #8a2aa7 34%, #4a9fd8 68%, #74bb3a 100%);
  color: #fff;
}

.float .pill[data-open-brochure] .icon,
.float .pill[href^="tel:"] .icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.float .pill[href*="wa.me"] {
  background: linear-gradient(180deg, #25d366 0%, #1ebe5b 100%);
  border-color: rgba(18, 140, 126, 0.34);
  color: #fff;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
}

.float .pill[href*="wa.me"] .icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.float .pill:hover {
  filter: brightness(1.04);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(10px);
  z-index: 220;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.94);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.32);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 200;
  padding: 16px;
  overflow-y: auto;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 23, 0.58);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(580px, 100%);
  margin: clamp(12px, 6vh, 56px) auto;
  max-height: calc(100dvh - 32px);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.96);
  box-shadow: 0 34px 110px rgba(2, 8, 23, 0.34);
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.96);
  color: #e11d48;
  font-size: 22px;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(2, 8, 23, 0.16);
}

.modal-head {
  padding: 22px 24px 10px;
  color: var(--text);
  background: #fff;
}

.modal-head h3 {
  font-size: 20px;
  line-height: 1.18;
  color: #0f172a;
}

.modal-head p {
  margin-top: 8px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.modal-card-popup .eoi-badge {
  background: rgba(193, 21, 102, 0.08);
  color: #8a1248;
  border-color: rgba(193, 21, 102, 0.14);
}

.modal-card-popup .spark {
  background: var(--magenta);
  box-shadow: 0 0 0 0 rgba(193, 21, 102, 0.26);
}

.modal-visual {
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.12)),
    linear-gradient(180deg, rgba(2, 8, 23, 0), rgba(2, 8, 23, 0.14)),
    url("https://basaao.com/wp-content/uploads/2026/01/Outside-view-Basaao-Godrej.jpg") center/cover no-repeat;
}

.modal-perks {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.perk {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  background: rgba(84, 164, 222, 0.1);
  border: 1px solid rgba(84, 164, 222, 0.18);
  color: #0b2a45;
}

.modal-form {
  padding: 10px 24px 24px;
  background: #fff;
  overflow-y: auto;
}

.modal-form-popup {
  display: grid;
  gap: 0;
}

.modal-form-popup .field + .field {
  margin-top: 6px;
}

.modal-form-popup .field input {
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.modal-note {
  margin-top: 12px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.55;
}

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

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  color: #334155;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 850;
}

.consent input {
  margin-top: 3px;
}

.article-card {
  padding: 20px;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.article-card h1 {
  margin-top: 14px;
  font-size: 32px;
  line-height: 1.15;
  color: #0f172a;
}

.article-card h2 {
  margin-top: 26px;
  font-size: 20px;
  line-height: 1.28;
  color: #0b2a45;
}

.article-card h3 {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.35;
  color: #0f172a;
}

.article-card p,
.article-card li {
  margin-top: 12px;
  color: #334155;
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.article-card ul,
.article-card ol {
  margin-top: 8px;
}

.article-table {
  margin-top: 14px;
}

.callout,
.cta-strip {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 20%, rgba(193, 21, 102, 0.14), transparent 40%),
    radial-gradient(circle at 15% 88%, rgba(84, 164, 222, 0.14), transparent 48%),
    #fff;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.cta-strip strong {
  display: block;
  font-size: 16px;
  color: #0f172a;
}

.cta-strip p {
  margin-top: 8px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.breadcrumbs a {
  color: #0b2a45;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.38);
  }

  100% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@media (max-width: 1060px) {
  .page-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 28px;
  }

  .sidebar {
    display: none;
  }

  .hero-panel,
  .about-grid,
  .two-col,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .hero {
    min-height: 0;
  }

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

  .amenities,
  .gallery,
  .insights-grid,
  .answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .loc-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .float.is-hidden-mobile {
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
  }

  .topbar .inner {
    gap: 10px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    flex: 1 1 100%;
    gap: 8px;
    padding-bottom: 2px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .nav-cta {
    gap: 8px;
    margin-left: auto;
    flex: 0 1 auto;
  }

  .nav-cta .btn {
    padding: 10px 12px;
  }

  .hero-panel {
    padding: 14px 14px calc(108px + env(safe-area-inset-bottom));
    gap: 14px;
  }

  .hero-panel,
  .overlay-card,
  .hero-note,
  .visit-copy,
  .visit-form,
  .content-card,
  .article-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .overlay-head,
  .overlay-list,
  .overlay-actions,
  .hero-note {
    padding-left: 14px;
    padding-right: 14px;
  }

  .overlay-head h1 {
    font-size: 24px;
  }

  .hero-note h2,
  .visit-copy h2,
  .article-card h1 {
    font-size: 24px;
  }

  .highlights-grid,
  .amenities,
  .gallery,
  .insights-grid,
  .answer-grid,
  .side-icons,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .overlay-actions .btn,
  .hero-note-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .overlay-actions,
  .hero-note-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .overlay-head h1,
  .overlay-sub,
  .eoi-text,
  .hero-note h2,
  .hero-note p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .table-wrap table,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
    width: 100%;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tbody {
    display: grid;
    gap: 12px;
  }

  .table-wrap tr {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    box-shadow: 0 12px 28px rgba(2, 8, 23, 0.08);
  }

  .table-wrap td {
    display: grid;
    grid-template-columns: minmax(96px, 120px) minmax(0, 1fr);
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid rgba(229, 231, 235, 0.85);
  }

  .table-wrap td:first-child {
    border-top: 0;
  }

  .table-wrap td::before {
    content: attr(data-label);
    color: #0b2a45;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 1000;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .table-wrap td .btn {
    width: 100%;
  }

  .float {
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
  }

  .pill {
    display: flex;
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    min-height: 46px;
    padding: 10px 8px;
    font-size: 11px;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #fff;
  }

  .pill .icon {
    display: none;
  }

  .has-float {
    padding-bottom: calc(106px + env(safe-area-inset-bottom));
  }

  .has-float .toast {
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: min(calc(100vw - 24px), 420px);
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .topbar .inner {
    padding: 10px 12px;
    gap: 8px;
  }

  .nav {
    gap: 6px;
  }

  .nav a {
    padding: 7px 9px;
    font-size: 11px;
  }

  .brand {
    gap: 8px;
  }

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

  .brand-text strong,
  .brand-text b {
    font-size: 12px;
  }

  .brand-text small {
    font-size: 10px;
    line-height: 1.25;
  }

  .nav-cta .btn-soft {
    display: none;
  }

  .nav-cta .btn-primary {
    padding: 10px 11px;
    font-size: 12px;
  }

  .content-card,
  .article-card,
  .visit,
  .side-form,
  .visit-form {
    padding: 16px;
  }

  .hero-note-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-note,
  .visit {
    padding: 18px;
  }

  .hero-panel {
    padding: 12px 12px calc(102px + env(safe-area-inset-bottom));
    gap: 12px;
  }

  .overlay-head h1 {
    font-size: 22px;
  }

  .overlay-head,
  .overlay-list,
  .overlay-actions,
  .hero-note {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-title {
    font-size: 18px;
  }

  .stat-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .loc-map iframe {
    height: 260px;
  }

  .table-wrap td {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .modal {
    padding: 10px;
  }

  .float {
    left: 10px;
    right: 10px;
    gap: 6px;
  }

  .pill {
    min-height: 44px;
    padding: 9px 6px;
    font-size: 10.5px;
    border-radius: 14px;
    font-weight: 1100;
  }

  .modal-card {
    max-height: calc(100dvh - 20px);
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .modal-head,
  .modal-form {
    padding-left: 14px;
    padding-right: 14px;
  }

  .modal-visual {
    min-height: 168px;
  }

  .modal-head {
    padding-top: 18px;
    padding-bottom: 8px;
  }

  .modal-head h3 {
    font-size: 18px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
}
