/* =========================================================================
   Parvati Developers — Frontend Stylesheet
   Design language: Luxury Architecture + Trust
   ========================================================================= */

:root {
  --cream:        #FAF7F1;
  --cream-deep:   #F1EADC;
  --charcoal:     #14171F;
  --charcoal-2:   #1D212C;
  --ink:          #23262E;
  --ink-soft:     #6B6E76;
  --gold:         #B78E4A;
  --gold-light:   #D8B876;
  --gold-deep:    #8C6A30;
  --white:        #FFFFFF;
  --line:         #E7E0D2;
  --radius-sm: 4px;
  --radius-md: 6px;
  --shadow-soft: 0 18px 40px rgba(20, 23, 31, 0.10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1240px;
}

*,*::before,*::after { box-sizing: border-box; }
svg { width: 1em; height: 1em; flex-shrink: 0; vertical-align: -0.125em; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; margin: 0 0 .5em; color: var(--charcoal); }
p { margin: 0 0 1em; color: var(--ink-soft); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--charcoal); color: #fff; padding: 12px 18px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  font-size: .92rem; font-weight: 600; letter-spacing: .02em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline-dark { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline-dark:hover { background: rgba(255,255,255,.12); }
.btn-outline { border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

.eyebrow { color: var(--gold-deep); font-weight: 700; font-size: .8rem; letter-spacing: .06em; margin-bottom: 10px; display: block; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section { padding: 96px 0; }
.section-alt { background: var(--cream-deep); }
.section-dark { background: var(--charcoal); color: #fff; }
.section-dark p { color: rgba(255,255,255,.68); }
.section-dark h2, .section-dark h3 { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(20,23,31,.94);
  backdrop-filter: blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { 
    
    max-height: 100px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(72%) sepia(35%) saturate(680%) hue-rotate(359deg) brightness(95%) contrast(88%);
    
}
.brand-mark {
  width: 40px; height: 40px; border-radius: 3px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold-deep));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem;
}
.brand-name { color: #fff; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .02em; }
.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a { color: rgba(255,255,255,.82); font-size: .95rem; font-weight: 500; padding: 6px 0; position: relative; }
.main-nav a.active, .main-nav a:hover { color: var(--gold-light); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; background: var(--charcoal-2);
  min-width: 210px; padding: 8px 0; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 20px; color: rgba(255,255,255,.75); }
.dropdown a:hover { background: rgba(255,255,255,.06); color: var(--gold-light); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: flex-end;
  color: #fff; background-size: cover; background-position: center;
  background-color: var(--charcoal);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,23,31,.55) 0%, rgba(20,23,31,.35) 40%, rgba(15,17,23,.92) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-bottom: 76px; max-width: 720px; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: .4em; }
.hero h1 .accent { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 540px; }
.hero-ctas { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* ---------- Hero quick-contact rail ---------- */
.hero-quick-contact {
  position: absolute; right: 0; top: 34%; z-index: 3;
  display: flex; flex-direction: column;
}
.hero-quick-contact a {
  width: 56px; height: 56px; background: rgba(20,23,31,.55); border-bottom: 1px solid rgba(255,255,255,.14);
  color: #fff; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
}
.hero-quick-contact a:hover { background: var(--gold); }
.hero-quick-contact svg { width: 20px; height: 20px; }
@media (max-width: 860px) { .hero-quick-contact { display: none; } }

/* ---------- Why Us strip ---------- */
.why-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.why-item { padding: 34px 20px; text-align: center; border-left: 1px solid var(--line); }
.why-item:first-child { border-left: none; }
.why-icon { width: 42px; height: 42px; margin: 0 auto 14px; color: var(--gold); }
.why-item h3 { font-family: var(--font-body); font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.why-item p { font-size: .82rem; margin: 0; }

/* ---------- Mission / Vision / About trio ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr) 1.1fr; gap: 0; align-items: stretch; }
.trio-card { padding: 48px 34px; border-right: 1px solid var(--line); }
.trio-card:last-of-type { border-right: none; }
.trio-card .eyebrow { margin-bottom: 14px; }
.trio-image { background-size: cover; background-position: center; min-height: 280px; }
.trio-card a.link-arrow { color: var(--gold-deep); font-weight: 700; font-size: .88rem; }

/* ---------- Lift highlight ---------- */
.lift-section { display: grid; grid-template-columns: 1fr 1.3fr 1fr; min-height: 480px; }
.lift-media { background-size: cover; background-position: center; }
.lift-content { background: var(--charcoal); color: #fff; padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; }
.lift-content h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.lift-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
.lift-feature h4 { color: var(--gold-light); font-family: var(--font-body); font-size: .88rem; margin-bottom: 4px; }
.lift-feature p { color: rgba(255,255,255,.6); font-size: .8rem; margin: 0; }
.lift-feature .lf-icon { color: var(--gold-light); margin-bottom: 10px; width: 26px; height: 26px; }

/* ---------- Project cards ---------- */
.projects-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 36px; }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tabs a {
  padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px; font-size: .86rem; font-weight: 600; color: var(--ink);
  background: var(--white);
}
.filter-tabs a.active, .filter-tabs a:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.project-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.project-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow .2s ease, transform .2s ease; }
.project-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.project-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-deep); }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.status-badge {
  position: absolute; top: 14px; left: 14px; padding: 6px 14px; border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em; color: #fff;
}
.status-upcoming { background: var(--gold-deep); }
.status-running { background: #3E5C76; }
.status-completed { background: #3E7A4E; }
.project-body { padding: 22px; }
.project-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.project-loc { font-size: .84rem; color: var(--ink-soft); margin-bottom: 14px; display: flex; gap: 6px; align-items: center; }
.project-loc svg { width: 15px; height: 15px; color: var(--gold-deep); }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: .8rem; color: var(--ink-soft); margin-bottom: 18px; }
.project-meta span { display: flex; align-items: center; gap: 5px; }
.project-meta svg { width: 14px; height: 14px; color: var(--gold-deep); }

/* ---------- Stats + featured banner ---------- */
.why-choose-grid { display: grid; grid-template-columns: 1.1fr 1fr 1.3fr; gap: 24px; align-items: stretch; }
.why-list li { padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.why-list li:last-child { border: none; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat-box { background: var(--white); padding: 28px; text-align: center; }
.stat-box strong { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-deep); }
.stat-box span { font-size: .82rem; color: var(--ink-soft); }
.feature-banner { position: relative; border-radius: var(--radius-md); overflow: hidden; min-height: 320px; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.feature-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,23,31,.88) 30%, rgba(20,23,31,.1) 90%); }
.feature-banner-inner { position: relative; z-index: 2; padding: 34px; color: #fff; max-width: 320px; }
.feature-banner-inner h3 { color: #fff; }
.feature-banner-inner p { color: rgba(255,255,255,.72); }

/* ---------- Gallery grid ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 130px; gap: 10px; grid-auto-flow: dense; }
.gallery-grid .g-item { grid-column: span 2; grid-row: span 1; overflow: hidden; border-radius: var(--radius-sm); }
.gallery-grid .g-item.tall { grid-row: span 2; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.05); }
.gallery-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-full .g-item { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-sm); background: var(--cream-deep); }
.gallery-full .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-full .g-item:hover img { transform: scale(1.04); }
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }

/* ---------- Amenities ---------- */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px; }
.amenity-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; }
.amenity-item .a-icon { width: 34px; height: 34px; color: var(--gold-deep); margin-bottom: 14px; }
.amenity-item h4 { font-size: 1rem; margin-bottom: 4px; }
.amenity-item p { font-size: .84rem; margin: 0; }
.amenities-intro { display: flex; flex-direction: column; align-items: flex-start; }
.section-photo { width: 100%; min-height: 150px; margin-top: 26px; background: var(--section-image) center/cover; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }

/* ---------- Process / journey ---------- */
.process-track { display: flex; justify-content: space-between; position: relative; margin-top: 60px; }
.process-track::before { content: ""; position: absolute; top: 28px; left: 5%; right: 5%; height: 1px; background: var(--line); }
.process-step { position: relative; z-index: 2; text-align: center; width: 18%; }
.process-step .p-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 1px solid var(--gold);
  color: var(--gold-deep); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-family: var(--font-display); font-size: 1.1rem;
}
.process-step h4 { font-size: .95rem; margin-bottom: 4px; }
.process-step p { font-size: .8rem; margin: 0; }
.process-section { position: relative; overflow: hidden; }
.process-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,247,241,.96), rgba(250,247,241,.82) 58%, rgba(250,247,241,.58)), var(--section-image) center/cover; opacity: .8; }
.process-section > .container { position: relative; z-index: 1; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--charcoal-2); border-radius: var(--radius-md); padding: 30px; }
.testimonials-section { position: relative; overflow: hidden; background: var(--charcoal); }
.testimonials-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,23,31,.96), rgba(20,23,31,.8)), var(--section-image) center/cover; opacity: .65; }
.testimonials-section > .container { position: relative; z-index: 1; }
.testi-stars { color: var(--gold-light); margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { color: rgba(255,255,255,.82); font-style: italic; }
.testi-name { color: #fff; font-weight: 700; font-size: .9rem; }
.testi-project { color: var(--gold-light); font-size: .78rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--cream-deep), var(--cream));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 70px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-band h2 .accent { color: var(--gold); }
.cta-band .cta-sub { font-size: 1.05rem; color: var(--ink-soft); margin-top: 10px; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }

/* ---------- Contact strip (above footer on home) ---------- */
.contact-strip { background: var(--cream-deep); padding: 40px 0; border-top: 1px solid var(--line); }
.contact-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.contact-strip-methods { display: flex; gap: 34px; flex-wrap: wrap; }
.contact-method { display: flex; align-items: center; gap: 12px; }
.contact-method .cm-icon { width: 22px; height: 22px; color: var(--gold-deep); }
.contact-method strong { display: block; font-size: .95rem; }
.contact-method span { font-size: .78rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 50px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .92rem; letter-spacing: .03em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; font-size: .88rem; }
.footer-col a:hover { color: var(--gold-light); }
.brand-footer { margin-bottom: 16px; }
.brand-footer .brand-name { line-height: 1.1; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700;
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; font-size: .8rem; flex-wrap: wrap; gap: 8px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.25); z-index: 400;
}

/* ---------- Inner page hero (About/Projects/Gallery/Contact) ---------- */
.page-hero {
  background: var(--charcoal); color: #fff; padding: 74px 0 60px; text-align: left;
  background-size: cover; background-position: center; position: relative;
}
.page-hero::before { content:""; position: absolute; inset:0; background: rgba(15,17,23,.75); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; color: var(--charcoal); }
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; background: var(--white); color: var(--ink);
}
textarea { resize: vertical; min-height: 120px; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 22px; font-size: .9rem; }
.alert-success { background: #E6F3E9; color: #235B33; border: 1px solid #BFE2C8; }
.alert-error { background: #FBE9E7; color: #8A2E22; border: 1px solid #F3C6BE; }

/* ---------- Single project page ---------- */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.spec-table td:first-child { color: var(--ink-soft); width: 45%; }
.spec-table td:last-child { font-weight: 700; color: var(--charcoal); }
.spec-table td svg { width: 16px; height: 16px; color: var(--gold-deep); margin-right: 6px; vertical-align: -3px; }
.feature-chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.feature-chip { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; background: var(--white); }
.floorplan-tabs { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.floorplan-tabs button {
  padding: 10px 18px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius-sm);
  cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: .85rem;
}
.floorplan-tabs button.active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.floorplan-panel { display: none; }
.floorplan-panel.active { display: block; }
.map-embed iframe { width: 100%; height: 360px; border: 0; border-radius: var(--radius-md); }
.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-item:nth-child(3n+1) { border-left: none; }
  .trio { grid-template-columns: 1fr 1fr; }
  .trio-image { grid-column: span 2; min-height: 220px; }
  .lift-section { grid-template-columns: 1fr; }
  .lift-media { min-height: 260px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset: 84px 0 0 0; background: var(--charcoal); padding: 20px 24px;
    display: none; transform: none; transition: transform .25s ease; overflow-y: auto;
  }
  .main-nav.open { display: block; transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav ul > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a { display: block; padding: 14px 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; box-shadow: none; display: none; padding-left: 14px; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .hero { min-height: 74vh; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 110px; }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
  .process-track { flex-wrap: wrap; gap: 30px; }
  .process-track::before { display: none; }
  .process-step { width: 45%; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3n+1) { border-left: 1px solid var(--line); }
  .why-item:nth-child(2n+1) { border-left: none; }
  .trio-card { border-right: none; border-bottom: 1px solid var(--line); }
  .trio { grid-template-columns: 1fr; }
  .trio-image { grid-column: span 1; }
  .lift-features { grid-template-columns: 1fr 1fr; }
  .project-grid, .project-grid.cols-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip-inner { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { grid-template-columns: 1fr; }
  .process-step { width: 100%; }
}

/* ---------- Homepage reference layout ---------- */
.home-page { background: #fff; overflow-x: hidden; }
.home-page .site-header { position: absolute; inset: 0 0 auto; background: linear-gradient(180deg, rgba(8,16,25,.82), rgba(8,16,25,0)); }
.home-page .header-inner { height: 72px; }
.home-page .brand-logo { max-height: 100px; }
.home-page .brand-logo { filter: brightness(0) saturate(100%) invert(72%) sepia(35%) saturate(680%) hue-rotate(359deg) brightness(95%) contrast(88%); }
.home-page .main-nav ul { gap: 27px; }
.home-page .main-nav a { font-size: .92rem; }
.home-page .header-actions { gap: 10px; }
.home-page .header-actions .btn { padding: 10px 18px; font-size: .9rem; }
.home-page .hero { min-height: 580px; align-items: center; background-position: center; }
.home-page .hero::before { background: linear-gradient(90deg, rgba(7,14,22,.82) 0%, rgba(7,14,22,.3) 56%, rgba(7,14,22,.15) 100%), linear-gradient(0deg, rgba(7,14,22,.5), transparent 45%); }
.home-page .hero-inner { padding-top: 76px; padding-bottom: 24px; max-width: 620px; margin-left: max(0px, calc((100% - var(--container)) / 2)); }
.home-page .hero h1 { font-size: clamp(2.7rem, 5vw, 4.4rem); line-height: 1.02; }
.home-page .hero p { font-size: .82rem; line-height: 1.6; max-width: 420px; }
.home-page .hero-ctas { margin-top: 20px; }
.home-page .hero-ctas .btn { padding: 11px 18px; font-size: .72rem; }
.home-page .why-strip { position: relative; margin: -1px auto 0; width: min(90%, 1180px); box-shadow: 0 10px 32px rgba(20,23,31,.08); }
.home-page .why-grid { grid-template-columns: repeat(6, 1fr); }
.home-page .why-item { padding: 22px 12px; }
.home-page .why-icon { width: 30px; height: 30px; margin-bottom: 8px; }
.home-page .why-item h3 { font-size: .92rem; }
.home-page .why-item p { font-size: .82rem; line-height: 1.45; }
.home-page .section { padding: 44px 0; }
.home-page .trio-card { padding: 28px 22px; }
.home-page .trio-card h3 { font-size: 1.15rem; }
.home-page .trio-card p { font-size: .72rem; line-height: 1.55; }
.home-page .trio-image { min-height: 220px; }
.home-page .lift-section { min-height: 330px; }
.home-page .lift-content { padding: 34px 36px; }
.home-page .lift-features { margin-top: 20px; gap: 12px; }
.home-page .lift-feature h4 { font-size: .68rem; }
.home-page .lift-feature p { font-size: .62rem; }
.home-page .project-grid { gap: 14px; }
.home-page .project-body { padding: 14px; }
.home-page .project-body h3 { font-size: 1.2rem; }
.home-page .project-meta, .home-page .project-loc { font-size: .68rem; }
.home-page .why-choose-grid { gap: 14px; }
.home-page .gallery-grid { grid-auto-rows: 142px; gap: 10px; }
.home-page .gallery-grid .g-item { border-radius: var(--radius-md); }
.home-page .amenity-item { padding: 18px; }
.home-page .process-track { margin-top: 34px; }
.home-page .section-dark { padding: 44px 0; }
.home-page .testi-card { padding: 20px; }
.home-page .cta-band { padding: 38px 0; }
.home-page .contact-strip { padding: 24px 0; }
.home-page .site-footer { padding-top: 38px; }

@media (max-width: 860px) {
  .home-page .site-header { position: absolute; }
  .home-page .main-nav { top: 72px; }
  .home-page .main-nav { display: none; transform: none; }
  .home-page .main-nav.open { display: block; }
  .home-page .hero { min-height: 560px; }
  .home-page .hero-inner { margin-left: 0; }
  .home-page .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .home-page .hero { min-height: 650px; }
  .home-page .hero-inner { padding-top: 90px; }
  .home-page .hero h1 { font-size: 2.7rem; }
  .home-page .why-grid { grid-template-columns: repeat(2, 1fr); }
  .home-page .why-item { min-height: 116px; }
  .home-page .gallery-grid { grid-auto-rows: 110px; }
  .home-page .gallery-grid .g-item { grid-column: span 1; }
}
