/* ==========================================================================
   Vardhan Constructions — Shared Stylesheet
   Palette: Rose Gold / Ruby Red / Charcoal Black / Blue on White
   ========================================================================== */

:root {
  --rose-gold: #B76E79;
  --rose-gold-light: #D9A6AE;
  --ruby-red: #9B111E;
  --ruby-red-dark: #7A0D18;
  --charcoal: #26282B;
  --charcoal-soft: #3F4247;
  --blue: #1E4B8C;
  --blue-light: #2E6FBA;
  --white: #FFFFFF;
  --off-white: #FAF8F7;
  --border: #E7E1DF;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 2px 8px rgba(38, 40, 43, 0.08);
  --shadow-md: 0 8px 24px rgba(38, 40, 43, 0.12);
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ruby-red);
  margin-bottom: 12px;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-charcoal {
  background: var(--charcoal);
  color: var(--white);
}
.section-charcoal h2, .section-charcoal h3 { color: var(--white); }

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

.lede {
  max-width: 640px;
  color: var(--charcoal-soft);
  font-size: 1.08rem;
}
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--ruby-red);
  color: var(--white);
}
.btn-primary:hover { background: var(--ruby-red-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--charcoal); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: #163a6c; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--charcoal);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--ruby-red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Header wordmark logo */
.brand-wordmark {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand:hover .brand-wordmark { transform: scale(1.03); }
.site-header.scrolled .brand-wordmark { height: 34px; }

/* Footer full logo */
.footer-logo {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 6px;
}
.footer-logo img {
  width: 150px;
  height: auto;
  display: block;
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #C9CACD;
  transition: transform 0.25s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { transform: translateY(-3px); color: var(--white); }
.footer-social a.social-whatsapp:hover { background: var(--whatsapp); border-color: var(--whatsapp); }
.footer-social a.social-fb:hover { background: #1877F2; border-color: #1877F2; }
.footer-social a.social-ig:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B 55%, #8134AF);
  border-color: #DD2A7B;
}

/* Contact-card social hover colours */
.social-row a.social-fb:hover { background: #1877F2; border-color: #1877F2; }
.social-row a.social-ig:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B 55%, #8134AF);
  border-color: #DD2A7B;
}

/* Footer wordmark */
.footer-wordmark { display: inline-block; margin-bottom: 8px; }
.footer-wordmark img { width: 190px; height: auto; display: block; }

/* Logo panel (About page) */
.logo-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}
.logo-panel img { width: 100%; max-width: 360px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ruby-red);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--rose-gold);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--charcoal) 0%, #34363b 60%, var(--blue) 160%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(183, 110, 121, 0.35), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(30, 75, 140, 0.4), transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding-top: 96px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

/* Give the hero slideshow more room on wide screens */
@media (min-width: 1181px) {
  .hero-inner { grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .eyebrow { color: var(--rose-gold-light); }
.hero p.lede { color: #D9D9DC; margin-bottom: 34px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 30px;
}
.hero-stats .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-gold-light);
}
.hero-stats .stat-label {
  font-size: 0.8rem;
  color: #C9CACD;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.15);
}

.placeholder-img {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  text-align: center;
  padding: 20px;
}

.placeholder-img svg { width: 46px; height: 46px; opacity: 0.85; }

.ph-blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.ph-rose { background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light)); }
.ph-ruby { background: linear-gradient(135deg, var(--ruby-red), var(--ruby-red-dark)); }
.ph-charcoal { background: linear-gradient(135deg, var(--charcoal), var(--charcoal-soft)); }

/* ---------- Page header banner (interior pages) ---------- */
.page-banner {
  background: linear-gradient(120deg, var(--charcoal), var(--blue));
  color: var(--white);
  padding: 70px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,110,121,0.35), transparent 70%);
}
.page-banner h1 { color: var(--white); margin-bottom: 10px; }
.breadcrumb { font-size: 0.85rem; color: #D9D9DC; }
.breadcrumb a { color: var(--rose-gold-light); font-weight: 600; }

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
}
.card-icon svg { width: 26px; height: 26px; }

.icon-rose { background: linear-gradient(135deg, var(--rose-gold), var(--ruby-red)); }
.icon-blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.icon-charcoal { background: linear-gradient(135deg, var(--charcoal), var(--charcoal-soft)); }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--charcoal-soft); font-size: 0.96rem; }

/* Section head w/ divider accent */
.section-head { margin-bottom: 50px; }
.accent-bar {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--ruby-red));
  margin: 14px 0 20px;
}
.section-head.text-center .accent-bar { margin-left: auto; margin-right: auto; }

/* ---------- Project gallery ---------- */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.project-card .placeholder-img { aspect-ratio: 16/10; }
.project-body { padding: 22px 22px 26px; }
.project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(30, 75, 140, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.project-body h3 { margin-bottom: 8px; }
.project-body p { color: var(--charcoal-soft); font-size: 0.92rem; margin-bottom: 14px; }
.project-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--rose-gold); color: var(--ruby-red); }
.filter-btn.active {
  background: var(--ruby-red);
  border-color: var(--ruby-red);
  color: var(--white);
}

/* ---------- Timeline / process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: 10px;
}
.process-step .step-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--rose-gold);
  opacity: 0.5;
  margin-bottom: 6px;
}
.process-step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { color: var(--charcoal-soft); font-size: 0.9rem; }

/* ---------- Values / About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.stat-box {
  border-left: 3px solid var(--ruby-red);
  padding-left: 16px;
}
.stat-box .stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--charcoal);
}
.stat-box .stat-label { font-size: 0.85rem; color: var(--charcoal-soft); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-avatar {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  max-width: 160px;
  margin: 0 auto 18px;
}
.team-card h3 { margin-bottom: 4px; }
.team-role { color: var(--ruby-red); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-card p { color: var(--charcoal-soft); font-size: 0.9rem; }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  border-left: 4px solid var(--rose-gold);
}
.testimonial p { font-size: 1.05rem; font-style: italic; color: var(--charcoal-soft); margin-bottom: 20px; }
.testimonial-author { font-weight: 700; color: var(--charcoal); }
.testimonial-role { font-size: 0.82rem; color: var(--blue); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--ruby-red), var(--rose-gold));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Forms ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-info-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 22px 0;
}
.info-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--rose-gold), var(--ruby-red));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; color: var(--white); }
.info-item h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.info-item p, .info-item a { color: #C9CACD; font-size: 0.9rem; }
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.social-row a:hover { background: var(--rose-gold); border-color: var(--rose-gold); }
.social-row svg { width: 16px; height: 16px; }

/* Embedded Google Map */
.map-embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--off-white);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ruby-red);
}
.map-link:hover { color: var(--ruby-red-dark); }
.map-link svg { width: 15px; height: 15px; }

.map-placeholder {
  margin-top: 20px;
  border-radius: var(--radius);
  height: 220px;
  background: repeating-linear-gradient(45deg, var(--off-white), var(--off-white) 12px, #F0EBE9 12px, #F0EBE9 24px);
  border: 1.5px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-soft);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--charcoal); }
.faq-item p { color: var(--charcoal-soft); font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: #C9CACD;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { font-size: 0.9rem; color: #B7B9BC; transition: color 0.2s ease; }
.footer-grid ul li a:hover { color: var(--rose-gold-light); }
.footer-brand p { font-size: 0.88rem; margin: 14px 0 20px; color: #ABADB0; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #9A9C9F;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #9A9C9F; }
.footer-bottom a:hover { color: var(--rose-gold-light); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.footer-legal a {
  position: relative;
  transition: color .25s ease;
}
.footer-legal a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--rose-gold-light);
  transition: width .3s ease;
}
.footer-legal a:hover::after { width: 100%; }

/* ==========================================================================
   Legal documents (Disclaimer / Privacy Policy / Terms & Conditions)
   ========================================================================== */
.legal-doc {
  max-width: 820px;
  margin: 0 auto;
  color: var(--charcoal-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}
.legal-doc h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--charcoal);
  margin: 48px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.legal-doc > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-doc h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 30px 0 10px;
}
.legal-doc h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ruby-red);
  margin: 22px 0 8px;
}
.legal-doc p { margin: 0 0 16px; }
.legal-doc strong { color: var(--charcoal); font-weight: 600; }
.legal-doc ul, .legal-doc ol { margin: 0 0 18px; padding-left: 22px; }
.legal-doc li { margin-bottom: 9px; }
.legal-doc li::marker { color: var(--rose-gold); }
.legal-doc a {
  color: var(--ruby-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-doc a:hover { color: var(--rose-gold); }
.legal-doc blockquote {
  margin: 0 0 18px;
  padding: 14px 20px;
  border-left: 3px solid var(--rose-gold);
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
}

@media (max-width: 720px) {
  .legal-doc { font-size: 0.94rem; }
  .legal-doc h2 { font-size: 1.28rem; margin-top: 36px; padding-top: 22px; }
  /* keep the footer's last line clear of the floating WhatsApp / back-to-top buttons */
  .site-footer { padding-bottom: 96px; }
  .footer-bottom { justify-content: flex-start; }
  .footer-legal { gap: 6px 16px; }
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-14px) scale(1.03); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.6; }
}

@keyframes drawLine {
  from { width: 0; }
  to   { width: 56px; }
}

/* Scroll-reveal: elements start hidden, JS toggles .in-view on intersect */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* If JS never loads, don't leave content permanently hidden */
.no-js .reveal { opacity: 1; transform: none; }

/* Hero entrance animation (runs on load, no scroll trigger needed) */
.hero-inner > div:first-child > * {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero .eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero p.lede { animation-delay: 0.28s; }
.hero-actions { animation-delay: 0.4s; }
.hero-stats { animation-delay: 0.52s; }

.hero-visual {
  opacity: 0;
  animation: fadeIn 1s ease 0.35s forwards;
}

.hero::before {
  animation: pulseGlow 6s ease-in-out infinite;
}

/* Accent bars draw in when revealed */
.accent-bar {
  width: 0;
  animation: none;
}
.reveal.in-view .accent-bar,
.section-head .accent-bar {
  animation: drawLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

/* Sticky header: subtle shrink + shadow once page is scrolled */
.site-header {
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled .nav { padding-top: 10px; padding-bottom: 10px; }
.brand-mark { transition: transform 0.4s ease; }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }

/* Nav link underline sweep on hover */
.nav-links a {
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--rose-gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; background: var(--rose-gold); }

/* Buttons: lift + soft scale */
.btn {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(-1px) scale(0.98); }

/* Card hover polish */
.card, .project-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover { border-color: var(--rose-gold); }
.card-icon { transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.card:hover .card-icon { transform: scale(1.1) rotate(-4deg); }

/* Project photo placeholder zoom-on-hover */
.project-card { overflow: hidden; }
.project-card .placeholder-img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover .placeholder-img { transform: scale(1.06); }

/* Team avatar gentle float */
.team-card .placeholder-img { transition: transform 0.4s ease; }
.team-card:hover .placeholder-img { transform: translateY(-6px); }

/* Stat numbers pop in when counted (class toggled by JS) */
.stat-num, .hero-stats .stat-num {
  display: inline-block;
}
.counting { animation: fadeIn 0.3s ease; }

/* Filter bar buttons */
.filter-btn {
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.filter-btn:hover { transform: translateY(-2px); }

/* Project grid re-flow when filtering */
.grid-3 .project-card,
[data-category] {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
[data-category].filtering-out {
  opacity: 0;
  transform: scale(0.94);
}

/* Testimonial + CTA subtle entrance handled via .reveal */

/* Social icons hover */
.social-row a { transition: transform 0.25s ease, background-color 0.2s ease, border-color 0.2s ease; }
.social-row a:hover { transform: translateY(-3px); }

/* Form field focus micro-interaction */
.form-group input,
.form-group select,
.form-group textarea {
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(30, 75, 140, 0.12);
}

#form-feedback.show {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Back-to-top button */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ruby-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease, visibility 0.3s;
  box-shadow: var(--shadow-md);
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--ruby-red-dark); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- WhatsApp click-to-chat ---------- */
:root {
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
}

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), var(--shadow-md); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), var(--shadow-md); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), var(--shadow-md); }
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0;
  height: 54px;
  padding: 0 6px;
  border-radius: 30px;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--shadow-md);
  animation: waPulse 2.6s ease-out infinite;
  transition: background-color 0.2s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}
.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  padding-right: 18px;
  animation: none;
}
.whatsapp-float-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-float-icon svg { width: 26px; height: 26px; }
.whatsapp-float-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transition: max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, margin 0.3s ease;
}
.whatsapp-float:hover .whatsapp-float-label {
  max-width: 180px;
  opacity: 1;
  margin-left: 4px;
}

/* WhatsApp-coloured variants of existing components */
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-whatsapp svg { width: 18px; height: 18px; }

.info-icon.icon-whatsapp { background: var(--whatsapp); }
.social-row a.social-whatsapp:hover { background: var(--whatsapp); border-color: var(--whatsapp); }

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.form-actions .or { font-size: 0.85rem; color: var(--charcoal-soft); }

@media (max-width: 720px) {
  .whatsapp-float { left: 16px; bottom: 16px; }
  .back-to-top { right: 16px; bottom: 16px; }
  /* On phones show the label permanently so the button is unmistakable */
  .whatsapp-float { padding-right: 16px; }
  .whatsapp-float-label { max-width: 180px; opacity: 1; margin-left: 4px; }
}

/* ==========================================================================
   Project detail page (e.g. Sai Niwas Nagar)
   ========================================================================== */

.project-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--charcoal);
}
.project-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.project-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,40,43,0.92) 0%, rgba(38,40,43,0.55) 45%, rgba(38,40,43,0.15) 100%);
}
.project-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 56px;
}
.project-hero h1 { color: var(--white); margin: 10px 0 12px; }
.project-hero .lede { color: #E3E3E6; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ruby-red);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 20px;
}
.status-pill::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  animation: waPulse 2.4s ease-out infinite;
}

.jv-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #E3E3E6;
  margin-bottom: 18px;
}
.jv-line strong { color: var(--rose-gold-light); font-weight: 700; }
.jv-line .sep { width: 28px; height: 1px; background: var(--rose-gold-light); opacity: 0.6; }

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* Facts strip below hero */
.facts-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.fact {
  padding: 26px 22px;
  border-right: 1px solid var(--border);
}
.fact:last-child { border-right: none; }
.fact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.fact-value {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}
.fact-sub {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  margin-top: 3px;
  letter-spacing: 0.01em;
}
.fact-sub {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
}

/* Highlights checklist */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.highlight-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--rose-gold), var(--ruby-red));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.highlight-icon svg { width: 18px; height: 18px; }
.highlight p { color: var(--charcoal); font-weight: 500; font-size: 0.97rem; margin: 0; padding-top: 5px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--off-white);
  border: 1px solid var(--border);
}
.gallery-item.wide { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to top, rgba(38,40,43,0.8), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* Floor plans */
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.floorplan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.floorplan-card .plan-img {
  background: var(--off-white);
  padding: 20px;
  display: flex;
  justify-content: center;
  cursor: zoom-in;
}
.floorplan-card .plan-img img {
  max-height: 520px;
  width: auto;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
}
.floorplan-card .plan-img:hover img { transform: scale(1.02); }
.plan-body { padding: 24px 26px 28px; }
.plan-body h3 { margin-bottom: 6px; }
.plan-body .plan-sub { font-size: 0.85rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.room-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}
.room-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.88rem;
  padding: 7px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--charcoal-soft);
}
.room-list li span:last-child { color: var(--charcoal); font-weight: 600; white-space: nowrap; }

/* Location distances */
.distance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}
.distance-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.distance-list .km {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ruby-red);
  white-space: nowrap;
}
.distance-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  margin: 0 4px;
  min-width: 20px;
}

/* Amenities grid (project pages) */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.amenity {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--rose-gold); }
.amenity-icon {
  width: 46px; height: 46px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.amenity-icon svg { width: 22px; height: 22px; }
.amenity h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.amenity p { font-size: 0.8rem; color: var(--charcoal-soft); line-height: 1.5; }

/* Quote / statement block */
.statement {
  background: var(--white);
  border-left: 4px solid var(--ruby-red);
  border-radius: var(--radius);
  padding: 34px 38px;
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin: 0 auto;
}
.statement p {
  font-family: var(--font-head);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--charcoal);
}

@media (max-width: 900px) { .amenity-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } .statement { padding: 26px 22px; } }

/* Management profile card (About page) */
.profile-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.profile-photo { border-radius: var(--radius); overflow: hidden; }
.profile-photo img { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 4/5; }
.profile-body h3 { font-size: 1.7rem; margin-bottom: 4px; }
.profile-role {
  color: var(--ruby-red);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.profile-body p { color: var(--charcoal-soft); font-size: 1rem; margin-bottom: 12px; }
.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.profile-stats .stat-num { font-size: 1.5rem; }
@media (max-width: 720px) {
  .profile-card { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .profile-photo { max-width: 260px; }
  .profile-stats { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Preloader — minimal progress
   Shown once per browsing session; hidden entirely when the visitor has
   already seen it or prefers reduced motion (class set by the inline
   script in each page's <head> before first paint, so there is no flash).
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.45s ease, visibility 0.45s;
}
.preloader-wordmark {
  width: 200px;
  max-width: 55vw;
  height: auto;
  opacity: 0;
  transform: translateY(6px);
  animation: plFadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}
.preloader-track {
  position: relative;
  display: block;
  width: 200px;
  max-width: 55vw;
  height: 2px;
  border-radius: 2px;
  background: var(--border);
  overflow: hidden;
  opacity: 0;
  animation: plFadeUp 0.35s ease 0.25s forwards;
}
.preloader-fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--rose-gold), var(--ruby-red));
  transition: width 0.35s ease;
}
@keyframes plFadeUp { to { opacity: 1; transform: translateY(0); } }

.preloader.is-done { opacity: 0; visibility: hidden; }
html.no-preloader .preloader { display: none; }
html.preloading, html.preloading body { overflow: hidden; }

/* Branded symbol panel (replaces photo placeholders) */
.mark-panel {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(183,110,121,0.18), transparent 55%),
    linear-gradient(135deg, var(--charcoal) 0%, #33363b 55%, var(--blue) 190%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--border);
}
/* subtle blueprint grid */
.mark-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 50%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 35%, transparent 78%);
}
.mark-panel-emblem {
  position: relative;
  width: 42%;
  max-width: 210px;
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,0.45));
  animation: floatSlow 7s ease-in-out infinite;
}
.mark-panel-caption {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
}

/* Hero project slideshow */
.hero-slider { position: relative; }
.hero-slider .slides {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slider .slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slider .slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 6s linear;
}
.hero-slider .slide.is-active img { transform: scale(1); }
.hero-slider .status-pill { position: absolute; top: 16px; left: 16px; }
.slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 56px 26px 22px;
  background: linear-gradient(to top, rgba(20,21,23,0.85), transparent);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.slide-caption strong { font-family: var(--font-head); font-size: 1.35rem; }
.slide-caption span { font-size: 0.86rem; color: #D9D9DC; letter-spacing: 0.02em; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(20,21,23,0.45);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.slider-btn:hover { background: var(--ruby-red); border-color: var(--ruby-red); }
.slider-btn svg { width: 20px; height: 20px; }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-dots {
  position: absolute;
  right: 16px; top: 16px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.slider-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.slider-dots button.is-active { background: var(--white); transform: scale(1.3); }

/* Knowledge Hub articles (expandable) */
.article-list { display: grid; gap: 18px; max-width: 900px; margin: 0 auto; }
.article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.article:hover { box-shadow: var(--shadow-md); border-color: var(--rose-gold); }
.article[open] { border-color: var(--rose-gold); box-shadow: var(--shadow-md); }
.article summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 28px;
  position: relative;
}
.article summary::-webkit-details-marker { display: none; }
.article-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(30, 75, 140, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.article summary h3 { font-size: 1.25rem; margin-bottom: 8px; padding-right: 90px; }
.article summary p { color: var(--charcoal-soft); font-size: 0.95rem; margin: 0; max-width: 700px; }
.article-more {
  position: absolute;
  top: 26px; right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ruby-red);
}
.article-more svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.article[open] .article-more svg { transform: rotate(180deg); }
.article-body {
  padding: 0 28px 28px;
  border-top: 1px solid var(--border);
  animation: fadeIn 0.35s ease;
}
.article-body p { color: var(--charcoal-soft); font-size: 1rem; line-height: 1.75; margin-top: 18px; }
.article-body p:first-child { margin-top: 22px; }
@media (max-width: 720px) {
  .article summary { padding: 20px; }
  .article summary h3 { padding-right: 0; font-size: 1.1rem; }
  .article-more { position: static; margin-top: 12px; }
  .article-body { padding: 0 20px 22px; }
}

/* Vision & Mission cards (on charcoal section) */
.vm-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--rose-gold);
  border-radius: var(--radius);
  padding: 36px 34px 34px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}
.vm-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
.vm-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose-gold), var(--ruby-red));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.vm-icon svg { width: 24px; height: 24px; }
.vm-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 10px;
}
.vm-card p {
  font-family: var(--font-head);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--white);
}

/* Why choose (numbered feature cards) */
.reason-card {
  position: relative;
  padding: 30px 26px 28px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--rose-gold);
  border-radius: var(--radius);
}
.reason-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.reason-card p { color: var(--charcoal-soft); font-size: 0.94rem; }

/* Enquiry panel */
.enquiry-panel {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}
.enquiry-panel h2 { color: var(--white); margin-bottom: 10px; }
.enquiry-panel p { color: #C9CACD; }
.enquiry-actions { display: flex; flex-direction: column; gap: 12px; }
.enquiry-actions .btn { justify-content: center; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 21, 23, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(94vw, 1600px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.open img { transform: scale(1); }
.lightbox-caption {
  position: absolute;
  bottom: 22px;
  left: 0; right: 0;
  text-align: center;
  color: #D9D9DC;
  font-size: 0.9rem;
}
.lightbox-btn {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.lightbox-btn:hover { background: var(--ruby-red); border-color: var(--ruby-red); }
.lightbox-btn svg { width: 20px; height: 20px; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
body.lightbox-open { overflow: hidden; }

/* Project card with a real image (replaces placeholder-img) */
.project-card .project-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--off-white);
}
.project-card .project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover .project-img img { transform: scale(1.06); }
.project-card .status-pill { position: absolute; top: 14px; left: 14px; z-index: 1; }
.project-card { position: relative; }

/* Home page feature block */
.feature-project {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.feature-project .feature-img {
  position: relative;
  min-height: 380px;
}
.feature-project .feature-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-project .feature-img .status-pill { position: absolute; top: 18px; left: 18px; }
.feature-body { padding: 40px 38px; display: flex; flex-direction: column; justify-content: center; }
.feature-body h3 { font-size: 1.7rem; margin-bottom: 6px; }
.feature-body .feature-loc { color: var(--blue); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.feature-body p { color: var(--charcoal-soft); margin-bottom: 20px; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.feature-chips span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--charcoal);
}
.feature-body .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.project-body .feature-chips { margin: 4px 0 18px; }

@media (max-width: 900px) {
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .fact:nth-child(3n) { border-right: none; }
  .fact { border-bottom: 1px solid var(--border); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 2; grid-row: span 1; }
  .floorplan-grid { grid-template-columns: 1fr; }
  .enquiry-panel { grid-template-columns: 1fr; }
  .feature-project { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .project-hero { min-height: 460px; }
  .jv-line { display: block; line-height: 1.6; }
  .jv-line .sep { display: inline-block; width: 0; height: 0; margin: 0 0.3em; }
  .jv-line strong { white-space: nowrap; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact { border-right: none; }
  .fact:nth-child(odd) { border-right: 1px solid var(--border); }
  .highlight-grid, .distance-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gallery-item.wide { grid-column: span 1; }
  .room-list { grid-template-columns: 1fr; }
  .enquiry-panel { padding: 32px 24px; }
  .feature-body { padding: 28px 22px; }
}

/* ---------- Responsive ---------- */
/* Tighten the header between tablet and desktop so the longer CTA fits */
@media (max-width: 1080px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.88rem; }
  .nav-cta .btn { padding: 11px 18px; font-size: 0.85rem; }
  .brand-wordmark { height: 32px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 80px; padding-bottom: 56px; gap: 36px; }
  .hero-slider .slides { aspect-ratio: 16/11; }
  .mark-panel { aspect-ratio: 16/11; }
  .about-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .section { padding: 60px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
}
