/* ==========================================
   SWASTIIK GROUP — REAL ESTATE
   style.css
   Design language derived from the group's own
   brand materials: the Sriyantra mark (triangular
   geometry, saffron/green/maroon), and the diamond
   motif used across the Scarlet Homes brochure.
   ========================================== */

:root {
  /* Palette — pulled from the brand's own brochures & logo */
  --color-stone: #f5f1e8;
  --color-stone-deep: #ece5d4;
  --color-ink: #211f2e;
  --color-ink-soft: #4a4658;
  --color-saffron: #dd8a2e;
  --color-saffron-deep: #b96f1f;
  --color-maroon: #a8352a;
  --color-maroon-deep: #862a21;
  --color-green: #2f6b52;
  --color-gold: #c9a227;
  --color-white: #ffffff;
  --color-muted: #7a7488;
  --color-border: rgba(33, 31, 46, 0.1);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Inter", sans-serif;

  --container: 1240px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;

  --shadow-soft: 0 20px 50px -25px rgba(33, 31, 46, 0.35);
  --shadow-card: 0 10px 30px -15px rgba(33, 31, 46, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-stone);
  color: var(--color-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-saffron-deep);
  margin-bottom: 0.9rem;
  display: inline-block;
  position: relative;
  padding-left: 1.6rem;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1rem;
  height: 1px;
  background: var(--color-saffron-deep);
  transform: translateY(-50%) rotate(0deg);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-maroon);
}
.section-title-light {
  color: var(--color-white);
}
.section-title-light em {
  color: var(--color-saffron);
}

.section-desc {
  max-width: 620px;
  color: var(--color-ink-soft);
  font-size: 1.02rem;
  margin-top: 0.9rem;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 3.2rem;
  text-align: center;
}
.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Diamond / yantra motif — the site's signature framing device,
   echoing the rotated-diamond logo frame used on the Scarlet
   Homes brochure cover. */
.diamond-frame {
  position: relative;
}
.diamond-frame::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--color-gold);
  transform: rotate(45deg);
  opacity: 0.5;
  pointer-events: none;
}

.yantra-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(45deg, var(--color-gold) 0, var(--color-gold) 1px, transparent 1px, transparent 90px),
    repeating-linear-gradient(-45deg, var(--color-gold) 0, var(--color-gold) 1px, transparent 1px, transparent 90px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.8rem;
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn i {
  width: 16px;
  height: 16px;
}
.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-svg svg {
  width: 100%;
  height: 100%;
}
.btn-primary {
  background: var(--color-maroon);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-maroon-deep);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-dark {
  border: 1px solid var(--color-ink);
  color: var(--color-ink);
}
.btn-dark:hover {
  background: var(--color-ink);
  color: var(--color-white);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.badge-completed {
  background: rgba(47, 107, 82, 0.12);
  color: var(--color-green);
}
.badge-ongoing {
  background: rgba(168, 53, 42, 0.12);
  color: var(--color-maroon);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ==================== SPLASH SCREEN ==================== */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.splash-screen.splash-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-mark {
  position: relative;
  width: 108px;
  height: 108px;
}
.splash-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: splashPulse 1.8s ease-in-out infinite;
}
.splash-ring {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(221, 138, 46, 0.5);
  transform: rotate(45deg);
  animation: splashSpin 3.2s linear infinite;
}
.splash-wordmark {
  font-family: var(--font-display);
  color: var(--color-white);
  letter-spacing: 0.14em;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.splash-wordmark span {
  color: var(--color-saffron);
}
.splash-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: -1rem;
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}
@keyframes splashSpin {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.3rem 0;
  transition: all 0.35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(33, 31, 46, 0.06);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--color-ink);
}
.navbar:not(.scrolled) .logo-name {
  color: var(--color-white);
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--color-saffron-deep);
  text-transform: uppercase;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-ink);
  position: relative;
  padding-bottom: 4px;
}
.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.92);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-saffron);
  transition: width 0.25s ease;
}
.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.hamburger span {
  height: 2px;
  background: var(--color-ink);
  transition: all 0.25s ease;
}
.navbar:not(.scrolled) .hamburger span {
  background: var(--color-white);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 82vw);
  height: 100vh;
  background: var(--color-ink);
  z-index: 600;
  transition: right 0.35s ease;
  padding: 6rem 2rem 2rem;
}
.mobile-menu.open {
  right: 0;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.mobile-nav-link {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 600;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #201d2c 0%, #2c2438 55%, #3a2a2e 100%);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 29, 44, 0.55) 0%, rgba(32, 29, 44, 0.75) 60%, rgba(32, 29, 44, 0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
}
.hero-eyebrow {
  color: var(--color-saffron);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  color: var(--color-white);
  max-width: 780px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-saffron);
}
.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  margin-top: 1.4rem;
  max-width: 560px;
  font-family: var(--font-display);
  font-style: italic;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  margin-top: 1rem;
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.3); transform-origin: bottom; opacity: 0.4; }
}

/* ==================== STATS ==================== */
.stats-section {
  background: var(--color-ink);
  padding: 3.2rem 0;
}
.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-item:first-child {
  border-left: none;
}
.stat-number,
.stat-display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 500;
  color: var(--color-saffron);
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--color-saffron);
}
.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

/* ==================== ONGOING SPOTLIGHT ==================== */
.spotlight-section {
  padding: 6.5rem 0;
  background: var(--color-stone-deep);
  position: relative;
}
.spotlight-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.spotlight-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-tag {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  background: var(--color-maroon);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 2px;
}
.spotlight-desc {
  color: var(--color-ink-soft);
  margin-top: 1.2rem;
  max-width: 520px;
}
.spotlight-facts {
  display: flex;
  gap: 2.2rem;
  margin-top: 2rem;
}
.spotlight-fact span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-maroon);
  font-weight: 600;
}
.spotlight-fact p {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.2rem;
}
.spotlight-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.6rem;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  max-width: 480px;
}
.spotlight-address i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-maroon);
}
.spotlight-content .btn {
  margin-top: 2rem;
}

/* ==================== PROJECTS (COMPLETED) ==================== */
.projects-section {
  padding: 6.5rem 0;
}
.projects-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.project-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -20px rgba(33, 31, 46, 0.32);
}
.project-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-card-media img {
  transform: scale(1.06);
}
.project-year-tag {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: rgba(33, 31, 46, 0.82);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}
.project-card-body {
  padding: 1.3rem 1.3rem 1.5rem;
}
.project-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.6rem;
  color: var(--color-ink);
}
.project-card-meta {
  font-size: 0.84rem;
  color: var(--color-muted);
  margin-top: 0.3rem;
}
.project-card-loc {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--color-ink-soft);
  margin-top: 0.6rem;
}
.project-card-loc i {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-saffron-deep);
}
.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-maroon);
  margin-top: 1rem;
}
.project-card-link i {
  width: 13px;
  height: 13px;
}

/* ==================== WHY US ==================== */
.whyus-section {
  background: var(--color-ink);
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}
.whyus-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  position: relative;
  z-index: 1;
}
.whyus-card {
  padding: 2rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.whyus-card:hover {
  border-color: rgba(221, 138, 46, 0.5);
  background: rgba(255, 255, 255, 0.03);
}
.whyus-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(221, 138, 46, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.whyus-icon i {
  width: 20px;
  height: 20px;
  color: var(--color-saffron);
}
.whyus-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.whyus-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

/* ==================== GALLERY ==================== */
.gallery-section {
  padding: 6.5rem 0;
}
.gallery-masonry {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  columns: 4;
  column-gap: 1.2rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 1rem 0.8rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--color-ink);
  padding: 4.5rem 0 0;
  position: relative;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.footer-logo .logo-name {
  color: var(--color-white);
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-top: 1.2rem;
  max-width: 260px;
}
.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--color-saffron);
}
.footer-col a span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
}
.footer-address-block {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.7;
}
.footer-address-block strong {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 0.3rem;
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer-legal {
  display: flex;
  gap: 0.9rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
}

/* ==================== PROJECT MODAL ==================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(20, 18, 28, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3.5vh 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.project-modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-backdrop.open .project-modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.modal-close i {
  width: 18px;
  height: 18px;
  color: var(--color-ink);
}

.modal-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-gallery-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.modal-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: var(--color-stone);
}
.modal-thumb {
  width: 64px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s ease, outline 0.2s ease;
}
.modal-thumb.active,
.modal-thumb:hover {
  opacity: 1;
  outline: 2px solid var(--color-saffron-deep);
}
.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 2rem 2rem 2.4rem;
}
.modal-title-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.modal-year {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 600;
}
.modal-body h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--color-ink);
}
.modal-config {
  color: var(--color-saffron-deep);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 0.4rem;
}
.modal-desc {
  color: var(--color-ink-soft);
  margin-top: 1.1rem;
  font-size: 0.96rem;
}
.modal-subhead {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.9rem;
  color: var(--color-ink);
  border-top: 1px solid var(--color-border);
  padding-top: 1.6rem;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--color-border);
  padding-bottom: 0.5rem;
  font-size: 0.86rem;
  gap: 0.6rem;
}
.spec-label {
  color: var(--color-muted);
  flex-shrink: 0;
}
.spec-value {
  color: var(--color-ink);
  font-weight: 600;
  text-align: right;
}
.modal-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
}
.modal-amenities li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--color-ink-soft);
}
.modal-amenities li i {
  width: 15px;
  height: 15px;
  color: var(--color-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.modal-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
}
.modal-address i {
  width: 16px;
  height: 16px;
  color: var(--color-maroon);
  flex-shrink: 0;
  margin-top: 3px;
}
.modal-map {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 0.4rem;
}

/* ==================== FLOATING SCROLL-TO-TOP (kept minimal, no contact) ==================== */
.floating-btns {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 0.7rem 1rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.4);
}
.float-btn i {
  width: 16px;
  height: 16px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1080px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-masonry {
    columns: 3;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .spotlight-media {
    aspect-ratio: 16 / 10;
  }
  .spotlight-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .spotlight-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .spotlight-facts {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 1.4rem;
  }
  .spotlight-address {
    justify-content: center;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .stat-item:nth-child(3) {
    border-left: none;
  }
  .stat-item {
    border-left: none !important;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-masonry {
    columns: 2;
  }
  .modal-amenities {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-container,
  .stats-grid,
  .spotlight-inner,
  .projects-grid,
  .whyus-grid,
  .gallery-masonry,
  .footer-inner,
  .footer-bottom {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .gallery-masonry {
    columns: 2;
    column-gap: 0.8rem;
  }
  .hero-content {
    padding: 7rem 1.2rem 5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .modal-body {
    padding: 1.6rem 1.2rem 2rem;
  }
  .spotlight-facts {
    gap: 1.6rem;
  }
  .spotlight-content .btn {
    width: 100%;
    max-width: 320px;
  }
}

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