/* =========================================================
   MITTAL ARCHITECT — GLOBAL CSS (MPA Edition)
   Preserves original design language
========================================================= */
:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --charcoal: #1a1814;
  --deep-brown: #2c2418;
  --gold: #b8965a;
  --gold-light: #d4a96a;
  --gold-pale: #f0e4cc;
  --stone: #8c8070;
  --stone-light: #c4b8a8;
  --text-primary: #1a1814;
  --text-secondary: #5c5448;
  --text-muted: #9c9088;
  --border: rgba(184, 150, 90, 0.2);
  --border-strong: rgba(184, 150, 90, 0.5);
  --shadow: 0 4px 40px rgba(26, 24, 20, 0.08);
  --shadow-lg: 0 16px 80px rgba(26, 24, 20, 0.15);
  --vastu-orange: #e8671a;
  --vastu-red: #c0392b;
  --vastu-blue: #1a5276;
  --vastu-green: #1e8449;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--warm-white);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
.serif {
  font-family: "Cormorant Garamond", serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes scrollAnim {
  0% {
    top: -20px;
  }
  100% {
    top: 60px;
  }
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes vastuspin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(15px, -10px) rotate(120deg);
  }
  66% {
    transform: translate(-10px, 15px) rotate(240deg);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(45deg);
  }
  50% {
    transform: translate(-20px, -15px) rotate(225deg);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  40% {
    transform: translate(20px, 10px) rotate(180deg);
  }
  80% {
    transform: translate(-5px, -20px) rotate(360deg);
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease forwards;
}
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.opacity-0 {
  opacity: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* LAYOUT */
section {
  padding: 90px 0;
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTION HEADERS */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-tag span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184, 150, 90, 0.08);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 2px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 14px auto 0;
}
.section-header-centered {
  text-align: center;
}
.section-header-centered .section-tag {
  justify-content: center;
}
.gold-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px 0;
}
.section-header-centered .gold-line {
  margin: 18px auto;
}

/* BUTTONS */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--charcoal);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--charcoal);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--deep-brown);
}
.arrow-right {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn-gold:hover .arrow-right,
.btn-outline:hover .arrow-right,
.btn-primary:hover .arrow-right {
  transform: translateX(4px);
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 16px 0;
}
#navbar.scrolled {
  background: rgba(26, 24, 20, 0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 150, 90, 0.06);
  flex-shrink: 0;
}
.nav-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.logo-sub {
  font-size: 9px;
  color: var(--stone-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.15);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}
.nav-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--charcoal);
  z-index: 999;
  transition: right 0.4s ease;
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.5);
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.3s ease;
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--stone-light);
  transition: all 0.3s ease;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* BREADCRUMBS */
.breadcrumbs {
  background: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs a,
.breadcrumbs span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.breadcrumbs a {
  color: var(--gold-light);
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: #fff;
}
.breadcrumb-sep {
  color: var(--stone);
  opacity: 0.5;
}

/* SCROLL TOP */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--gold);
  color: #fff;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  background: var(--charcoal);
  border-radius: 4px;
  overflow: hidden;
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  animation: popIn 0.3s ease;
}
.lightbox-img {
  max-height: 72vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 200px;
}
.lightbox-img img {
  max-height: 72vh;
  width: auto;
  max-width: 88vw;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 22px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: var(--gold);
}
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--stone);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 60px;
  background: var(--deep-brown);
}

/* PROJECT MODAL */
.proj-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.proj-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.proj-modal {
  background: var(--warm-white);
  border-radius: 4px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  animation: popIn 0.3s ease;
  position: relative;
}
.proj-modal-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 54px);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  float: right;
  margin: 14px 14px -50px 0;
}
.proj-modal-close:hover {
  background: var(--gold);
}
.proj-modal-hero {
  height: 500px;
  position: relative;
  overflow: hidden;
}
.proj-hero-bg {
  background-size: cover !important;
  background-position: center !important;
}
.proj-modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 0.85) 0%,
    rgba(26, 24, 20, 0.3) 60%,
    transparent 100%
  );
}
.proj-modal-hero-content {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
}
.proj-modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #fff;
  font-weight: 300;
  line-height: 1.2;
}
.proj-modal-loc {
  font-size: 12px;
  color: var(--stone-light);
  margin-top: 6px;
  letter-spacing: 0.08em;
}
.proj-modal-body {
  padding: 28px;
}
.proj-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px;
  background: rgba(184, 150, 90, 0.06);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.proj-meta-item {
  flex: 1;
  min-width: 100px;
}
.proj-meta-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 3px;
}
.proj-meta-value {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
}
.proj-modal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.proj-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.proj-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.proj-highlight-item {
  font-size: 12px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.proj-highlight-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.proj-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.proj-service-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184, 150, 90, 0.08);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 2px;
}
.proj-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.proj-gallery-item {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--deep-brown);
}
.proj-gallery-item:first-child {
  grid-column: span 2;
}
.proj-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.proj-gallery-item:hover .proj-gallery-img {
  transform: scale(1.04);
}
.proj-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.proj-gallery-item:hover .proj-gallery-overlay {
  background: rgba(0, 0, 0, 0.3);
}
.proj-gallery-zoom {
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.3s;
}
.proj-gallery-item:hover .proj-gallery-zoom {
  opacity: 1;
}
.proj-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s;
}
.proj-gallery-item:hover .proj-gallery-caption {
  opacity: 1;
}
.proj-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--stone);
  font-size: 10px;
}

/* PROJECT BADGES */
.project-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.badge-completed {
  background: rgba(30, 132, 73, 0.15);
  color: #1e8449;
  border: 1px solid rgba(30, 132, 73, 0.3);
}
.badge-ongoing {
  background: rgba(184, 150, 90, 0.12);
  color: var(--gold);
  border: 1px solid var(--border);
}
.badge-commercial {
  background: rgba(26, 82, 118, 0.12);
  color: #1a5276;
  border: 1px solid rgba(26, 82, 118, 0.25);
}

/* HERO */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(160deg, var(--charcoal), var(--deep-brown)); */
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 24, 20, 0.72) 0%,
    rgba(26, 24, 20, 0.4) 60%,
    rgba(26, 24, 20, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding-top: 80px;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
  margin-top: 20px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-badge {
  position: absolute;
  right: 80px;
  bottom: 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.35);
  background: rgba(26, 24, 20, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 20s linear infinite;
}
.hero-badge-inner {
  text-align: center;
  animation: spin 20s linear infinite reverse;
}
.hero-badge .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
}
.hero-badge .label {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.7;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--gold-light);
  animation: scrollAnim 1.5s ease infinite;
}

/* MARQUEE */
.marquee-section {
  background: var(--charcoal);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(184, 150, 90, 0.15);
  border-bottom: 1px solid rgba(184, 150, 90, 0.15);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
  white-space: nowrap;
}
.marquee-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.marquee-vastu {
  color: var(--gold);
  font-weight: 500;
}

/* STATS */
.stats-section {
  background: var(--charcoal);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(184, 150, 90, 0.15);
  position: relative;
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto;
  opacity: 0.4;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.6;
}

/* ABOUT PREVIEW */
.about-preview {
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-frame {
  position: relative;
}
.about-img-main {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.about-value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.value-text h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
  letter-spacing: 0.04em;
}
.value-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* VASTU SECTION */
.vastu-section {
  background: var(--charcoal);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.vastu-float {
  position: absolute;
  font-size: 80px;
  opacity: 0.04;
  color: var(--gold);
  pointer-events: none;
}
.vf-1 {
  top: 10%;
  left: 5%;
  animation: float1 8s ease-in-out infinite;
}
.vf-2 {
  top: 20%;
  right: 8%;
  animation: float2 10s ease-in-out infinite;
}
.vf-3 {
  bottom: 15%;
  left: 15%;
  animation: float3 12s ease-in-out infinite;
}
.vf-4 {
  bottom: 10%;
  right: 5%;
  animation: float1 9s ease-in-out infinite reverse;
}
.vastu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.vastu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 150, 90, 0.1);
  border: 1px solid rgba(184, 150, 90, 0.25);
  padding: 8px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.vastu-badge-icon {
  font-size: 14px;
}
.vastu-badge-text {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.vastu-principles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.vastu-principle {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.vp-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  margin-top: 2px;
}
.vp-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}
.vp-desc {
  font-size: 12px;
  color: var(--stone);
}
.vastu-wheel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vastu-wheel {
  position: relative;
  width: 320px;
  height: 320px;
}
.vastu-outer-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.2);
  animation: vastuspin 40s linear infinite;
}
.vastu-middle-ring {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.15);
  animation: vastuspin 30s linear infinite reverse;
}
.vastu-inner-ring {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.25);
  background: rgba(184, 150, 90, 0.03);
}
.vastu-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.vastu-center-symbol {
  font-size: 36px;
  color: var(--gold);
}
.vastu-center-text {
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 4px;
}
.vastu-direction {
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
}
.vastu-dir-letter {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.12em;
}
.vastu-dir-element {
  font-size: 9px;
  color: var(--stone);
  letter-spacing: 0.08em;
}
.vd-n {
  top: 8%;
  left: 50%;
}
.vd-ne {
  top: 18%;
  left: 82%;
}
.vd-e {
  top: 50%;
  left: 94%;
}
.vd-se {
  top: 82%;
  left: 82%;
}
.vd-s {
  top: 93%;
  left: 50%;
}
.vd-sw {
  top: 82%;
  left: 18%;
}
.vd-w {
  top: 50%;
  left: 6%;
}
.vd-nw {
  top: 18%;
  left: 18%;
}

/* SERVICES GRID */
.services-section {
  padding: 100px 0;
  background: var(--warm-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 0;
}
.service-card:hover::before {
  transform: scaleY(1);
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.service-icon {
  font-size: 24px;
  margin: 10px 0;
  position: relative;
  z-index: 1;
}
.service-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.service-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.service-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 18px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.service-card:hover .service-num {
  color: rgba(184, 150, 90, 0.2);
}
.service-card:hover .service-title {
  color: var(--cream);
}
.service-card:hover .service-desc {
  color: var(--stone-light);
}
.service-card:hover .service-link {
  color: var(--gold-light);
}

/* PROJECTS PREVIEW */
.projects-preview {
  padding: 100px 0;
  background: var(--cream);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}
.project-img {
  position: absolute;
  inset: 0;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover .project-img img {
  transform: scale(1.06);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 0.9) 0%,
    rgba(26, 24, 20, 0.2) 60%,
    transparent 100%
  );
  transition: background 0.4s;
}
.project-card:hover .project-overlay {
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 0.95) 0%,
    rgba(26, 24, 20, 0.4) 60%,
    rgba(26, 24, 20, 0.1) 100%
  );
}
.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}
.project-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: #fff;
  font-weight: 300;
  margin: 8px 0 4px;
}
.project-location {
  font-size: 11px;
  color: var(--stone-light);
  letter-spacing: 0.08em;
}
.project-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}
.project-card:hover .project-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* PROCESS */
.process-section {
  background: var(--charcoal);
  padding: 100px 0;
}
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--charcoal);
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 100px 0;
  background: var(--warm-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.testimonial-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
}
.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-top: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
}
.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 2px;
}
.author-loc {
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.06em;
}

/* CTA BANNER */
.cta-banner {
  background: var(--charcoal);
  padding: 80px 0;
}
.cta-content {
  text-align: center;
}
.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.15;
  margin: 10px 0 16px;
}
.cta-sub {
  font-size: 14px;
  color: var(--stone-light);
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PAGE HERO (inner pages) */
.about-hero {
  position: relative;
  height: 52vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 0.9) 0%,
    rgba(26, 24, 20, 0.5) 50%,
    rgba(26, 24, 20, 0.3) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 52px 24px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-top: 10px;
}
.page-hero-sub {
  font-size: 14px;
  color: var(--stone-light);
  margin-top: 12px;
  letter-spacing: 0.06em;
}

/* ABOUT STORY */
.about-story {
  padding: 100px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
}
.story-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 18px;
}
.sidebar-block {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 16px;
  background: #fff;
}
.sidebar-block h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 10px;
}
.sidebar-block p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* TIMELINE */
.timeline-section {
  background: var(--charcoal);
  padding: 100px 0;
}
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
  padding-left: 28px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--charcoal);
  box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.2);
}
.timeline-year {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.75;
}

/* WHY US */
.why-section {
  background: var(--charcoal);
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.why-card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 150, 90, 0.15);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.why-card:hover {
  background: rgba(184, 150, 90, 0.06);
  border-color: rgba(184, 150, 90, 0.35);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.why-title {
  font-size: 14px;
  font-weight: 600;
  /* color: var(--cream); */
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.why-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.75;
}

/* SERVICES PAGE */
.services-page {
  padding: 60px 0 100px;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-page-card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}
.service-page-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.spc-vastu {
  border-color: var(--gold);
  background: rgba(184, 150, 90, 0.04);
}
.spc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
}
.spc-icon {
  font-size: 28px;
  display: block;
  margin: 10px 0;
}
.spc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 12px;
}
.spc-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.spc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spc-features li {
  font-size: 12px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.spc-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* PROJECTS PAGE */
.projects-page {
  padding: 60px 0 100px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.filter-btn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--stone);
  transition: all 0.3s ease;
  background: transparent;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.projects-masonry {
  columns: 3;
  column-gap: 20px;
  margin-top: 16px;
}
.masonry-card {
  break-inside: avoid;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
}
.masonry-img {
  overflow: hidden;
}
.masonry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.6s ease; */
  display: block;
}
.masonry-card:hover .masonry-img img {
  transform: scale(1.04);
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 0.8) 0%,
    transparent 60%
  );
}
.masonry-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
}
.masonry-meta {
  margin-bottom: 6px;
}
.masonry-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
}
.masonry-loc {
  font-size: 10px;
  color: var(--stone-light);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.masonry-view {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #fff;
  opacity: 0;
  font-size: 16px;
  transition: all 0.3s;
  transform: translateX(-6px);
}
.masonry-card:hover .masonry-view {
  opacity: 1;
  transform: translateX(0);
}

/* GALLERY PAGE */
.gallery-page {
  padding: 40px 0 100px;
}
.gallery-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--charcoal);
  padding: 4px;
  border-radius: 3px;
  width: fit-content;
}
.gallery-tab {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  color: var(--stone-light);
  transition: all 0.3s;
  background: transparent;
}
.gallery-tab.active {
  background: var(--gold);
  color: #fff;
}
.gallery-tab-content {
  display: none;
}
.gallery-tab-content.active {
  display: block;
}
.gallery-grid {
  columns: 3;
  column-gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
  cursor: pointer;
  background: var(--deep-brown);
}
.gallery-img {
  overflow: hidden;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover .gallery-img img {
  transform: scale(1.04);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(0, 0, 0, 0.3);
}
.gallery-zoom {
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-card {
  background: var(--charcoal);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(184, 150, 90, 0.12);
}
.video-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--deep-brown);
}
.video-meta {
  padding: 14px 16px;
}
.video-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--cream);
}
.video-sub {
  font-size: 11px;
  color: var(--stone);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* CONTACT */
.contact-hero {
  background: var(--charcoal);
  padding: 50px 0 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 32px;
  margin-top: 2px;
}
.contact-detail-text label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 4px;
}
.contact-detail-text a {
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-detail-text a:hover {
  color: var(--gold);
}
.contact-detail-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.map-embed {
  margin-top: 24px;
  border-radius: 2px;
  overflow: hidden;
  height: 220px;
  background: var(--deep-brown);
  position: relative;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-placeholder-ui {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-brown);
  z-index: 0;
}
.map-embed iframe {
  position: relative;
  z-index: 1;
}
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px;
}
.contact-form-wrap h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 24px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 13px;
  font-family: "Outfit", sans-serif;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  height: 100px;
  resize: vertical;
}
.form-success {
  display: none;
  padding: 14px;
  background: rgba(30, 132, 73, 0.1);
  border: 1px solid rgba(30, 132, 73, 0.3);
  border-radius: 2px;
  color: #1e8449;
  font-size: 13px;
  text-align: center;
  margin-top: 4px;
}
.business-hours {
  background: var(--charcoal);
  padding: 80px 0;
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hours-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(184, 150, 90, 0.15);
  border-radius: 2px;
}
.hours-day {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 8px;
}
.hours-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--gold);
}
.hours-note {
  font-size: 11px;
  color: var(--stone);
  margin-top: 6px;
}

/* CITY PAGES */
.city-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(160deg, var(--charcoal), var(--deep-brown));
}
.city-hero .page-hero-content {
  padding-bottom: 52px;
}
.faq-section {
  padding: 80px 0;
  background: var(--warm-white);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-question {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 12px;
}

/* LEGAL PAGES */
.legal-hero {
  background: var(--charcoal);
  padding: 120px 0 52px;
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px;
}
.legal-date {
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  padding: 10px 14px;
  background: rgba(184, 150, 90, 0.06);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: inline-block;
}
.legal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--charcoal);
  font-weight: 400;
  margin: 32px 0 12px;
}
.legal-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.legal-content li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: var(--charcoal);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(184, 150, 90, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand .logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 150, 90, 0.05);
  margin-bottom: 16px;
}
.footer-brand .logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-brand .logo-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}
.footer-brand .logo-sub {
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--stone);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact-info p {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.footer-copy {
  font-size: 12px;
  color: var(--stone);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--gold);
}
.made-by {
  text-align: center;
  font-size: 11px;
  color: var(--stone);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 16px;
}
.made-by a {
  color: var(--gold);
  transition: color 0.2s;
}
.made-by a:hover {
  color: var(--gold-light);
}

/* FAQ / AEO sections */
.aeo-section {
  background: var(--cream);
  padding: 80px 0;
}
.aeo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 44px;
}
.answer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px;
  position: relative;
}
.answer-card::before {
  content: "Q";
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  color: var(--gold-pale);
  line-height: 1;
}
.answer-q {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.5;
}
.answer-a {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3) {
    border-top: 1px solid rgba(184, 150, 90, 0.15);
    border-right: 1px solid rgba(184, 150, 90, 0.15);
  }
  .about-grid,
  .vastu-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-grid,
  .services-page-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    flex-wrap: wrap;
    gap: 32px;
  }
  .process-step {
    flex: 1;
    min-width: 140px;
  }
  .aeo-grid {
    grid-template-columns: 1fr;
  }
  .proj-modal-cols {
    grid-template-columns: 1fr;
  }
  .proj-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proj-gallery-item:first-child {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-badge {
    right: 20px;
    bottom: 60px;
    width: 80px;
    height: 80px;
  }
  .hero-badge .num {
    font-size: 22px;
  }
  .services-grid,
  .services-page-grid,
  .why-grid,
  .testimonials-grid,
  .hours-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid,
  .projects-masonry {
    columns: 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    columns: 2;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .proj-gallery-grid {
    grid-template-columns: 1fr;
  }
  .proj-gallery-item:first-child {
    grid-column: span 1;
  }
  section {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(44px, 12vw, 60px);
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    columns: 1;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* SKELETON LOADING */
.skeleton {
  background: linear-gradient(90deg, #f0ece4 25%, #e8e2d8 50%, #f0ece4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: 2px;
}
.img-loading {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.img-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 25%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
