:root {
  /* Corporate real-estate palette (Nashik) */
  --navy: #0b1f3a;         /* deep corporate blue */
  --navy-mid: #102a4c;     /* secondary blue */
  --forest: #0f6b76;       /* teal accent (replaces green) */
  --forest-soft: #135b66;  /* teal deep */
  --gold: #2b7a9a;         /* keep "gold" token, map to corporate accent */
  --gold-bright: #3b93b3;  /* brighter accent */
  --gold-light: #d7eaf2;   /* light accent tint for text on dark */
  --copper: #1f5f7a;       /* darker accent for borders/shadows */
  --cream: #f4f7fb;        /* cool off-white background */
  --white: #ffffff;
  --text: #101828;         /* slate-ish */
  --text-muted: #475467;   /* corporate muted */
  --blue-raj: #2563eb;     /* link blue */
  --lime: #2fbf71;         /* spare success */
  --line: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 22px 56px rgba(10, 22, 36, 0.14);
  --shadow-lux: 0 32px 80px rgba(10, 22, 36, 0.18);
  --radius: 2px;
  --max: 100%;
  --section-pad-x: clamp(1rem, 4vw, 3rem);
  --header-offset: 96px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-quote: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: linear-gradient(180deg, #f7f9fc 0%, var(--cream) 32%, #eef3f8 100%);
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}

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

a {
  color: var(--blue-raj);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--forest);
}

/* Header — dark bar, logo flush (no white box; Lodha-style integration) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Contrasts the warm hero banner: deep charcoal/blue glass */
  background:
    radial-gradient(120% 110% at 15% 0%, rgba(168, 107, 60, 0.18) 0%, rgba(168, 107, 60, 0) 55%),
    radial-gradient(140% 120% at 85% 0%, rgba(23, 64, 56, 0.14) 0%, rgba(23, 64, 56, 0) 60%),
    linear-gradient(180deg, rgba(7, 18, 31, 0.92) 0%, rgba(6, 16, 28, 0.92) 55%, rgba(5, 14, 26, 0.94) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
}

.site-header::after {
  /* Premium terracotta hairline */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168, 107, 60, 0.9) 22%, rgba(215, 234, 242, 0.55) 50%, rgba(23, 64, 56, 0.8) 78%, transparent);
  opacity: 0.6;
  pointer-events: none;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-luxury {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
  padding: 0.2rem 0;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.brand-luxury:hover {
  opacity: 0.95;
}

.brand-luxury:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

/* Larger mark + lift warm colours for contrast on navy (terracotta reads clearly) */
.brand-lockup-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(640px, 86vw);
  object-fit: contain;
  object-position: left center;
  filter: contrast(1.08) saturate(1.06)
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

@media (min-width: 480px) {
  .brand-lockup-img {
    height: 78px;
    max-width: min(700px, 82vw);
  }
}

@media (min-width: 1024px) {
  .brand-lockup-img {
    height: 88px;
    max-width: min(760px, 58vw);
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-desktop a:hover {
  color: rgba(215, 234, 242, 0.95);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168, 107, 60, 0.9), transparent);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-desktop a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(215, 234, 242, 0.35);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  background: linear-gradient(145deg, rgba(168, 107, 60, 0.95) 0%, rgba(194, 164, 130, 0.95) 100%);
  color: rgba(7, 18, 31, 0.95) !important;
  border-color: rgba(168, 107, 60, 0.75);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
}

/* display:flex must not override the [hidden] attribute (otherwise drawer stays open) */
.mobile-drawer[hidden] {
  display: none !important;
}

.mobile-drawer:not([hidden]) {
  display: flex;
  flex-direction: column;
  padding: 0 var(--section-pad-x) 1.25rem;
  background: linear-gradient(180deg, rgba(7, 18, 31, 0.98) 0%, rgba(6, 16, 28, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer a {
  padding: 0.65rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer a:hover {
  color: rgba(215, 234, 242, 0.95);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-drawer {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: min(78vh, 880px);
  display: flex;
  align-items: stretch;
  padding: 0;
  margin-top: var(--header-offset);
  overflow: hidden;
}

.hero.hero--image-only {
  min-height: 0;
  display: block;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-bright) 50%, var(--gold) 80%, transparent);
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

.hero-media-img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* Image-only hero: crop on small screens for layout; full uncropped banner on desktop */
.hero.hero--image-only .hero-media-img {
  width: 100%;
  /* More stable on mobile: prevent “jumping”/overflow with dynamic viewport */
  height: clamp(220px, 38svh, 360px);
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 479px) {
  .hero.hero--image-only .hero-media-img {
    height: clamp(220px, 34svh, 320px);
    object-position: center 35%;
  }
}

/* Mobile: show FULL banner (no crop) */
@media (max-width: 767px) {
  .hero.hero--image-only {
    background: linear-gradient(180deg, rgba(7, 18, 31, 0.98) 0%, rgba(6, 16, 28, 0.98) 100%);
  }

  .hero.hero--image-only .hero-media-img {
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }
}

@media (min-width: 480px) {
  .hero.hero--image-only .hero-media-img {
    height: clamp(240px, 48vh, 480px);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero.hero--image-only .hero-media-img {
    height: clamp(280px, 52vh, 580px);
    object-fit: cover;
    object-position: center center;
  }
}

/* Desktop: natural height — full banner visible (reset cover from smaller breakpoints) */
@media (min-width: 1024px) {
  .hero.hero--image-only .hero-media-img {
    height: auto;
    width: 100%;
    max-width: 100%;
    object-fit: unset;
    object-position: unset;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1rem;
}

.hero-quote {
  font-family: var(--font-quote);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(232, 220, 196, 0.95);
  margin: 0 0 0.75rem;
  max-width: 22ch;
  line-height: 1.35;
  text-shadow: 0 1px 24px rgba(10, 22, 36, 0.3);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 0 0 1.25rem;
  max-width: 15ch;
  text-shadow: 0 2px 40px rgba(10, 22, 36, 0.25);
}

.hero-lead {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin: 0 0 2rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: linear-gradient(145deg, var(--gold-bright) 0%, var(--gold) 45%, #9a7348 100%);
  color: var(--navy);
  border-color: rgba(184, 151, 106, 0.95);
  box-shadow: 0 6px 28px rgba(168, 107, 60, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  color: var(--navy);
  box-shadow: 0 8px 36px rgba(168, 107, 60, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Sections — full-width bands; horizontal inset via .container */
.section {
  /* Compact, consistent spacing across the site */
  padding: clamp(3.25rem, 4.5vw, 4.5rem) 0;
}

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

.section--muted {
  background: linear-gradient(180deg, #eef4f7 0%, #e8eef2 100%);
}

.section--navy {
  background: var(--navy-mid);
  color: rgba(255, 255, 255, 0.9);
}

.section--deep {
  background: linear-gradient(160deg, var(--navy) 0%, #0a1828 100%);
  color: rgba(255, 255, 255, 0.9);
}

.section--figure {
  padding: 0;
  background: var(--forest-soft);
}

.section--gallery-wrap {
  background: linear-gradient(180deg, #f5f1e9 0%, var(--cream) 45%, #ebe6dc 100%);
}

/* Client JPEG collateral — framed like print */
.client-doc-frame {
  margin: 0 auto;
  padding: 0;
  max-width: min(640px, 100%);
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(184, 151, 106, 0.35);
  box-shadow: var(--shadow-lux);
  overflow: hidden;
}

.client-doc-frame--spaced {
  margin-top: 3rem;
}

.client-doc-frame--plain {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 8px;
  overflow: visible;
}

.client-doc-frame img {
  width: 100%;
  display: block;
}

.client-doc-caption {
  padding: 1rem 1.25rem 1.25rem;
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  border-top: 1px solid rgba(12, 31, 46, 0.06);
  background: var(--cream);
}

.client-doc-frame--plain .client-doc-caption {
  border: none;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

/* Brochure gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-tile__btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-tile__btn:hover,
.gallery-tile__btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(10, 22, 36, 0.12);
  outline: none;
}

.gallery-tile__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-tile__thumb-wrap {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(184, 151, 106, 0.35);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.gallery-tile__thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gallery-tile__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.gallery-tile__hint {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
}

/* Full-size viewer */
.asset-lightbox {
  padding: 0;
  border: none;
  max-width: min(96vw, 920px);
  width: 100%;
  background: transparent;
}

.asset-lightbox::backdrop {
  background: rgba(10, 22, 36, 0.88);
  backdrop-filter: blur(6px);
}

.asset-lightbox__shell {
  position: relative;
  background: #121c28;
  border-radius: 8px;
  padding: 2.75rem 0.75rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.asset-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.asset-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.asset-lightbox__fig {
  margin: 0;
  max-height: 85vh;
  overflow: auto;
}

.asset-lightbox__fig img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  margin: 0 auto;
}

.asset-lightbox__cap {
  margin: 0.75rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold-light);
  text-align: center;
}

.figure-banner {
  position: relative;
  box-shadow: var(--shadow-lux);
}

.figure-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.figure-banner img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 15%;
}

.container {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
  box-sizing: border-box;
}

.container.narrow {
  max-width: min(900px, 100%);
}

.section-head {
  margin-bottom: clamp(1.65rem, 3vw, 2.25rem);
  /* max-width: 640px; */
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 0.6rem;
}

.section-eyebrow--muted {
  color: var(--gold-light);
}

.section-eyebrow--gold {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.015em;
  margin: 0 0 0.85rem;
  color: var(--navy);
}

.section-title--light {
  color: var(--white);
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 599px) {
  .section-lead {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.section-lead--muted {
  color: rgba(255, 255, 255, 0.75);
}

/* .section-head--wide intentionally unused */

.section-head--services {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(12, 31, 46, 0.08);
}

.nashik-section__lead strong {
  color: var(--text);
  font-weight: 600;
}

/* About */
.about-split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.75rem;
  position: relative;
  border-radius: 18px;
}

@media (min-width: 960px) {
  .about-split {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
    align-items: stretch;
  }
}

.about-copy {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.about-split::after {
  /* Subtle watermark only (no photo background) */
  content: "";
  position: absolute;
  inset: -0.75rem -0.75rem -0.75rem -0.75rem;
  pointer-events: none;
  border-radius: 18px;
  background:
    radial-gradient(62% 55% at 58% 40%, rgba(7, 18, 31, 0.08), transparent 62%),
    radial-gradient(62% 55% at 78% 78%, rgba(7, 18, 31, 0.06), transparent 64%),
    repeating-linear-gradient(0deg, rgba(7, 18, 31, 0.02) 0px, rgba(7, 18, 31, 0.02) 1px, transparent 1px, transparent 12px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.38) 55%, rgba(255, 255, 255, 0.22) 100%);
  opacity: 0.55;
  filter: saturate(0.95);
}

.about-split > * {
  position: relative;
  z-index: 1;
}

.about-minihead {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(7, 18, 31, 0.58);
  font-weight: 800;
}

/* Reference-like "core strengths" */
.als-core-strengths {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.als-strengths-title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(7, 18, 31, 0.55);
  font-weight: 500;
}

.als-strengths-grid {
  display: grid;
  gap: 1rem;
  flex: 1;
  align-content: stretch;
}

@media (min-width: 840px) {
  .als-strengths-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.als-strength-card {
  background: rgba(247, 247, 247, 0.92);
  border-radius: 10px;
  padding: 1.1rem 1.1rem 1.15rem;
  border: 1px solid rgba(12, 31, 46, 0.16);
  box-shadow: 0 18px 44px rgba(10, 22, 36, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
}

.als-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(16, 16, 18, 0.95) 0%, rgba(7, 18, 31, 0.95) 100%);
  color: rgba(196, 159, 123, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.als-card-title {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(7, 18, 31, 0.9);
  font-weight: 700;
}

.als-card-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(7, 18, 31, 0.64);
  font-size: 0.88rem;
  line-height: 1.55;
  width: 100%;
  max-width: 44ch;
}

.als-card-bullets li {
  position: relative;
  padding-left: 1.1rem;
}

.als-card-bullets li::before {
  content: "";
  position: absolute;
  left: 0.05rem;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(196, 159, 123, 0.95);
  box-shadow: 0 0 0 3px rgba(196, 159, 123, 0.16);
}

.als-card-bullets li + li {
  margin-top: 0.55rem;
}

/* Reference-like portfolio panel */
.als-portfolio-panel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  background: rgba(16, 16, 18, 0.96);
  color: rgba(224, 224, 224, 0.92);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.als-portfolio-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 45% at 90% 10%, rgba(196, 159, 123, 0.22), transparent 62%),
    radial-gradient(70% 45% at 10% 90%, rgba(23, 64, 56, 0.18), transparent 62%);
  opacity: 0.85;
}

.als-portfolio-panel > * {
  position: relative;
  z-index: 1;
}

.als-portfolio-title {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(189, 189, 189, 0.92);
  font-weight: 500;
}

.als-portfolio-item {
  position: relative;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.als-portfolio-item + .als-portfolio-item {
  margin-top: 0.75rem;
}

.als-portfolio-item--last {
  margin-bottom: 1rem;
}

.als-item-heading {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.als-item-details {
  display: block;
  color: rgba(189, 189, 189, 0.92);
  font-size: 0.85rem;
}

.als-portfolio-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.als-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
}

.als-btn-request {
  background: rgba(196, 159, 123, 0.95);
  color: rgba(16, 16, 18, 0.95);
  border-color: rgba(196, 159, 123, 0.75);
}

.als-btn-view {
  background: transparent;
  color: rgba(196, 159, 123, 0.95);
  border-color: rgba(196, 159, 123, 0.55);
}

.about-aside {
  height: 100%;
}

.about-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-panel__actions {
  margin-top: auto;
}

.section--about-luxe {
  position: relative;
  background: linear-gradient(180deg, #f7f3ee 0%, #f2f6fb 55%, #eef3f8 100%);
  overflow: hidden;
}

.section--about-luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 55% at 12% 15%, rgba(168, 107, 60, 0.1), transparent 60%),
    radial-gradient(70% 55% at 88% 25%, rgba(23, 64, 56, 0.08), transparent 60%),
    radial-gradient(70% 55% at 78% 88%, rgba(37, 99, 235, 0.06), transparent 60%);
  opacity: 0.9;
}

.section--about-luxe > .container {
  position: relative;
  z-index: 1;
}

.about-copy__lead {
  margin: 0 0 1rem;
  font-size: 1.03rem;
  color: var(--text);
  max-width: 60ch;
}

.about-points {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 840px) {
  .about-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-strength {
  padding: 1.05rem 1.05rem 1.1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(12, 31, 46, 0.16);
  box-shadow: 0 18px 40px rgba(10, 22, 36, 0.08);
}

.about-strength__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(7, 18, 31, 0.9) 0%, rgba(5, 14, 26, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  margin-bottom: 0.75rem;
}

.about-strength__icon svg {
  width: 22px;
  height: 22px;
}

.about-strength__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 650;
  color: rgba(7, 18, 31, 0.92);
  line-height: 1.2;
}

.about-strength__bullets {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(7, 18, 31, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-strength__bullets li + li {
  margin-top: 0.45rem;
}

.about-point__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.35rem;
  background: linear-gradient(145deg, rgba(168, 107, 60, 0.95) 0%, rgba(23, 64, 56, 0.85) 100%);
  box-shadow: 0 0 0 3px rgba(168, 107, 60, 0.18);
}

.about-point__text {
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.about-point__text strong {
  color: var(--text);
  font-weight: 700;
}

.about-aside {
  min-width: 0;
}

.about-panel {
  position: relative;
  padding: 1.25rem 1.15rem;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(120% 110% at 18% 0%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(180deg, rgba(7, 18, 31, 0.96) 0%, rgba(5, 14, 26, 0.98) 100%);
  border: 1px solid rgba(215, 234, 242, 0.18);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.3);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.about-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 45% at 85% 15%, rgba(168, 107, 60, 0.22), transparent 60%),
    radial-gradient(70% 45% at 15% 90%, rgba(23, 64, 56, 0.22), transparent 60%);
  opacity: 0.9;
}

.about-panel > * {
  position: relative;
  z-index: 1;
}

.about-panel__eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(215, 234, 242, 0.82);
  font-weight: 700;
}

.about-metrics {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about-metric {
  padding: 0.9rem 0.95rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(215, 234, 242, 0.14);
}

.about-metric strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.about-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.about-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-panel__ghost {
  background: rgba(255, 255, 255, 0.09);
}

.about-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-card {
  padding: 1.35rem 1.45rem;
  background:
    radial-gradient(120% 110% at 18% 0%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(165deg, #ffffff 0%, var(--cream) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(12, 31, 46, 0.08);
  box-shadow: 0 18px 52px rgba(10, 22, 36, 0.08);
  position: relative;
}

.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  opacity: 0.9;
}

.about-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(168, 107, 60, 0.14) 0%, rgba(23, 64, 56, 0.14) 100%);
  border: 1px solid rgba(12, 31, 46, 0.08);
  color: rgba(7, 18, 31, 0.78);
  margin-bottom: 0.85rem;
}

.about-card__icon svg {
  width: 22px;
  height: 22px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.about-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.about-extra {
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(12, 31, 46, 0.08);
}

.about-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 2.75rem;
}

@media (min-width: 640px) {
  .about-mosaic {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.about-mosaic__cell {
  margin: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(184, 151, 106, 0.22);
  background: var(--cream);
}

.about-mosaic__cell img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Services */
.section--services {
  position: relative;
  /* closer to reference: cooler light grey with subtle map feel */
  background: linear-gradient(180deg, #f5f6f8 0%, #f2f4f7 42%, #eef2f6 100%);
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 55% 35%, rgba(7, 18, 31, 0.06), transparent 60%),
    radial-gradient(60% 45% at 75% 75%, rgba(7, 18, 31, 0.05), transparent 62%),
    repeating-linear-gradient(0deg, rgba(7, 18, 31, 0.02) 0px, rgba(7, 18, 31, 0.02) 1px, transparent 1px, transparent 12px),
    repeating-linear-gradient(90deg, rgba(7, 18, 31, 0.015) 0px, rgba(7, 18, 31, 0.015) 1px, transparent 1px, transparent 14px);
  opacity: 0.8;
}

.services-shell {
  position: relative;
  z-index: 1;
}

.services-top {
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
}

.services-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  color: rgba(7, 18, 31, 0.85);
  background: rgba(245, 247, 250, 0.95);
  border: 1px solid rgba(12, 31, 46, 0.12);
  box-shadow: 0 10px 20px rgba(10, 22, 36, 0.05);
}

.services-carousel--ref .services-carousel__btn {
  background: rgba(7, 18, 31, 0.72);
}

.service-card--ref {
  background: #ffffff;
  border: 1px solid rgba(12, 31, 46, 0.12);
  box-shadow: 0 18px 46px rgba(10, 22, 36, 0.1);
  backdrop-filter: none;
}

.service-card--ref:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(10, 22, 36, 0.14);
}

.service-card__tag--ref {
  background: rgba(7, 18, 31, 0.88);
  border-color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.16em;
}

.service-card__cta--ref {
  color: rgba(7, 18, 31, 0.85);
}

.service-card__cta--ref span {
  display: inline-block;
  margin-left: 0.25rem;
}
.services-carousel {
  position: relative;
  margin-top: 0.25rem;
}

.services-carousel__viewport {
  overflow: hidden;
  padding: 0.25rem 0.25rem 1rem;
  border-radius: 18px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
  position: relative;
}

.services-carousel__viewport::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.services-carousel__viewport:focus-visible {
  outline: 2px solid rgba(168, 107, 60, 0.65);
  outline-offset: 3px;
}

/* IMPORTANT: the track also has .service-grid, so we must override grid -> flex */
.services-carousel__track,
.services-carousel__track.service-grid {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: stretch;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* Prevent the normal grid media queries from affecting the carousel track */
@media (min-width: 640px) {
  .services-carousel__track.service-grid {
    grid-template-columns: unset;
  }
}

@media (min-width: 1024px) {
  .services-carousel__track.service-grid {
    grid-template-columns: unset;
  }
}

.services-carousel__track > .service-card {
  flex: 0 0 clamp(260px, 82vw, 340px);
}

/* Mobile: one full card per view (no partial next card) */
@media (max-width: 639px) {
  .services-carousel__viewport {
    padding-left: 0;
    padding-right: 0;
  }

  .services-carousel__track {
    gap: 0;
  }

  .services-carousel__track > .service-card {
    flex-basis: 100%;
  }
}

@media (min-width: 640px) {
  .services-carousel__track > .service-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (min-width: 1024px) {
  .services-carousel__track > .service-card {
    flex-basis: calc((100% - 2rem) / 3);
  }
}

.services-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 18, 31, 0.62);
  color: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.services-carousel__btn:hover {
  background: rgba(7, 18, 31, 0.74);
  transform: translateY(-50%) scale(1.04);
}

.services-carousel__btn--prev {
  left: 8px;
}

.services-carousel__btn--next {
  right: 8px;
}

@media (max-width: 599px) {
  .services-carousel__btn {
    display: grid;
    width: 38px;
    height: 38px;
    background: rgba(7, 18, 31, 0.72);
  }
}

@media (max-width: 599px) {
  .services-carousel__btn--prev {
    left: 6px;
  }
  .services-carousel__btn--next {
    right: 6px;
  }
}

.service-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 31, 46, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(10, 22, 36, 0.12);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  border-color: rgba(168, 107, 60, 0.28);
  box-shadow: 0 32px 86px rgba(10, 22, 36, 0.18);
  transform: translateY(-3px);
}

.service-card__media {
  aspect-ratio: 377 / 250;
  overflow: hidden;
  background: linear-gradient(145deg, #eef2f5 0%, var(--cream) 100%);
  position: relative;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card__tag {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(7, 18, 31, 0.78);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.service-card__media .service-card__img--land {
  object-position: center 72%;
}

.service-card__body {
  padding: 1.5rem 1.35rem;
  flex: 1;
}

.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.service-card__body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.service-card__body p + p {
  margin-top: 0.65rem;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.95rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(7, 18, 31, 0.85);
}

.service-card__cta::after {
  content: "→";
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__cta::after {
  transform: translate(2px, -1px);
}

.brochure-callout {
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(184, 151, 106, 0.25);
  box-shadow: var(--shadow-lux);
}

.brochure-callout img {
  width: 100%;
}

/* Split Nashik */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.split-visual {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.split-visual--stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(0, 0, 0, 0.2);
}

.split-visual--stack .split-visual__accent img {
  width: 100%;
  height: clamp(140px, 22vw, 240px);
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.split-visual--stack .split-visual__main img {
  width: 100%;
  display: block;
}

.split-visual img {
  width: 100%;
}

.checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Trust & track record (replacement for old recognition section) */
.trust-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4.25rem) 0;
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(168, 107, 60, 0.22) 0%, rgba(168, 107, 60, 0) 55%),
    radial-gradient(120% 90% at 100% 0%, rgba(23, 64, 56, 0.22) 0%, rgba(23, 64, 56, 0) 55%),
    linear-gradient(180deg, rgba(7, 18, 31, 0.96) 0%, rgba(6, 16, 28, 0.96) 60%, rgba(5, 14, 26, 0.98) 100%);
}

.trust-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--section-pad-x);
}

.trust-section .subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 0 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(215, 234, 242, 0.18);
  background: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(215, 234, 242, 0.92);
}

.trust-section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 600;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.96);
}

.trust-section .description {
  margin: 0 auto 1.75rem;
  max-width: 46rem;
  color: rgba(215, 234, 242, 0.78);
}

.trust-section .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.trust-section .cards h3 {
  margin: 0.25rem 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.96);
}

.trust-section .cards p {
  margin: 0;
  color: rgba(215, 234, 242, 0.78);
}

.trust-section .card {
  position: relative;
  padding: 1.25rem 1.25rem 1.1rem;
  border-radius: 16px;
  background:
    radial-gradient(120% 140% at 30% 0%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.02) 100%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-section .card.card--stat {
  padding-top: 1.1rem;
}

.trust-section .card.card--stat .icon {
  display: none;
}

.trust-section .card.card--stat h3 {
  margin-top: 0.1rem;
  font-size: clamp(1.85rem, 3.4vw, 2.25rem);
  letter-spacing: 0.02em;
}

.trust-section .card.card--stat p {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(215, 234, 242, 0.78);
}

.trust-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.38);
  border-color: rgba(184, 151, 106, 0.35);
}

.trust-section .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.6rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 20px;
  background: linear-gradient(145deg, rgba(168, 107, 60, 0.95) 0%, rgba(194, 164, 130, 0.85) 55%, rgba(215, 234, 242, 0.25) 100%);
  color: rgba(7, 18, 31, 0.95);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.trust-section .stats-text {
  margin: 0 0 1.75rem;
  color: rgba(215, 234, 242, 0.74);
}

.trust-section .known-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.trust-section .features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 0 auto;
  max-width: 62rem;
}

.trust-section .feature {
  position: relative;
  padding: 0.72rem 0.9rem 0.72rem 2.25rem;
  border-radius: 999px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.35;
  background:
    radial-gradient(120% 180% at 25% -20%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 55%, rgba(255, 255, 255, 0.02) 100%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.trust-section .feature::before {
  content: "";
  position: absolute;
  left: 0.68rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, rgba(168, 107, 60, 0.95), rgba(23, 64, 56, 0.95));
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.22),
    0 0 0 3px rgba(184, 151, 106, 0.14);
}

.trust-section .feature:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 234, 242, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 34px rgba(0, 0, 0, 0.26);
  background:
    radial-gradient(120% 180% at 25% -20%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.02) 100%),
    rgba(255, 255, 255, 0.06);
}

.trust-section .feature.highlight {
  background:
    radial-gradient(140% 160% at 0% 0%, rgba(168, 107, 60, 0.36) 0%, rgba(168, 107, 60, 0) 60%),
    radial-gradient(140% 160% at 100% 0%, rgba(215, 234, 242, 0.16) 0%, rgba(215, 234, 242, 0) 55%),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(184, 151, 106, 0.42);
  color: rgba(255, 255, 255, 0.92);
}

.trust-section .feature.highlight::before {
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.24),
    0 0 0 3px rgba(215, 234, 242, 0.12);
}

@media (max-width: 768px) {
  .trust-section .cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 720px) {
  .trust-section .cards {
    gap: 1rem;
  }

  .trust-section .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
  }
}

.figure-inline {
  margin-top: 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(12, 31, 46, 0.08);
}

/* Resources */
.resources-split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .resources-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 31, 46, 0.1);
  background: var(--white);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table th,
.data-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(12, 31, 46, 0.06);
}

.data-table th {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--cream);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.resources-visual {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Lodha-style promise band (inspired by lodhagroup.com layout) */
.section--lodha-promise {
  position: relative;
  padding: clamp(3.25rem, 4.5vw, 4.5rem) 0;
  overflow: hidden;
  background: linear-gradient(155deg, #0a1420 0%, #0d1f2e 42%, #132a3d 100%);
  color: rgba(255, 255, 255, 0.92);
}

.lodha-promise-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(184, 151, 106, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 90%, rgba(26, 79, 120, 0.35), transparent 50%);
  pointer-events: none;
}

.lodha-promise-inner {
  position: relative;
  z-index: 1;
}

.lodha-promise-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .lodha-promise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }
}

.lodha-promise-panel {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.lodha-promise-panel--accent {
  background: linear-gradient(165deg, rgba(23, 64, 56, 0.55) 0%, rgba(10, 22, 36, 0.35) 100%);
  border-color: rgba(184, 151, 106, 0.35);
}

.lodha-promise-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.lodha-promise-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--white);
}

.lodha-promise-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.lodha-promise-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(232, 220, 196, 0.45);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lodha-promise-link:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.lodha-presence {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lodha-presence-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lodha-presence-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.lodha-presence-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .lodha-presence-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.lodha-presence-list li {
  padding: 1rem 1.1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.lodha-presence-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.lodha-presence-meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

/* Why Nashik carousel — full-bleed track, no visible scrollbar */
.section--nashik {
  overflow-x: hidden;
}

.nashik-carousel-bleed {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  container-type: inline-size;
  container-name: nashik;
  padding: 0.5rem 0 1rem;
}

.nashik-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.35rem, 2vw, 1rem);
  padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
  padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
}

.nashik-carousel__viewport {
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0 0.85rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nashik-carousel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.nashik-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
  padding: 0 0.25rem;
}

.nashik-carousel__slide {
  scroll-snap-align: start;
  flex: 0 0 calc((100cqi - 3 * 1rem) / 4);
  min-width: 0;
}

@container nashik (max-width: 1023px) {
  .nashik-carousel__slide {
    flex-basis: calc((100cqi - 1 * 1rem) / 2);
  }
}

@container nashik (max-width: 559px) {
  .nashik-carousel__slide {
    flex-basis: min(100cqi, calc(100cqi - 1rem));
  }
}

.nashik-carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10, 22, 36, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 28px rgba(10, 22, 36, 0.1);
  z-index: 1;
}

.nashik-carousel__btn:hover {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}

.nashik-carousel__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nashik-carousel__hint {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .nashik-carousel__viewport {
    scroll-behavior: auto;
  }
}

/* Principles — dark panel, zigzag text/photo, ribbon headers (brochure-style) */
.section--principles {
  background: radial-gradient(120% 70% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #061427 0%, #071a33 35%, #061327 100%);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* Brochure layout (reference screenshot) */
.principles-brochure {
  position: relative;
  background: linear-gradient(165deg, #16335e 0%, #0d2344 38%, #071a33 100%);
  border-radius: 22px;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.principles-brochure::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 55% at 16% 12%, rgba(124, 184, 105, 0.16), transparent 60%),
    radial-gradient(70% 55% at 84% 18%, rgba(196, 159, 123, 0.16), transparent 60%),
    radial-gradient(70% 55% at 80% 85%, rgba(37, 99, 235, 0.12), transparent 60%);
  opacity: 0.9;
}

.principles-brochure::after {
  content: "";
  position: absolute;
  inset: 20px;
  pointer-events: none;
  border: 1px dashed rgba(215, 234, 242, 0.25);
  border-radius: 18px;
  opacity: 0.55;
}

.principles-brochure > * {
  position: relative;
  z-index: 1;
}

.principles-brochure__topline {
  margin: 0 0 1.25rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.principles-brochure__top {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 860px) {
  .principles-brochure__top {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.principles-brochure__card {
  position: relative;
  border: 1px solid rgba(215, 234, 242, 0.22);
  border-radius: 14px;
  padding: 1.25rem 1.1rem 1.1rem;
  background: rgba(7, 18, 31, 0.22);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.principles-brochure__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(145deg, #7cb869 0%, #2a9d7a 45%, #174038 100%);
  color: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.principles-brochure__badge svg {
  width: 22px;
  height: 22px;
}

.principles-brochure__card-title {
  margin: 0.35rem 0 0.7rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principles-brochure__card-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.principles-brochure__showcase {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 1rem;
}

@media (min-width: 860px) {
  .principles-brochure__showcase {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.principles-brochure__photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(215, 234, 242, 0.2);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.35);
}

.principles-brochure__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.principles-brochure__midtitle {
  margin: 0.25rem 0 1.15rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  letter-spacing: 0.08em;
  color: rgba(232, 220, 196, 0.9);
}

.principles-brochure__mini {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .principles-brochure__mini {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.principles-brochure__mini-card {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(7, 18, 31, 0.26);
  border: 1px solid rgba(215, 234, 242, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.principles-brochure__mini-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.principles-brochure__mini-body {
  padding: 0.9rem 0.95rem 1rem;
  color: rgba(255, 255, 255, 0.84);
}

.principles-brochure__mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 234, 242, 0.18);
  margin-bottom: 0.6rem;
  color: rgba(232, 220, 196, 0.92);
}

.principles-brochure__mini-icon svg {
  width: 18px;
  height: 18px;
}

.principles-brochure__mini-body strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.principles-brochure__mini-body span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.principles-brochure__cta {
  margin: 1.2rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(215, 234, 242, 0.22);
  background: rgba(7, 18, 31, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.principles-brochure__cta:hover {
  background: rgba(7, 18, 31, 0.5);
  border-color: rgba(196, 159, 123, 0.5);
}

.principles-head__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
}

.principles-head__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
}

.principles-head__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.principles-panel {
  background: linear-gradient(165deg, #152d52 0%, #0d1f3c 38%, #0a1624 100%);
  border-radius: 20px;
  padding: 2rem 1.25rem 1.75rem;
  box-shadow: 0 28px 70px rgba(10, 22, 36, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

@media (min-width: 640px) {
  .principles-panel {
    padding: 2.5rem 2rem 2rem;
  }
}

.principles-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (min-width: 960px) {
  .principles-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-rows: auto auto minmax(180px, 28vw); */
    gap: 2rem 2rem;
    align-items: start;
  }

  .principles-cell--vision {
    grid-column: 1;
    grid-row: 1;
  }

  .principles-cell--photo1 {
    grid-column: 2;
    grid-row: 1;
  }

  .principles-cell--photo2 {
    grid-column: 1;
    grid-row: 2;
  }

  .principles-cell--values {
    grid-column: 2;
    grid-row: 2;
  }

  .principles-cell--hero {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

.principles-block + .principles-block {
  margin-top: 1.75rem;
}

.principles-ribbon {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.principles-ribbon__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a9d7a 0%, #174038 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.principles-ribbon__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.principles-ribbon__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  align-self: center;
}

.principles-ribbon__title-text {
  display: inline-block;
  padding: 0.5rem 1.6rem 0.5rem 0.95rem;
  background: #ffffff;
  color: #0a1624;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

@media (min-width: 480px) {
  .principles-ribbon__title-text {
    font-size: 0.7rem;
    padding: 0.55rem 1.85rem 0.55rem 1rem;
  }
}

.principles-block__text p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.principles-block__text p + p {
  margin-top: 0.65rem;
}

.principles-photo {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.principles-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.principles-photo__frame {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  width: min(45%, 160px);
  height: min(45%, 120px);
  border-top: 1px dashed rgba(255, 255, 255, 0.55);
  border-left: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: 4px 0 0 0;
  pointer-events: none;
  z-index: 2;
}

.principles-photo__frame--br {
  top: auto;
  left: auto;
  bottom: 0.85rem;
  right: 0.85rem;
  width: min(45%, 160px);
  height: min(45%, 120px);
  border: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.55);
  border-right: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: 0 0 4px 0;
}

.principles-photo--wide img {
  aspect-ratio: 21 / 9;
  min-height: 200px;
  max-height: 360px;
  object-position: center 65%;
}

@media (max-width: 959px) {
  .principles-cell--vision {
    order: 1;
  }

  .principles-cell--photo1 {
    order: 2;
  }

  .principles-cell--photo2 {
    order: 3;
  }

  .principles-cell--values {
    order: 4;
  }

  .principles-cell--hero {
    order: 5;
  }
}

@media (min-width: 960px) {
  .principles-cell--vision,
  .principles-cell--photo1,
  .principles-cell--photo2,
  .principles-cell--values,
  .principles-cell--hero {
    order: 0;
  }
}

/* Leadership */
.leadership {
  background: #f7f5f2;
  padding: 50px 0;
  font-family: var(--font-body);
}

@media (max-width: 599px) {
  .leadership {
    padding: 56px 0;
  }
}

.leadership__header {
  text-align: left;
  margin-bottom: 20px;
}

.leadership__tag {
  display: inline-block;
  letter-spacing: 2px;
  font-size: 12px;
  color: #7a8a9a;
  font-weight: 700;
}

.leadership__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  color: #1e2a38;
  margin: 0;
}

.leadership__lead {
  color: #5c6b7a;
  max-width: 100%;
  margin: 0;
  line-height: 1.6;
}

.leadership__leaders {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.leadership__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.leadership__card-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.leadership__card-image img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.leadership__card-image--placeholder {
  background: linear-gradient(135deg, #d8d2c8, #bfb7ab);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 600;
}

.leadership__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
}

.leadership__overlay h3 {
  margin: 0;
  font-size: 20px;
}

.leadership__overlay span {
  font-size: 13px;
  opacity: 0.8;
}

.leadership__card-content {
  padding: 20px;
}

.leadership__card-content h4 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #1e2a38;
}

.leadership__card-content p {
  color: #5c6b7a;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Keep legacy leadership styles below (unused by new markup) */
.leadership-head {
  margin-bottom: 2.25rem;
}

.directors-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .directors-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

.director-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(184, 151, 106, 0.35);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.director-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1f24;
}

.director-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.director-card__media--placeholder {
  background: linear-gradient(160deg, #e5e0d6 0%, #d4cdc2 45%, #c9c2b6 100%);
  display: flex;
  align-items: stretch;
}

.director-card__placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1rem 5rem;
  color: rgba(90, 88, 82, 0.55);
}

.director-card__silhouette {
  opacity: 0.65;
}

.director-card__placeholder-note {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--text-muted);
}

.director-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.35rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(10, 14, 18, 0.88) 0%, rgba(10, 14, 18, 0.2) 55%, transparent 100%);
  color: var(--white);
}

.director-card__label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.director-card__label span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
}

.director-card__body {
  flex: 1;
  padding: 1.35rem 1.25rem 1.5rem;
  background: #f0ebe3;
}

.director-card__heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.director-card__body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.leadership-footnote {
  margin: 2rem 0 0;
  max-width: 40rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact */
.section--contact {
  position: relative;
  padding-bottom: 5rem;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  overflow-x: clip;
  overflow-y: visible;
  background: linear-gradient(165deg, #0f2e28 0%, var(--forest) 38%, #123830 100%);
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 599px) {
  .section--contact {
    padding-bottom: 3.5rem;
  }
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(184, 151, 106, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(26, 79, 120, 0.35), transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-hero {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  padding: 0 0.25rem;
  box-sizing: border-box;
}

@media (max-width: 599px) {
  .contact-hero {
    margin-bottom: 2rem;
  }
}

.contact-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.contact-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
}

.contact-hero__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.contact-split {
  display: grid;
  gap: 2rem;
  align-items: start;
  min-width: 0;
  width: 100%;
}

@media (max-width: 959px) {
  .contact-split {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Form before contact cards on small screens — readable flow, no horizontal squeeze */
  .contact-form-card {
    order: -1;
  }

  .contact-side {
    order: 1;
  }
}

@media (min-width: 960px) {
  .contact-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: stretch;
  }

  .contact-form-card,
  .contact-side {
    order: unset;
  }
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  max-width: 100%;
}

.contact-channel {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: border-color 0.2s ease, background 0.2s ease;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .contact-channel {
    gap: 1rem;
    padding: 1.15rem 1.25rem;
  }
}

.contact-channel:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 220, 196, 0.28);
}

.contact-channel__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.contact-channel__body {
  min-width: 0;
}

.contact-channel__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.85);
  margin-bottom: 0.4rem;
}

.contact-channel__lines {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-channel__lines a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-channel__lines a:hover {
  color: var(--gold-light);
  border-bottom-color: rgba(232, 220, 196, 0.45);
}

.contact-wa {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, #1f6f4a 0%, #174038 100%);
  border: 1px solid rgba(124, 184, 105, 0.45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  color: var(--white);
}

.contact-wa__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-wa__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.contact-wa__text strong {
  font-size: 1rem;
  font-weight: 600;
}

.contact-wa__text span:last-child {
  font-size: 0.8125rem;
  opacity: 0.88;
}

.contact-locations {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-locations__heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
}

.contact-locations__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .contact-locations__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-card {
  padding: 1.1rem 1.15rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  min-width: 0;
}

.location-card__title {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

.location-card__addr {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-form-card {
  padding: 1.75rem 1.5rem 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow:
    0 4px 0 rgba(184, 151, 106, 0.35),
    0 28px 70px rgba(10, 22, 36, 0.22);
  border: 1px solid rgba(12, 31, 46, 0.06);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 479px) {
  .contact-form-card {
    padding: 1.35rem 1.1rem 1.65rem;
    border-radius: 14px;
  }
}

@media (min-width: 960px) {
  .contact-form-card {
    padding: 2rem 1.85rem 2.25rem;
  }
}

.contact-form-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4.5vw, 1.65rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.contact-form-card__subtitle {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-lead {
  margin: -0.25rem 0 1rem;
  min-height: 1.25rem;
  font-size: 0.875rem;
  color: #2d6a4f;
  font-weight: 500;
}

.contact-form-lead.contact-form-lead--err {
  color: #c53030;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__row--half {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .contact-form__row--half {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-form__req {
  color: var(--copper);
}

.contact-form__input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--navy);
  background: #faf9f7;
  border: 1px solid rgba(12, 31, 46, 0.12);
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

/* Avoid iOS zoom-on-focus; keeps fields readable on narrow screens */
@media (max-width: 599px) {
  .contact-form__input,
  .contact-form__textarea,
  .contact-form__select {
    font-size: 1rem;
  }
}

.contact-form__input:hover {
  border-color: rgba(12, 31, 46, 0.2);
}

.contact-form__input:focus {
  outline: none;
  background: var(--white);
  border-color: rgba(184, 151, 106, 0.85);
  box-shadow: 0 0 0 3px rgba(184, 151, 106, 0.2);
}

.contact-form__select {
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-form__textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  resize: vertical;
  min-height: 6.5rem;
}

.contact-form__row--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
}

.contact-form__row--check input {
  margin-top: 0.2rem;
  accent-color: var(--forest);
  width: 1.05rem;
  height: 1.05rem;
}

.contact-form__row--check label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.contact-form__submit {
  margin-top: 0.35rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-bright) 0%, var(--gold) 50%, #9a7348 100%);
  border: 1px solid rgba(184, 151, 106, 0.95);
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.contact-form__submit:hover {
  box-shadow: 0 10px 32px rgba(168, 107, 60, 0.35);
  transform: translateY(-1px);
}

.contact-form__submit:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, #060a10 0%, #0a1624 28%, #0d1d2e 100%);
  border-top: 1px solid rgba(184, 151, 106, 0.28);
  overflow: hidden;
}

.site-footer__accent {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--gold-bright) 50%, var(--gold) 85%, transparent);
  opacity: 0.85;
}

.site-footer__inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 15% 100%, rgba(26, 79, 120, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 0%, rgba(184, 151, 106, 0.1), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem 2.5rem;
    align-items: start;
  }
}

.footer-brand-block {
  max-width: 22rem;
}

.footer-mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.2;
}

.footer-tagline {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-aside .footer-phone {
  margin: 0 0 0.35rem;
}

.footer-aside .footer-phone a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer-aside .footer-phone a:hover {
  color: var(--gold-bright);
}

.footer-email {
  margin: 0 0 1.1rem;
  font-size: 0.8125rem;
  word-break: break-word;
}

.footer-email a {
  color: rgba(232, 220, 196, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 151, 106, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-email a:hover {
  color: var(--white);
  border-bottom-color: var(--gold-bright);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-bright) 0%, var(--gold) 55%, #9a7348 100%);
  border: 1px solid rgba(184, 151, 106, 0.9);
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 184, 122, 0.25);
  color: var(--navy);
}

.footer-cta:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* .footer-meta intentionally unused */

.footer-disclaimer {
  margin: 0 auto 1.25rem;
  max-width: 52rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.footer-meta__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-meta__row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    text-align: left;
  }
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-credit {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
}
