@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #60a5fa;
  --blue-soft: #eff6ff;
  --blue-muted: #dbeafe;
  --violet: #7c3aed;
  --violet-soft: #f5f3ff;
  --accent: var(--blue);
  --accent-hover: var(--blue-dark);
  --accent-soft: var(--blue-soft);
  --cream: #f8fafc;
  --cream-dark: #f1f5f9;
  --ink: #0f172a;
  --ink-muted: #475569;
  --ink-faint: #94a3b8;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --white: #ffffff;
  --success: #22c55e;
  --whatsapp: #25d366;
  --gradient-hero: radial-gradient(ellipse 80% 60% at 70% -10%, rgba(37, 99, 235, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  --gradient-btn: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  --gradient-btn-hover: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.1);
  --radius: 14px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: var(--font-sans);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: clip;
}

body.nav-open { overflow: hidden; }

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

a:not(.btn) { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:not(.btn):hover { color: var(--blue-dark); }

.container {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  padding-top: env(safe-area-inset-top, 0);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a:not(.btn) {
  color: var(--ink-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-desktop a:not(.btn):hover { color: var(--ink); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

a.btn,
a.btn:hover,
a.btn:focus-visible {
  text-decoration: none;
}

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

.btn-primary {
  background: var(--gradient-btn);
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gradient-btn-hover);
  color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp-outline {
  background: var(--white);
  color: #128c7e !important;
  border: 1.5px solid #bbf7d0;
}

.btn-whatsapp-outline:hover {
  background: #f0fdf4;
  border-color: var(--whatsapp);
  color: #0f766e !important;
}

.nav-desktop .btn-primary {
  padding: 0.6rem 1.2rem;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .menu-toggle {
    margin-left: 0.25rem;
  }
}

.btn-outline {
  background: var(--white);
  color: var(--ink) !important;
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-dark) !important;
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover { border-color: var(--border-strong); background: var(--cream-dark); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover { background: #1fb855; color: #fff; }

.btn-lg { padding: 0.85rem 1.75rem; font-size: 0.95rem; min-height: 48px; }

.btn-row,
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero .hero-cta { margin-top: 1rem; }

.btn-row { margin-top: 1.5rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 0 1.25rem;
  gap: 0;
  border-top: 1px solid var(--border);
  background: var(--white);
  max-height: calc(100dvh - 4.5rem - env(safe-area-inset-top, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.open { display: flex; }

.nav-mobile a:not(.btn) {
  padding: 0.95rem 0;
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.nav-mobile .btn {
  margin-top: 1rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 0.9375rem;
}

/* ─── Hero ─── */
.hero {
  padding: 8.5rem 0 4rem;
  background: var(--cream);
  background-image: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.text-highlight {
  background: var(--gradient-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 500px;
}

.hero .hero-cta { margin-bottom: 2rem; gap: 0.65rem; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hero-meta-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-meta-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
}

.hero-meta-item span {
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Vibe strip — scrolling perks */
.vibe-strip {
  background: var(--ink);
  color: var(--white);
  padding: 0.85rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.06);
  display: flex;
}

.vibe-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: vibe-scroll 28s linear infinite;
  padding-left: 2.5rem;
}

.vibe-track span {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.92;
}

@keyframes vibe-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 3px;
  background: var(--gradient-btn);
  border-radius: 2px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-0.5deg);
  transition: transform 0.35s var(--bounce);
}

.product-card:hover {
  transform: rotate(0deg) scale(1.01);
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.product-card-dots {
  display: flex;
  gap: 6px;
}

.product-card-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.product-card-dots span:first-child { background: #f87171; }
.product-card-dots span:nth-child(2) { background: #fbbf24; }
.product-card-dots span:nth-child(3) { background: #34d399; }

.product-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card-body { padding: 1.25rem; }

.room-preview {
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 50%, #7c3aed 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.room-preview::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.room-preview .price-tag {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.room-preview .price-sub {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.room-preview .badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
}

.feature-rows { display: grid; gap: 0.5rem; }

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background: var(--cream);
  border-radius: 10px;
  font-size: 0.85rem;
}

.feature-row .label { color: var(--ink-muted); font-weight: 500; }

.feature-row .value {
  color: var(--ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

/* ─── Stats band ─── */
.stats-band {
  background: var(--gradient-btn);
  color: var(--white);
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item .number {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}

.stat-item .label {
  font-size: 0.82rem;
  opacity: 0.88;
  font-weight: 600;
}

/* ─── Sections ─── */
section { padding: 5.5rem 0; }

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.section-header p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ─── Amenities ─── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
}

.amenity-card:hover {
  border-color: var(--blue-muted);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--violet-soft) 100%);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--blue);
}

.amenity-icon svg { width: 22px; height: 22px; }

.amenity-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.amenity-card p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ─── Pricing ─── */
.pricing-section { background: var(--white); }

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pricing-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
}

.pricing-card .tag {
  display: inline-block;
  background: var(--gradient-btn);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.04em;
}

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

.check-list { list-style: none; display: grid; gap: 0.65rem; margin-bottom: 2rem; }

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ─── Location ─── */
.landmarks-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.landmarks-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  transition: border-color var(--transition);
}

.landmarks-list li:hover { border-color: var(--border-strong); }

.landmark-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.landmark-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
  line-height: 1.4;
  word-break: break-word;
}

.landmark-info span { font-size: 0.82rem; color: var(--ink-faint); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.map-embed iframe { width: 100%; height: 420px; border: 0; }

/* ─── Branch cards ─── */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.branch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}

.branch-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.branch-card h2,
.branch-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.branch-card p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.branch-tag {
  display: inline-block;
  font-size: 0.72rem;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}

/* ─── FAQ ─── */
.faq-section { background: var(--white); }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.35rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink-faint);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 1.35rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer { max-height: 600px; }

/* ─── Steps (Alma numbered) ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--white);
  background: var(--gradient-btn);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ─── Listings ─── */
.listings-section { background: var(--cream-dark); }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.listing-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: var(--ink);
  transition: all var(--transition);
}

.listing-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: translateY(-1px);
}

.listing-card.pending { opacity: 0.5; pointer-events: none; }

.listing-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.listing-card strong { display: block; font-size: 0.9rem; color: var(--ink); }
.listing-card span { font-size: 0.78rem; color: var(--ink-faint); }

.gbp-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 2.5rem;
}

.gbp-box h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.gbp-box pre {
  white-space: pre-wrap;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  background: var(--cream);
  padding: 1rem;
  border-radius: var(--radius);
}

.copy-btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background var(--transition);
}

.copy-btn:hover { background: var(--blue-dark); }

/* ─── SEO content ─── */
.seo-content { background: var(--white); border-top: 1px solid var(--border); }

.seo-content .prose {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.seo-content .prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.seo-content .prose h2:first-child { margin-top: 0; }
.seo-content .prose p { margin-bottom: 1rem; }

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.seo-links a {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 500;
  text-decoration: none;
}

.seo-links a:hover { border-color: var(--blue); color: var(--blue); }

/* Colleges grid */
.colleges-section { background: var(--white); border-top: 1px solid var(--border); }

/* ─── Community & culture ─── */
.culture-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 45%, #f8fafc 100%);
  border-top: 1px solid var(--border);
  padding-bottom: 1rem;
}

.culture-section .container {
  position: relative;
  z-index: 1;
}

.community-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.community-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: community-orb-float 18s ease-in-out infinite;
}

.community-orb--1 {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
  animation-delay: 0s;
}

.community-orb--2 {
  width: min(360px, 60vw);
  height: min(360px, 60vw);
  bottom: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28) 0%, transparent 70%);
  animation-delay: -6s;
}

.community-orb--3 {
  width: min(280px, 50vw);
  height: min(280px, 50vw);
  top: 42%;
  left: 38%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, transparent 70%);
  animation-delay: -12s;
}

@keyframes community-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.06); }
  66% { transform: translate(-16px, 14px) scale(0.96); }
}

.culture-intro {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.community-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}

.community-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  padding: 1.75rem 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 40px rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s var(--bounce), box-shadow 0.35s ease, border-color 0.35s ease;
}

.community-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 50px rgba(37, 99, 235, 0.14);
}

.community-tile--edu {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88) 0%, rgba(239, 246, 255, 0.75) 100%);
}

.community-sphere {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  line-height: 1;
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.12),
    0 0 0 6px rgba(255, 255, 255, 0.55);
  animation: community-sphere-pulse 4s ease-in-out infinite;
  transition: transform 0.35s var(--bounce);
}

.community-tile:hover .community-sphere {
  transform: scale(1.08) translateY(-2px);
}

.community-sphere--edu {
  background: linear-gradient(145deg, #60a5fa 0%, #2563eb 55%, #4f46e5 100%);
}

.community-sphere--friends {
  background: linear-gradient(145deg, #f472b6 0%, #ec4899 55%, #db2777 100%);
  animation-delay: -1.3s;
}

.community-sphere--life {
  background: linear-gradient(145deg, #34d399 0%, #10b981 55%, #059669 100%);
  animation-delay: -2.6s;
}

@keyframes community-sphere-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12), 0 0 0 6px rgba(255, 255, 255, 0.55); }
  50% { box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.35); }
}

.community-tile-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.community-tile-body p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

.community-festivals {
  text-align: center;
  padding-top: 0.25rem;
}

.culture-festivals-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.15rem;
}

.festival-orbit {
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0.35rem 0 0.75rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.festival-orbit-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  animation: festival-orbit-scroll 32s linear infinite;
  padding-inline: 0.85rem;
}

.festival-orbit:hover .festival-orbit-track {
  animation-play-state: paused;
}

@keyframes festival-orbit-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.festival-orb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s var(--bounce), box-shadow 0.25s ease;
}

.festival-orb:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.festival-orb-emoji {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.festival-orb--ganapati .festival-orb-emoji { background: linear-gradient(135deg, #fde68a, #f59e0b); }
.festival-orb--diwali .festival-orb-emoji { background: linear-gradient(135deg, #fef08a, #eab308); }
.festival-orb--holi .festival-orb-emoji { background: linear-gradient(135deg, #f9a8d4, #a855f7); }
.festival-orb--cricket .festival-orb-emoji { background: linear-gradient(135deg, #86efac, #16a34a); }
.festival-orb--movie .festival-orb-emoji { background: linear-gradient(135deg, #93c5fd, #2563eb); }

.culture-section .fade-in.visible:nth-child(2) .community-tile:nth-child(1),
.culture-section .community-bento .community-tile.fade-in.visible:nth-child(1) { transition-delay: 0ms; }
.culture-section .community-bento .community-tile.fade-in.visible:nth-child(2) { transition-delay: 80ms; }
.culture-section .community-bento .community-tile.fade-in.visible:nth-child(3) { transition-delay: 160ms; }
.culture-section .community-festivals.fade-in.visible { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .community-orb,
  .community-sphere,
  .festival-orbit-track {
    animation: none;
  }

  .community-tile:hover,
  .community-tile:hover .community-sphere,
  .festival-orb:hover {
    transform: none;
  }
}

/* ─── Gallery ─── */
.gallery-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.gallery-intro,
.reviews-intro {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, auto));
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.gallery-card--wide {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery-card:nth-child(5) { grid-column: 3; grid-row: 2; }

.gallery-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform 0.35s var(--bounce), box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card--wide img {
  aspect-ratio: 16 / 10;
  min-height: 100%;
}

.gallery-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.gallery-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.gallery-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.gallery-note a:hover { text-decoration: underline; }

/* ─── Reviews ─── */
.reviews-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-top: 1px solid var(--border);
}

.review-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.25rem 0 1.75rem;
}

.review-highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  text-align: center;
}

.review-highlight-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-soft);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.review-highlight h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.review-highlight p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}

.review-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.review-platform-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--bounce), border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-platform-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-muted);
  box-shadow: var(--shadow);
}

.review-platform-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.review-platform-badge--google {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.review-platform-body strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.review-platform-body span {
  font-size: 0.78rem;
  color: var(--ink-faint);
}

.review-platform-arrow {
  margin-left: auto;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 700;
}

.colleges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.college-chip {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.college-chip:hover {
  border-color: var(--blue-muted);
  border-left-color: var(--violet);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.college-chip strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  word-break: break-word;
}

.college-chip span {
  font-size: 0.78rem;
  color: var(--ink-faint);
}

/* ─── CTA ─── */
.cta-band {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #1e3a8a 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.035em;
}

.cta-band p { opacity: 0.9; margin-bottom: 2rem; font-size: 1.05rem; }

.cta-band .phone {
  font-family: var(--font-sans);
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-band .phone a { color: var(--white); text-decoration: none; }
.cta-band .btn-ghost {
  background: var(--white);
  color: var(--blue-dark) !important;
  border: none;
}

.cta-band .btn-ghost:hover {
  background: var(--blue-soft);
  color: var(--blue-dark) !important;
}

.cta-band .btn-ghost.cta-ghost-alt {
  background: transparent !important;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
}

.cta-band .btn-ghost.cta-ghost-alt:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.pricing-card .btn-outline {
  text-align: center;
}

/* ─── Footer ─── */
.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
  font-size: 0.875rem;
}

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

.footer-brand strong {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: rgba(255, 255, 255, 0.55); text-decoration: none; font-size: 0.85rem; }
.footer-grid a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Floating WA ─── */
.floating-wa {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.5rem + env(safe-area-inset-right, 0px));
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.25s var(--bounce);
  animation: wa-pulse 2.5s ease-in-out infinite;
  font-size: 1.5rem;
  line-height: 1;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

.floating-wa svg { width: 28px; height: 28px; fill: #fff; }
.floating-wa:hover { transform: scale(1.08); animation: none; }

/* ─── Landing pages ─── */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: var(--blue); }

.page-hero {
  padding: 8rem 0 3.5rem;
  background: var(--cream);
  background-image: var(--gradient-hero);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 720px;
  line-height: 1.1;
}

.page-hero p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.65;
}

.content-section { padding: 4rem 0; }

.content-section .prose {
  max-width: 720px;
  margin: 0 auto;
}

.content-section .prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.content-section .prose p {
  color: var(--ink-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.highlight-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.highlight-box strong { color: var(--blue-dark); }

.keyword-dl dt {
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.25rem;
  font-size: 0.92rem;
}

.keyword-dl dd {
  color: var(--ink-muted);
  font-size: 0.88rem;
  margin-left: 0;
  margin-bottom: 0.5rem;
}

.keyword-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
}

.keyword-tags li {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.keyword-guide { max-width: 900px; margin: 0 auto; }

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legacy compat — hide old elements if present */
.landmark-icon { display: none; }
.hero-card { display: none; }
.hero-price { display: none; }
.hero-badge { display: none; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-pillars { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-card--wide,
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-card--wide { grid-column: 1 / -1; }
  .review-highlights,
  .review-platforms { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .map-embed { min-height: 320px; }
  .map-embed iframe { height: 320px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 4.5rem; }

  .hero-grid,
  .location-grid,
  .pricing-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-desktop { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .header-inner { height: 64px; }

  .hero {
    padding: 6.5rem 0 3rem;
  }

  .page-hero {
    padding: 6.5rem 0 2.5rem;
  }

  section { padding: 3.5rem 0; }
  .content-section { padding: 3rem 0; }

  .product-card {
    max-width: 100%;
    margin-inline: auto;
    transform: none;
  }

  .product-card:hover {
    transform: none;
  }

  .community-bento {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .community-tile--edu {
    grid-column: 1 / -1;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .cta-band {
    padding: 3.5rem 0;
  }

  .cta-band h2 {
    font-size: clamp(1.6rem, 7vw, 2.25rem);
  }

  .cta-band .phone {
    font-size: 1.35rem;
  }

  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(1200px, calc(100% - 1.25rem));
  }

  .amenities-grid,
  .branch-grid,
  .colleges-grid {
    grid-template-columns: 1fr;
  }

  .culture-pillars,
  .community-bento {
    grid-template-columns: 1fr;
  }

  .community-tile {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.15rem;
  }

  .community-sphere {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .festival-orbit {
    margin: 0 -0.5rem;
  }

  .gallery-grid,
  .review-highlights,
  .review-platforms {
    grid-template-columns: 1fr;
  }

  .gallery-card--wide {
    grid-column: span 1;
  }

  .review-platform-card:hover,
  .gallery-card:hover {
    transform: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-item .number {
    font-size: 1.65rem;
  }

  .stat-item .label {
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    line-height: 1.1;
  }

  .hero-lead {
    font-size: 1rem;
    max-width: none;
  }

  .hero-cta,
  .btn-row,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn,
  .btn-row .btn,
  .cta-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero-meta-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
  }

  .hero-meta-item strong {
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  .hero-meta-item span {
    text-align: right;
    font-size: 0.8rem;
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
  }

  .page-hero p {
    font-size: 1rem;
  }

  .breadcrumb {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .highlight-box {
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
  }

  .pricing-card .price {
    font-size: 2.75rem;
  }

  .room-preview .price-tag {
    font-size: 1.85rem;
  }

  .map-embed {
    min-height: 260px;
  }

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

  .landmarks-list li {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .landmark-num {
    width: 26px;
    height: 26px;
    font-size: 0.68rem;
  }

  .landmark-info strong {
    font-size: 0.85rem;
  }

  .seo-links {
    gap: 0.4rem;
  }

  .seo-links a {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .floating-wa {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
    width: 52px;
    height: 52px;
  }

  main {
    padding-bottom: 4.5rem;
  }

  .logo-text strong {
    font-size: 0.92rem;
  }

  .vibe-track span {
    font-size: 0.8rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1.1rem 0;
  }

  .faq-answer-inner {
    font-size: 0.9rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .amenity-card {
    padding: 1.35rem 1.25rem;
  }

  .college-chip {
    padding: 0.9rem 1rem;
  }

  .text-center.mt-2 .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0 0 !important;
  }
}

@media (max-width: 380px) {
  .logo-text span {
    display: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .btn-primary:hover,
  .amenity-card:hover,
  .college-chip:hover,
  .step-card:hover,
  .branch-card:hover,
  .listing-card:hover,
  .hero-meta-item:hover,
  .product-card:hover,
  .community-tile:hover,
  .community-tile:hover .community-sphere,
  .festival-orb:hover {
    transform: none;
  }
}
