/* ===================================================================
   Century WinningKind -- Microsite Stylesheet
   Child-centric township at Attur Layout, Yelahanka, Bengaluru
   =================================================================== */

/* ----- CSS Variables ----- */
:root {
  --primary: #1b6b4a;
  --primary-dark: #145236;
  --primary-light: #e6f2ec;
  --accent: #e8a838;
  --accent-dark: #c8892a;
  --accent-light: #fdf3e0;
  --ink: #1a1a1a;
  --ink-secondary: #4a4a4a;
  --ink-muted: #717171;
  --paper: #ffffff;
  --paper-warm: #faf9f6;
  --paper-alt: #f5f5f0;
  --border: #e0ddd7;
  --border-light: #eeebe5;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --nav-height: 64px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: anywhere;
  word-break: break-word;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.7rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

strong { font-weight: 600; }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ----- Staging Banner ----- */
.staging-banner {
  background: #fbbf24;
  color: #1a1a1a;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1100;
}

body.has-staging-banner { padding-top: 0; }
body.has-staging-banner .site-nav { top: 0; }

/* ----- Navigation ----- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  width: 160px;
  height: 36px;
  object-fit: contain;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--primary);
  background: var(--primary-light);
}

.btn-nav-cta {
  background: var(--primary) !important;
  color: var(--paper) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.btn-nav-cta:hover {
  background: var(--primary-dark) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
  left: 9px;
}
.nav-toggle-icon { top: 50%; transform: translateY(-50%); }
.nav-toggle-icon::before { content: ''; top: -7px; }
.nav-toggle-icon::after { content: ''; top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }

/* Inner page nav */
.inner-page .site-nav {
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

/* ----- Hero (homepage) ----- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 60%, #1b7d54 100%);
  overflow: hidden;
  color: var(--paper);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') repeat;
  background-size: 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 168, 56, 0.15);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(232, 168, 56, 0.3);
}

.hero h1 {
  color: var(--paper);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: 1rem;
  max-width: 700px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  opacity: 0.9;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  min-width: 130px;
  backdrop-filter: blur(8px);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.hero-stat-label {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 0.15rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ----- Hero Inner (subpages) ----- */
.hero-inner {
  background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--paper);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.hero-inner h1 {
  color: var(--paper);
  margin-bottom: 0.75rem;
}

.hero-inner p {
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.4;
}

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--paper);
  color: var(--paper);
}

.btn-secondary {
  background: var(--primary);
  color: var(--paper);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--paper);
}

/* ----- Sections ----- */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--paper-warm);
}

.section-muted {
  background: var(--paper-alt);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--ink-secondary);
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* ----- Stat Cards ----- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-card-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-card-label {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* ----- Pricing Table ----- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.pricing-card-type {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-card-area {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.pricing-card-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.pricing-card-psf {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.pricing-card-details {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.pricing-card-details li {
  font-size: 0.9rem;
  padding: 0.35rem 0;
  color: var(--ink-secondary);
}

/* ----- Amenity Grid ----- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.amenity-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.amenity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.amenity-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.amenity-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* ----- Gallery Grid ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--paper);
  padding: 2rem 1rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ----- Floor Plan Grid ----- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.plan-card:hover {
  box-shadow: var(--shadow-lg);
}

.plan-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--paper-alt);
  padding: 1rem;
}

.plan-card-info {
  padding: 1.25rem;
}

.plan-card-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.plan-card-info p {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* ----- Master Plan Section ----- */
.masterplan-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.masterplan-image img {
  width: 100%;
  height: auto;
}

/* ----- Location Map ----- */
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-map img {
  width: 100%;
  height: auto;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.distance-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.distance-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
}

.distance-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.distance-card li {
  font-size: 0.9rem;
  padding: 0.4rem 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}
.distance-card li:last-child { border-bottom: none; }

/* ----- FAQ Accordion ----- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: var(--paper);
  border: none;
  padding: 1.25rem 3rem 1.25rem 1.25rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-question:hover { color: var(--primary); }

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-item.is-active .faq-question::after {
  content: '\2212';
}

.faq-item.is-active .faq-question {
  color: var(--primary);
  background: var(--primary-light);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer ul { padding-left: 1.25rem; }

/* ----- Contact Form ----- */
.contact-section {
  max-width: 640px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

#contact-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 2rem;
  background: var(--primary);
  color: var(--paper);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}

#contact-form button[type="submit"]:hover {
  background: var(--primary-dark);
}

#contact-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#form-message {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ----- Review Cards ----- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.review-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-size: 0.95rem;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.review-meta {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* ----- Info Blocks ----- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-block {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.info-block h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ----- Two Column Layout ----- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ----- Content Prose ----- */
.prose { max-width: 800px; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 2rem; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.prose th, .prose td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.prose th {
  background: var(--primary-light);
  font-weight: 600;
  color: var(--primary-dark);
}
.prose tr:hover td { background: var(--paper-warm); }

/* ----- RERA Badge ----- */
.rera-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  border: 1px solid rgba(27, 107, 74, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 500;
  overflow-wrap: anywhere;
  min-width: 0;
}

/* ----- Highlight Box ----- */
.highlight-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p { color: var(--ink-secondary); }

/* ----- CTA Section ----- */
.cta-section {
  background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--paper);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-section h2 { color: var(--paper); }
.cta-section p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ----- Footer ----- */
.site-footer {
  background: #0f0f0f;
  color: #b0b0b0;
  padding: 3rem 0 1.5rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  color: var(--paper);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  line-height: 1.6;
  max-width: 360px;
}

.footer-links h4 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.4rem; }

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #777;
}

.footer-rera {
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

/* ----- 404 Page ----- */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.page-404 h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
    gap: 0;
  }

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

  .nav-menu a {
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .btn-nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero { min-height: 80vh; }
  .hero-stats { gap: 0.75rem; }
  .hero-stat { min-width: 110px; padding: 0.75rem 1rem; }
}

@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 3rem 1.25rem; }
  .hero h1 { font-size: 2rem; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .distance-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .amenity-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .hero-stat { width: 100%; }
}

/* ----- Discovery Zones (special section) ----- */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.zone-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.zone-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.zone-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.zone-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.zone-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* ----- Utility ----- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--ink-muted); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
