/* ═══════════════════════════════════════════════════════════════
   GPS Group Ambernath — Premium Stylesheet
   Inspired by Range Developments Group
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --ink: #1a130d;
  --muted: #6b5e52;
  --ivory: #faf7f2;
  --paper: #ffffff;
  --deep: #2d1f12;
  --copper: #a34600;
  --copper-dark: #7a3500;
  --copper-soft: #c19b6c;
  --copper-light: #f5ede0;
  --warm: #f5ede0;
  --sage: #efe8dc;
  --line: rgba(26, 19, 13, 0.08);
  --line-soft: rgba(26, 19, 13, 0.05);
  --line-strong: rgba(26, 19, 13, 0.15);
  --shadow: none;
}

/* ── Reset & Global ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis,
html.lenis body {
  height: auto;
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}

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

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

button {
  cursor: pointer;
}

/* ── Noise Texture Overlay ─────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.2;
}

h4 {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.3;
}

p {
  margin: 0;
}

.eyebrow,
.section-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copper);
  font-family: 'Montserrat', sans-serif;
}

.section-kicker::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-soft));
  margin-top: 12px;
}

.eyebrow.dark {
  color: var(--copper);
}

h1 .line,
h2 .line {
  display: block;
  overflow: hidden;
}

h1 .line > span,
h2 .line > span {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

/* ══════════════════════════════════════════════════════════════
   LOADER
   ══════════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  transition: opacity 0.6s ease 0.8s, visibility 0.6s ease 0.8s;
}

.loader-panel {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--deep);
  background-image: radial-gradient(ellipse at center, rgba(185, 137, 85, 0.08) 0%, transparent 70%);
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}

.loader-panel.left {
  left: 0;
  width: 50%;
}

.loader-panel.right {
  right: 0;
  width: 50%;
}

.loader.is-hidden .loader-panel.left {
  transform: translateX(-101%);
}

.loader.is-hidden .loader-panel.right {
  transform: translateX(101%);
}

.loader.is-hidden {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.loader-line {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  background: rgba(247, 243, 236, 0.3);
  position: absolute;
  top: 50%;
  z-index: 0;
  pointer-events: none;
}

.loader-copy {
  grid-column: 2;
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: clamp(1.3rem, 3.5vw, 2.8rem);
  color: var(--ivory);
  z-index: 1;
}

.loader-copy strong {
  position: relative;
  display: grid;
  min-width: 8ch;
  height: 1.15em;
  overflow: hidden;
}

.loader-copy em {
  grid-area: 1 / 1;
  font-style: normal;
  opacity: 0;
  animation: loaderWords 2.4s steps(1) infinite;
}

.loader-copy em:nth-child(1) {
  opacity: 1;
}

.loader-copy em:nth-child(2) {
  animation-delay: 0.8s;
}

.loader-copy em:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes loaderWords {
  0%, 32% {
    opacity: 1;
    transform: translateY(0);
  }
  33%, 100% {
    opacity: 0;
    transform: translateY(-30%);
  }
}

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  padding: 0 max(28px, calc((100vw - 1320px) / 2));
  gap: 32px;
  background: #ffffff;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  color: var(--ink);
  transition: all 0.4s ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  padding: 6px 0;
}

.brand img {
  width: 76px;
  height: 76px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

@media (max-width: 900px) {
  .brand img {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 52px;
    height: 52px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* ── Header CTA & Buttons ─────────────────────────────────── */
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  background: transparent;
  color: white;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.header-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.header-cta:hover::before {
  transform: scaleX(1);
}

.header-cta {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.is-scrolled .header-cta {
  color: var(--ink);
  background: transparent;
  border-color: var(--copper);
}

.btn.primary {
  color: white;
  background: var(--copper);
  border-color: var(--copper);
}

.btn.primary:hover {
  background: rgba(255, 255, 255, 1);
  color: #000;
  border-color: rgba(255, 255, 255, 1);
}

.btn.glass {
  color: var(--copper);
  background: transparent;
  border: 1px solid var(--copper);
}

.btn.glass:hover {
  background: var(--copper);
  color: white;
  border-color: var(--copper);
}

/* ── Menu Toggle ───────────────────────────────────────────── */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3.5px 0;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── Mega Menu ─────────────────────────────────────────────── */
.nav-item {
  position: relative;
}

/* Bridge pseudo-element to prevent hover gap */
.nav-item.has-mega::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 24px;
  background: transparent;
  display: block;
  z-index: 105;
}

.mega-menu {
  position: fixed;
  left: 50%;
  top: 80px;
  transform: translate(-50%, 8px);
  width: min(1020px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 20px 50px rgba(26, 19, 13, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease,
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 110;
}

.has-mega:hover .mega-menu,
.has-mega.is-active .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(160deg, var(--copper), var(--copper-dark));
  border-radius: 0;
  min-height: 220px;
}

.mega-copy span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mega-copy strong {
  color: white;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
}

.mega-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  min-height: 220px;
  cursor: pointer;
}

.mega-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mega-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  z-index: -1;
}

.mega-card:hover img {
  transform: scale(1.08);
}

.mega-card h4 {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 1rem;
  font-weight: 400;
}

.mega-card span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
}

.mega-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--copper);
  min-height: 220px;
  border-radius: 0;
  text-align: center;
  transition: background 0.3s ease;
}

.mega-card-cta::after {
  display: none;
}

.mega-card-cta span {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mega-card-cta:hover {
  background: var(--copper-dark);
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 85svh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: white;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
  z-index: 0;
  will-change: opacity;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: kenBurns 14s ease-in-out infinite alternate;
}

.hero-image:nth-child(2) img {
  animation-delay: -7s;
}

.hero-image.is-active {
  opacity: 1;
  z-index: 1;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-1%, -1%);
  }
}

@media (min-width: 1024px) {
  .hero-image img {
    /* Offset right slightly to keep building out of text */
    object-position: 70% center; 
  }
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 14%, transparent 28%),
    linear-gradient(90deg, rgba(26, 19, 13, 0.32) 0%, rgba(26, 19, 13, 0.08) 55%, rgba(26, 19, 13, 0.35) 100%),
    linear-gradient(to bottom, rgba(26, 19, 13, 0.25) 0%, transparent 40%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ── Hero Marquee ──────────────────────────────────────────── */
.hero-marquee {
  position: absolute;
  top: 10vh;
  left: 0;
  z-index: 1;
  display: flex;
  width: max-content;
  color: rgba(255, 255, 255, 0.06);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: clamp(5rem, 15vw, 15rem);
  font-weight: 400;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  pointer-events: none;
}

.hero {
  position: relative;
  height: 85svh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: white;
  isolation: isolate;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  text-align: right;
  padding: 140px max(28px, calc((100vw - 1320px) / 2)) 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 100%;
  box-sizing: border-box;
  left: 0;
  right: 0;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.1;
  margin: 0;
  text-align: right;
  width: 100%;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-content h1 .line {
  text-align: right;
  margin: 0 0 0 auto;
}

.hero-content h1 .line:nth-child(2) {
  font-size: 0.72em;
}

.hero-content h1 .line > span {
  margin: 0 0 0 auto;
  text-align: right;
}

.hero-content p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  text-align: right;
}

.hero-content .eyebrow {
  text-align: right;
  margin: 0 0 0 auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}



/* ── Hero Panel (Glass Card) ───────────────────────────────── */
.hero-panel {
  position: absolute;
  left: max(28px, calc((100vw - 1320px) / 2));
  bottom: 40px;
  width: min(360px, calc(100% - 56px));
  z-index: 3;
  padding: 28px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: none;
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 2rem;
}

.hero-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--copper);
}

.hero-progress span.is-running {
  animation: fill 5.8s linear forwards;
}

/* ── Scroll Indicator ──────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.75);
  animation: scrollPulse 2s ease infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}

/* ── Slide Rail ────────────────────────────────────────────── */
.slide-rail {
  position: absolute;
  left: max(28px, calc((100vw - 1320px) / 2));
  bottom: 40px;
  z-index: 4;
  display: flex;
  flex-direction: row;
  gap: 0;
}

.slide-rail button {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-right: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  padding: 0;
  letter-spacing: 0.05em;
}

.slide-rail button:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.slide-rail button.is-active {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS — Shared
   ══════════════════════════════════════════════════════════════ */
.section {
  padding: clamp(120px, 15vh, 200px) max(28px, calc((100vw - 1280px) / 2));
}

/* ══════════════════════════════════════════════════════════════
   INTRO / ABOUT
   ══════════════════════════════════════════════════════════════ */
.intro {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: 'GPS';
  position: absolute;
  right: -0.06em;
  bottom: -0.25em;
  color: rgba(26, 19, 18, 0.03);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: clamp(16rem, 38vw, 34rem);
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

.intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

.intro > .section-kicker,
.intro > .intro-grid,
.intro > .signature-strip {
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.intro-copy h2 {
  color: var(--ink);
}

.intro-text {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.section-kicker {
  margin: 0 0 20px;
}

.signature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 7vw, 90px);
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 0;
  overflow: hidden;
}

.signature-strip span {
  min-height: 90px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(255, 253, 249, 0.7);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   PROJECTS
   ══════════════════════════════════════════════════════════════ */
.projects {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 800px;
  overflow: visible;
}

.project-controls {
  display: flex;
  gap: 10px;
}

.icon-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: white;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}

.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 400px);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -ms-overflow-style: none;
}

.project-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  scroll-snap-align: start;
  min-height: 560px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: 0;
  background: var(--deep);
  color: white;
  box-shadow: none;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  will-change: transform;
}


.project-card .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  background: rgba(185, 137, 85, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0;
  color: white;
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-card > div:last-child {
  padding: 26px;
  background: linear-gradient(135deg, #1a130d, #2d1f12);
}

.project-card span {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.project-card h3 {
  margin: 8px 0 0;
}

.station-dist {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: none;
}

.project-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-size: 0.95rem;
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
  z-index: 3;
}

/* ══════════════════════════════════════════════════════════════
   PROJECT DETAIL — AMENITIES & LOCATION
   ══════════════════════════════════════════════════════════════ */
.project-overview {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.project-elevation img {
  width: 100%;
  height: auto;
  display: block;
}

.project-elevation figcaption,
.project-elevation p {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-overview h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.project-overview p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin: 20px 0 0;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: var(--line);
}

.project-fact {
  padding: 24px;
  background: white;
}

.project-fact strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper);
  margin-bottom: 6px;
}

.project-fact span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .project-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .project-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.promise-media {
  min-height: 580px;
  overflow: hidden;
  border-radius: 0;
}

.promise-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.promise-media.is-visible img {
  transform: scale(1);
}

.promise-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-top: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.stats div {
  padding: 20px;
  border: 1px solid rgba(26, 19, 18, 0.1);
  border-radius: 0;
  background: rgba(255, 253, 249, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats div:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.stats strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 2.2rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.stats span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════════════════ */
.reviews {
  background: var(--paper);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--copper-light);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 137, 85, 0.3);
  box-shadow: none;
}

.review-card .quote-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  opacity: 0.15;
  color: var(--copper);
}

.review-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.review-card .review-author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-card .review-author strong {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
}

.review-card .review-author span {
  color: var(--muted);
  font-size: 0.78rem;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 100px);
  padding: clamp(100px, 14vw, 180px) max(28px, calc((100vw - 1280px) / 2));
  color: white;
  background:
    linear-gradient(135deg, rgba(26, 19, 18, 0.94), rgba(163, 70, 0, 0.82)),
    url('assets/images/hero-desktop-1.webp') center / cover fixed;
  position: relative;
}

.contact-copy h2 {
  color: white;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 20px;
}

.contact-links {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-links a {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  font-size: 0.85rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.contact-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: white;
  background: rgba(0, 0, 0, 0.12);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--copper);
}

.contact-form select option {
  color: var(--ink);
  background: white;
}

.form-note {
  min-height: 20px;
  margin: 12px 0 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form .form-note {
  color: var(--ivory);
}

.form-note.success {
  color: #1b5e20;
}

.contact-form .form-note.success {
  color: #81c784;
}

.form-note.error {
  color: #c62828;
}

.contact-form .form-note.error {
  color: #ef9a9a;
}

/* ══════════════════════════════════════════════════════════════
   INQUIRY FORM & ADDRESS
   ══════════════════════════════════════════════════════════════ */
.inquiry-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.inquiry-form-wrapper {
  background: white;
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.inquiry-form .form-group {
  margin-bottom: 24px;
}

.inquiry-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.inquiry-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.inquiry-form input:focus {
  outline: none;
  border-color: var(--copper);
  background: white;
  box-shadow: 0 0 0 4px rgba(193, 155, 108, 0.1);
}

.site-address-card {
  padding: 32px;
  background: var(--sage);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}

.site-address-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--ink);
}

.site-address-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  overflow: hidden;
}

.footer img {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 0;
  background: white;
}

.footer strong {
  display: block;
  color: white;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.footer a {
  display: block;
  margin-bottom: 6px;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.7;
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px max(28px, calc((100vw - 1280px) / 2));
  background: #1a130d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   REVEAL SYSTEM
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════════════════════════ */
@keyframes fill {
  to {
    width: 100%;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — max-width: 900px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  body {
    cursor: auto;
  }

  button {
    cursor: pointer;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    padding: 0 16px;
  }

  .nav-links {
    display: none;
    z-index: 120;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    opacity: 1;
    font-size: 0.95rem;
  }

  .header-cta {
  color: var(--ink);
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mega-menu {
    display: none;
  }

  .nav-item {
    display: contents;
  }

  .hero {
    min-height: 92svh;
    padding-bottom: 32px;
  }

  .hero-panel,
  .slide-rail {
    display: none;
  }

  .hero-content {
    padding: 110px 20px 80px;
    text-align: center;
    align-items: center;
  }

  .hero-content h1,
  .hero-content h1 .line,
  .hero-content h1 .line > span,
  .hero-content .eyebrow,
  .hero-content p:not(.eyebrow) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-marquee {
    font-size: 5rem;
  }

  .hero-scroll {
    bottom: 20px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .promise-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 20px;
  }

  .promise-media {
    aspect-ratio: 16 / 10;
    min-height: 260px;
    border-radius: 8px;
  }

  .promise-media img {
    min-height: 260px;
  }

  .promise-copy {
    max-width: 100%;
    text-align: center;
  }

  .promise-copy h2,
  .promise-copy p:not(.eyebrow) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .promise-stats {
    justify-content: center;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .signature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card,
  .btn,
  .header-cta,
  .icon-btn {
    cursor: pointer;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — max-width: 620px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 620px) {
  .site-header {
    top: 0;
    width: 100%;
    height: 64px;
    padding: 0 16px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .project-track {
    grid-auto-columns: minmax(270px, 88vw);
  }

  .project-card {
    min-height: 480px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .promise-media,
  .promise-media img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .signature-strip {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MULTI-PAGE STYLES
   ============================================================ */

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
  isolation: isolate;
  padding: 100px max(28px, calc((100vw - 1320px) / 2)) 60px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: blur(4px) saturate(0.9) contrast(1.05);
}

.page-hero .hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 54%, rgba(185, 137, 85, 0.14), transparent 24%),
    linear-gradient(90deg, rgba(26, 19, 18, 0.82), rgba(26, 19, 18, 0.4) 52%, rgba(26, 19, 18, 0.72)),
    linear-gradient(0deg, rgba(26, 19, 18, 0.88), rgba(26, 19, 18, 0.5) 40%, rgba(26, 19, 18, 0.3) 58%);
}

.page-hero .hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero-content .eyebrow {
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-top: 12px;
  line-height: 1.05;
}

.page-hero-content p:not(.eyebrow) {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 20px auto 0;
  max-width: 600px;
}

/* --- Page Sections --- */
.page-section {
  padding: clamp(80px, 12vw, 140px) max(28px, calc((100vw - 1280px) / 2));
}

.section--soft {
  background: var(--ivory);
}

/* --- Project Grid (projects.html) --- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.project-grid-card {
  display: block;
  border-radius: 0;
  overflow: hidden;
  background: var(--deep);
  color: white;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  text-decoration: none;
}

.project-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: none;
}

.project-grid-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  overflow: hidden;
}

.project-grid-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  flex: 0 0 auto;
}

.project-grid-img img,
.project-grid-img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-grid-card:hover .project-grid-img img {
  transform: scale(1.06);
}

.project-grid-img--placeholder {
  background: var(--copper-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-grid-img--placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-grid-img .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  background: rgba(185, 137, 85, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 0;
  color: white;
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-grid-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: linear-gradient(135deg, #1a130d, #2d1f12);
}

.project-grid-info .eyebrow {
  margin-bottom: 8px;
}

.project-grid-info h3 {
  margin: 0;
}

.project-grid-info p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* --- Expanded Footer (4-column) --- */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding: 64px max(28px, calc((100vw - 1280px) / 2)) 48px;
  color: rgba(255, 255, 255, 0.7);
  background: #1a130d;
  position: relative;
  overflow: hidden;
}

.footer-top::before {
  content: 'GPS';
  position: absolute;
  right: -2%;
  bottom: -20%;
  color: rgba(255, 255, 255, 0.03);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: clamp(14rem, 32vw, 28rem);
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

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

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 140px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.footer-brand p {
  margin: 0 0 20px;
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

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

.footer-nav strong,
.footer-contact strong {
  display: block;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'Montserrat', sans-serif;
}

.footer-nav a {
  display: block;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
  color: white;
  transform: translateX(4px);
}

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

.footer-contact p {
  position: relative;
  margin: 0 0 16px;
  padding-left: 26px;
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-contact p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center / contain;
}

.footer-contact a {
  position: relative;
  display: block;
  margin-bottom: 8px;
  padding-left: 26px;
  font-size: 0.86rem;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-contact a:hover {
  opacity: 1;
  color: white;
}

.footer-contact a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.footer-contact a[href^="mailto:"]::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E") no-repeat center / contain;
}

.footer-contact a[href^="https://wa.me"]::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-badges span {
  flex: 1;
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #1a130d;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.footer-bottom {
  padding: 22px max(28px, calc((100vw - 1280px) / 2));
  background: #1a130d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.76rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.footer-bottom p {
  margin: 0;
  white-space: nowrap;
  font-size: clamp(0.65rem, 2.2vw, 0.78rem);
  letter-spacing: 0.02em;
}

.footer-bottom a {
  display: inline !important;
  margin: 0 !important;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

/* --- Founders Section --- */
.founders {
  background: var(--ivory);
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.founder-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, var(--deep), var(--teal));
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 0.6s ease;
}

.founder-card:hover .founder-photo img {
  transform: scale(1.04);
}

.founder-photo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--copper-soft);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 4rem;
  letter-spacing: 0.05em;
}

.founder-photo.is-fallback .founder-photo-fallback {
  display: grid;
}

.founder-meta {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.founder-card .founder-title {
  display: block;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.founder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.founder-contact {
  display: inline-flex;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

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

/* --- Timeline Section --- */
.timeline-section {
  padding: 0 max(28px, calc((100vw - 1320px) / 2));
}

.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--copper), var(--copper-soft));
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -40px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--copper);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--copper);
}

.timeline-content {
  background: white;
  border: 1px solid var(--line);
  padding: 24px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateX(8px);
  border-color: var(--copper);
  box-shadow: none;
}

.timeline-year {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--copper);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.timeline-content h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* --- Office Section --- */
.office-section {
  padding: 0 max(28px, calc((100vw - 1320px) / 2));
}

.office-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 48px;
  align-items: stretch;
}

.office-photo {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 100%;
}

.office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.office-photo:hover img {
  transform: scale(1.03);
}

.office-info h2 {
  margin-bottom: 24px;
}

.office-info p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

.office-details {
  display: grid;
  gap: 20px;
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.office-detail:hover {
  border-color: var(--copper);
  transform: translateX(4px);
}

.office-detail svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--copper);
  margin-top: 2px;
}

.office-detail > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.office-detail strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
}

.office-detail span {
  color: var(--ink);
  font-size: 0.92rem;
}

.about-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 7vw, 90px);
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
}

.about-strip-item {
  background: white;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s ease;
}

.about-strip-item:hover {
  background: var(--warm);
}

.about-strip-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--copper);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-strip-item span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

/* --- Credentials Section --- */
.credential-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.credential-grid .credential-card {
  grid-column: span 4;
}

.credential-grid .credential-card:nth-child(n+7) {
  grid-column: span 3;
}

.credential-card {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.credential-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 137, 85, 0.3);
  box-shadow: none;
}

.credential-card h3 {
  font-size: 1.1rem;
  margin: 0 0 12px;
}

.credential-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--copper);
  margin-top: 2px;
}

.contact-info-item > div {
  flex: 1;
}

.contact-info-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-info-item a:hover {
  color: var(--copper);
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-size: 0.85rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-social-links a:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.contact-social-links a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  color: currentColor;
}

.contact-page-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  box-shadow: none;
}

.contact-page-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  outline: none;
  border-color: var(--copper);
}

.contact-page-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-page-form .btn {
  color: white;
  border-color: var(--copper);
  background: var(--copper);
}

/* --- Map Container --- */
.map-container {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.map-container iframe {
  display: block;
}

/* --- FAQ Section --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.faq-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.faq-item h3 {
  font-size: 1rem;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.4;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* --- Project Detail Page --- */
.project-overview {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.project-overview h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.project-overview p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin: 20px 0 0;
}

.project-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: var(--line);
}

.project-fact {
  padding: 24px;
  background: white;
}

.project-fact strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper);
  margin-bottom: 6px;
}

.project-fact span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 400;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 137, 85, 0.25);
}

.highlight-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--copper);
}

.highlight-item span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
}

.project-gallery {
  border-radius: 0;
  overflow: hidden;
  margin-top: 20px;
}

.project-gallery img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  border-radius: 0;
}

/* --- Contact CTA for inner pages (light bg variant) --- */
.cta-section {
  padding: clamp(80px, 12vw, 140px) max(28px, calc((100vw - 1280px) / 2));
  color: white;
  background:
    linear-gradient(135deg, rgba(26, 19, 18, 0.94), rgba(163, 70, 0, 0.82)),
    url('assets/images/hero-desktop-1.webp') center / cover;
}

/* --- Responsive: Multi-page additions --- */
@media (max-width: 900px) {
  .page-hero {
    min-height: 44vh;
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 280px;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 28px;
  }

  .timeline::before {
    left: 13px;
  }

  .timeline-marker {
    left: -28px;
    width: 12px;
    height: 12px;
  }

  .office-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .credential-grid {
    grid-template-columns: 1fr 1fr;
  }

  .credential-grid .credential-card,
  .credential-grid .credential-card:nth-child(n+7) {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .project-overview {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    flex-direction: column;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.video-card {
  background: white;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  background: var(--surface);
}

.sticky-nav {
  position: sticky;
  top: 72px; /* Height of the main header */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 90;
  padding: 16px max(28px, calc((100vw - 1280px) / 2));
  display: flex;
  gap: 24px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sticky-nav::-webkit-scrollbar {
  display: none;
}

.sticky-nav a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
  position: relative;
}

.sticky-nav a:hover,
.sticky-nav a.is-active {
  color: var(--ink);
}

.sticky-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.sticky-nav a:hover::after,
.sticky-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 620px) {
  .page-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

  .credential-grid .credential-card,
  .credential-grid .credential-card:nth-child(n+7) {
    grid-column: span 1;
  }

  .project-facts {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   SKIP-TO-CONTENT (Accessibility)
   ══════════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  padding: 12px 24px;
  background: var(--copper);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ══════════════════════════════════════════════════════════════
   BACK-TO-TOP BUTTON
   ══════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease,
              background 0.3s ease, border-color 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .back-to-top {
    cursor: pointer;
    right: 16px;
    bottom: 84px;
    width: 42px;
    height: 42px;
  }
}

/* ══════════════════════════════════════════════════════════════
   ACTIVE NAV LINK
   ══════════════════════════════════════════════════════════════ */
.nav-links a.is-current {
  opacity: 1;
}

.nav-links a.is-current::after {
  transform: scaleX(1);
}

/* ══════════════════════════════════════════════════════════════
   IMPROVED MOBILE MENU (Full-screen overlay)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links.is-open {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 110px max(28px, calc((100vw - 1280px) / 2)) 48px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: none;
    z-index: 120;
    animation: menuFadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }

  .nav-links.is-open a {
    width: 100%;
    color: var(--ink);
    font-size: 1.15rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(12px);
    animation: menuItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .nav-links.is-open a:hover {
    color: var(--copper);
  }

  .nav-links.is-open a:nth-child(1) { animation-delay: 0.05s; }
  .nav-links.is-open a:nth-child(2) { animation-delay: 0.1s; }
  .nav-links.is-open a:nth-child(3) { animation-delay: 0.15s; }
  .nav-links.is-open a:nth-child(4) { animation-delay: 0.2s; }
  .nav-links.is-open a:nth-child(5) { animation-delay: 0.25s; }
  .nav-links.is-open a:nth-child(6) { animation-delay: 0.3s; }

  .menu-toggle.is-active {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 130;
    color: var(--ink);
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 620px) {
  .nav-links.is-open {
    padding: 100px 20px 40px;
  }

  .nav-links.is-open a {
    font-size: 1.05rem;
    padding: 14px 0;
  }

  .menu-toggle.is-active {
    top: 16px;
    right: 16px;
  }
}

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

@keyframes menuItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════════════════
   MENU TOGGLE — 3rd span fix (add via CSS if missing)
   ══════════════════════════════════════════════════════════════ */
.menu-toggle span:nth-child(3) {
  display: block;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP — Improved with SVG
   ══════════════════════════════════════════════════════════════ */
.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  color: white;
  background: var(--copper);
  box-shadow: 0 4px 20px rgba(163, 70, 0, 0.35);
  font-size: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 900px) {
  .float-whatsapp {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   PAGE TRANSITION OVERLAY
   ══════════════════════════════════════════════════════════════ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--deep);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

.page-transition.is-entering {
  animation: pageTransitionIn 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-transition.is-leaving {
  animation: pageTransitionOut 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes pageTransitionIn {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes pageTransitionOut {
  from {
    transform: scaleY(1);
    transform-origin: top;
  }
  to {
    transform: scaleY(0);
    transform-origin: top;
  }
}

/* ══════════════════════════════════════════════════════════════
   VIDEO REVIEWS SECTION
   ══════════════════════════════════════════════════════════════ */
.video-reviews {
  background: var(--paper);
  color: var(--ink);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: white;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 137, 85, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: var(--copper-light);
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card-thumb:hover img {
  transform: scale(1.05);
}

.video-card-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  inset: 0;
}

.video-card-thumb .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  pointer-events: none;
}

.video-card-thumb:hover .play-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.video-card-thumb .play-overlay svg {
  width: 56px;
  height: 56px;
  color: white;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.video-card-thumb:hover .play-overlay svg {
  transform: scale(1.1);
}

.video-card-info {
  padding: 20px;
}

.video-card-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.video-card-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   PHOTO GALLERY
   ══════════════════════════════════════════════════════════════ */
.gallery-section {
  background: var(--paper);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  justify-content: center;
}

.gallery-filter {
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  border-color: var(--copper);
  background: var(--copper);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  background: var(--warm);
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(5n+1) {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-item:nth-child(7n+3) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(11n+5) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 19, 18, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item-zoom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-item-zoom {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-item:nth-child(5n+1),
  .gallery-item:nth-child(7n+3),
  .gallery-item:nth-child(11n+5) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .gallery-item,
  .gallery-item:nth-child(5n+1),
  .gallery-item:nth-child(7n+3),
  .gallery-item:nth-child(11n+5) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ══════════════════════════════════════════════════════════════
   MASONRY GALLERY — natural aspect ratio, no cropping
   ══════════════════════════════════════════════════════════════ */
.masonry-gallery {
  column-count: 3;
  column-gap: 16px;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--warm);
  break-inside: avoid;
  margin-bottom: 16px;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-item .gallery-item-zoom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.masonry-item:hover .gallery-item-zoom {
  opacity: 1;
  transform: translateY(0);
}

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 19, 18, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.masonry-item:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .masonry-gallery {
    column-count: 2;
    column-gap: 12px;
  }
  .masonry-item {
    margin-bottom: 12px;
  }
}

@media (max-width: 620px) {
  .masonry-gallery {
    column-count: 1;
    column-gap: 0;
  }
  .masonry-item {
    margin-bottom: 10px;
  }
}

/* ══════════════════════════════════════════════════════════════
   PROJECT PAGE GALLERIES — uniform grid override
   ══════════════════════════════════════════════════════════════ */
#project-page .gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

#project-page .gallery-item {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 4 / 3;
}

#project-page .gallery-item:nth-child(n) {
  grid-column: span 1;
  grid-row: span 1;
}

@media (max-width: 900px) {
  #project-page .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }
}

@media (max-width: 620px) {
  #project-page .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
  }
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS PAGE GALLERIES — uniform grid override
   ══════════════════════════════════════════════════════════════ */
#reviews-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
  margin-top: 40px;
}

#reviews-page .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--warm);
  aspect-ratio: 4 / 3;
  grid-column: span 1;
  grid-row: span 1;
}

#reviews-page .gallery-item:nth-child(n) {
  grid-column: span 1;
  grid-row: span 1;
}

#reviews-page .gallery-filters {
  display: none;
}

@media (max-width: 900px) {
  #reviews-page .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

@media (max-width: 620px) {
  #reviews-page .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  place-items: center;
  padding: 40px;
  cursor: pointer;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ══════════════════════════════════════════════════════════════
   VIDEO LIGHTBOX
   ══════════════════════════════════════════════════════════════ */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  place-items: center;
  padding: 40px;
}

.video-lightbox.is-open {
  display: grid;
}

.video-lightbox iframe {
  width: min(90vw, 1200px);
  aspect-ratio: 16 / 9;
  border: none;
}

.video-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 1;
}

.video-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ══════════════════════════════════════════════════════════════
   HOME LOAN BANKS
   ══════════════════════════════════════════════════════════════ */
.banks-section {
  background: var(--sage);
}

.bank-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  margin-top: 40px;
}

.bank-logos img {
  height: 48px;
  width: auto;
  filter: opacity(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.bank-logos img:hover {
  filter: opacity(1);
  transform: scale(1.05);
}

/* ══════════════════════════════════════════════════════════════
   ACHIEVEMENTS SECTION
   ══════════════════════════════════════════════════════════════ */
.achievements-list {
  max-width: 800px;
  margin-top: 32px;
}

.achievements-list li {
  position: relative;
  padding: 16px 0 16px 32px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.achievements-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--copper);
}

/* ══════════════════════════════════════════════════════════════
   EXTENDED MANAGEMENT TEAM
   ══════════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.team-member {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 137, 85, 0.3);
}

.team-member h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--ink);
  margin: 0 0 4px;
}

.team-member span {
  display: block;
  color: var(--copper);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════════
   COMPLETED PROJECTS
   ══════════════════════════════════════════════════════════════ */
.completed-badge {
  background: rgba(100, 100, 100, 0.85);
}

.project-grid-img .badge.completed {
  background: rgba(100, 100, 100, 0.85);
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE STATS BAR — unified with about-strip
   ══════════════════════════════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 7vw, 90px);
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
}

.stats-bar-item {
  background: white;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: background 0.3s ease;
}

.stats-bar-item:hover {
  background: var(--copper-light);
}

.stats-bar-item svg {
  width: 24px;
  height: 24px;
  color: var(--copper-soft);
  margin-bottom: 4px;
}

.stats-bar-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--copper);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats-bar-item span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   PROJECT DETAIL — AMENITIES & LOCATION
   ══════════════════════════════════════════════════════════════ */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.amenity-item:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 137, 85, 0.25);
}

.amenity-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--copper);
}

.amenity-item span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
}

.location-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--copper);
  margin-top: 2px;
}

.location-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
}

.location-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.rera-box {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--sage);
}

.rera-box strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper);
  margin-bottom: 6px;
}

.rera-box span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.rera-box-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rera-box-text {
  flex: 1;
}

.rera-box-qr {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border: 1px solid var(--line);
  background: white;
  display: grid;
  place-items: center;
}

.rera-box-qr img {
  width: 88px;
  height: 88px;
  display: block;
}

@media (max-width: 620px) {
  .rera-box-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ══════════════════════════════════════════════════════════════
   PHOTO GALLERY ON HOMEPAGE (compact)
   ══════════════════════════════════════════════════════════════ */
.home-gallery {
  background: var(--sage);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.home-gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--warm);
  aspect-ratio: 4/3;
  grid-column: span 1;
  grid-row: span 1;
}

.home-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
}

.home-gallery-grid .gallery-item .gallery-item-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.home-gallery-grid .gallery-item:hover .gallery-item-zoom {
  opacity: 1;
}

.home-gallery-grid .gallery-item .gallery-item-zoom svg {
  width: 32px;
  height: 32px;
  color: white;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

@media (max-width: 900px) {
  .home-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

@media (max-width: 620px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

/* ══════════════════════════════════════════════════════════════
   AAVE-INSPIRED GLASS EFFECT
   Cross-browser frosted glass with refraction, chromatic
   aberration, and specular highlights
   ══════════════════════════════════════════════════════════════ */

/* SVG filter definitions — embedded once, referenced by URL */
.glass-svg-container {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Base glass — reusable utility */
.glass {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.glass--dark {
  background: rgba(10, 10, 10, 0.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  border-color: rgba(255, 255, 255, 0.08);
}

.glass--light {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  backdrop-filter: blur(16px) saturate(1.8);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Specular highlight — top-left bright streak */
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.08) 30%,
    transparent 50%,
    rgba(255, 255, 255, 0.04) 80%,
    rgba(255, 255, 255, 0.18) 100%
  );
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* Subtle noise texture for glass surface feel */
.glass::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* Refracted content layer — applies displacement map to children */
.glass-refract {
  filter: url(#glass-displacement);
  -webkit-filter: url(#glass-displacement);
}

/* Chromatic aberration — slight RGB shift for realism */
.glass-chroma {
  filter: url(#glass-chromatic);
  -webkit-filter: url(#glass-chromatic);
}

/* ══════════════════════════════════════════════════════════════
   GLASS HEADER — enhanced frosted header
   ══════════════════════════════════════════════════════════════ */
.site-header {
  -webkit-backdrop-filter: blur(0px) saturate(1);
  backdrop-filter: blur(0px) saturate(1);
  transition: -webkit-backdrop-filter 0.5s ease, backdrop-filter 0.5s ease,
              background 0.5s ease, border-color 0.5s ease;
}

/* Logo Badge Design */




.site-header .brand img,
.footer-logo img {
  display: block;
}

/* Ensure footer logo doesn't have the white badge if not needed, or add if necessary */
.footer-logo {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  backdrop-filter: blur(28px) saturate(1.6);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8) inset, 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* ══════════════════════════════════════════════════════════════
   GLASS BUTTONS — frosted glass CTA buttons
   ══════════════════════════════════════════════════════════════ */
.btn.glass,
.header-cta,
.contact-links a {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  isolation: isolate;
}

.btn.glass::after,
.header-cta::after,
.contact-links a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 55%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}

.btn.glass:hover::after,
.header-cta:hover::after,
.contact-links a:hover::after {
  transform: translateX(100%);
}

.btn.glass:hover,
.header-cta:hover,
.contact-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn.primary {
  position: relative;
  background: linear-gradient(135deg, #c19b6c 0%, #a87d4e 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(193, 155, 108, 0.25),
              0 1px 0 rgba(255, 255, 255, 0.2) inset;
  overflow: hidden;
}

.btn.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.1) 100%
  );
  pointer-events: none;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #d4a76a 0%, #b88a5a 100%);
  box-shadow: 0 6px 24px rgba(193, 155, 108, 0.35),
              0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════
   GLASS CARDS — frosted project cards, review cards, etc.
   ══════════════════════════════════════════════════════════════ */
.project-card,
.review-card,
.project-grid-card,
.founder-card,
.credential-card,
.faq-item,
.amenity-item,
.location-item,
.stats div,
.team-member,
.video-card {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.review-card:hover,
.project-grid-card:hover,
.founder-card:hover,
.credential-card:hover,
.faq-item:hover,
.amenity-item:hover,
.team-member:hover,
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

/* ══════════════════════════════════════════════════════════════
   GLASS HERO PANEL — the floating info card on the hero
   ══════════════════════════════════════════════════════════════ */
.hero-panel {
  background: rgba(26, 19, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.hero-panel::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  animation: heroPanelSheen 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroPanelSheen {
  0%, 100% { transform: translateX(-30%) translateY(-30%); }
  50% { transform: translateX(30%) translateY(30%); }
}

/* ══════════════════════════════════════════════════════════════
   GLASS CONTACT FORM
   ══════════════════════════════════════════════════════════════ */
.contact-form {
  background: rgba(26, 19, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}

.contact-form input,
.contact-form select {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
  background: rgba(0, 0, 0, 0.3);
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(193, 155, 108, 0.15);
}

/* ══════════════════════════════════════════════════════════════
   GLASS FLOATING BUTTONS
   ══════════════════════════════════════════════════════════════ */
.back-to-top,
.float-whatsapp {
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.back-to-top {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.back-to-top:hover {
  background: rgba(193, 155, 108, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 28px rgba(193, 155, 108, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.float-whatsapp {
  background: rgba(37, 211, 102, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-whatsapp:hover {
  background: rgba(37, 211, 102, 0.95);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* ══════════════════════════════════════════════════════════════
   GLASS MEGA MENU
   ══════════════════════════════════════════════════════════════ */
.mega-menu {
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.mega-copy {
  background: linear-gradient(160deg, rgba(193, 155, 108, 0.9), rgba(26, 26, 26, 0.8));
  position: relative;
  overflow: hidden;
}

.mega-copy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 40%
  );
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   GLASS HEADER CTA — header inquiry button
   ══════════════════════════════════════════════════════════════ */
.header-cta {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cta:hover {
  background: rgba(193, 155, 108, 0.15);
  border-color: rgba(193, 155, 108, 0.4);
}

/* ══════════════════════════════════════════════════════════════
   GLASS BRAND TEXT — subtle glass on text elements
   ══════════════════════════════════════════════════════════════ */
.brand span,
.nav-links a {
  text-shadow: none;
}

/* ══════════════════════════════════════════════════════════════
   GLASS FORM ON CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.contact-page-form {
  background: var(--copper-light);
  border: 1px solid var(--line);
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  background: var(--sage);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(193, 155, 108, 0.1);
}

/* ══════════════════════════════════════════════════════════════
   GLASS FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer-top {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════════
   GLASS BORDER ACCENT — animated gradient border on focus
   ══════════════════════════════════════════════════════════════ */
@keyframes glassBorderShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn.primary {
  background-size: 200% 200%;
}

/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION — respect user preferences
   ══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-panel::after,
  .btn.primary {
    animation: none !important;
  }

  .btn.glass::after,
  .header-cta::after,
  .contact-links a::after {
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BRAND ELEMENTS — reusable badges, dividers, ornaments
   ════════════════════════════════════════════════════════════════ */

/* Brand badge */
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--copper);
  background: transparent;
  color: var(--copper);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand-badge.filled {
  background: var(--copper);
  color: white;
}

.brand-badge svg {
  width: 14px;
  height: 14px;
}

/* Section divider */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-soft));
  margin: 0 auto;
}

.section-divider.left {
  margin: 0;
}

/* Copper line ornament */
.ornament-line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ornament-line::before,
.ornament-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.ornament-line.centered {
  justify-content: center;
}

.ornament-line svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--copper);
}

/* Quote mark */
.quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(4rem, 8vw, 8rem);
  color: var(--copper);
  opacity: 0.15;
  line-height: 1;
}

/* Status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-badge.complete {
  background: rgba(163, 70, 0, 0.1);
  color: var(--copper);
  border: 1px solid rgba(163, 70, 0, 0.3);
}

.status-badge.ongoing {
  background: rgba(193, 155, 108, 0.1);
  color: var(--copper);
  border: 1px solid rgba(193, 155, 108, 0.3);
}

.status-badge.upcoming {
  background: rgba(120, 90, 60, 0.1);
  color: var(--copper-dark);
  border: 1px solid rgba(120, 90, 60, 0.3);
}

.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Decorative corner */
.corner-accent {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--copper);
}

.corner-accent.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.corner-accent.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.corner-accent.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.corner-accent.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* Numbered step */
.step-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--copper);
  opacity: 0.2;
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-number.active {
  opacity: 1;
  font-weight: 400;
  color: var(--ink);
}


/* ═══════════════════════════════════════════════════════════════
   PREMIUM POLISH, UX & CONTRAST FIXES
   ═══════════════════════════════════════════════════════════════ */

/* ── Softer, modern radius ─────────────────────────────────── */
.btn,
.header-cta,
.icon-btn,
.project-card,
.project-grid-card,
.review-card,
.credential-card,
.amenity-item,
.location-item,
.highlight-item,
.timeline-content,
.office-detail,
.faq-item,
.contact-form,
.contact-page-form,
.map-container,
.video-card,
.gallery-item,
.masonry-item,
.hero-panel,
.back-to-top,
.mobile-cta,
.inquiry-form-wrapper,
.site-address-card {
  border-radius: 12px;
}

.project-card > div:last-child,
.project-grid-info,
.mega-card,
.mega-copy {
  border-radius: 0 0 12px 12px;
}

/* ── Consistent soft shadows ───────────────────────────────── */
.project-card,
.project-grid-card,
.review-card,
.credential-card,
.video-card,
.timeline-content,
.faq-item,
.contact-page-form,
.inquiry-form-wrapper,
.site-address-card,
.hero-panel {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.project-card:hover,
.project-grid-card:hover,
.review-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* ── Button refinements ────────────────────────────────────── */
.btn,
.header-cta {
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(163, 70, 0, 0.15);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(163, 70, 0, 0.22);
}

.btn.primary {
  background: var(--copper);
  border-color: var(--copper);
}

.btn.glass {
  color: var(--copper);
  border-color: var(--copper);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.btn.glass:hover {
  background: var(--copper);
  color: white;
  border-color: var(--copper);
}

/* ── Header refinements (frosted glass) ────────────────────── */
.site-header,
.site-header.is-scrolled {
  background: rgb(255 255 255 / 70%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  color: var(--ink);
}

.site-header .nav-links a {
  color: var(--ink);
  opacity: 0.9;
  font-weight: 500;
}

.site-header .nav-links a:hover {
  opacity: 1;
  color: var(--copper);
}

.site-header .nav-links a::after {
  background: var(--copper);
}

.site-header .header-cta {
  color: var(--copper);
  border-color: var(--copper);
  background: rgba(255, 255, 255, 0.5);
}

.site-header .header-cta:hover {
  background: var(--copper);
  color: white;
  border-color: var(--copper);
}

.site-header.is-scrolled .header-cta {
  color: var(--copper);
  border-color: var(--copper);
  background: rgba(255, 255, 255, 0.7);
}

.site-header.is-scrolled .header-cta:hover {
  background: var(--copper);
  color: white;
  border-color: var(--copper);
}

.site-header .menu-toggle {
  color: var(--ink);
}

.site-header.is-scrolled .menu-toggle {
  color: var(--ink);
}

/* ── Form refinements ──────────────────────────────────────── */
.contact-form,
.contact-page-form {
  background: rgba(255, 255, 255, 0.1);
}

.contact-form input,
.contact-form select,
.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  border-radius: 8px;
}

/* ── Hero button overrides for dark background ─────────────── */
.hero-actions .btn.glass {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions .btn.glass:hover {
  background: white;
  color: var(--ink);
  border-color: white;
}

/* ── Mobile CTA bar ────────────────────────────────────────── */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1px;
  background: white;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: white;
  transition: background 0.2s ease;
}

.mobile-cta a:hover {
  background: var(--ivory);
}

.mobile-cta a.primary {
  background: var(--copper);
  color: white;
}

.mobile-cta a.primary:hover {
  background: #8a3c00;
}

.mobile-cta a svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 620px) {
  .mobile-cta {
    display: grid;
  }

  .float-whatsapp {
    display: grid;
    bottom: 62px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .float-whatsapp svg {
    width: 22px;
    height: 22px;
  }

  .back-to-top {
    bottom: 120px;
  }

  body {
    padding-bottom: 50px;
  }
}

/* ── Contrast fixes ────────────────────────────────────────── */
.eyebrow,
.section-kicker {
  color: #7a3500;
}

.eyebrow.dark,
.section-kicker {
  color: #8a3c00;
}

.nav-links a {
  opacity: 1;
  color: var(--ink);
}

.project-card span,
.project-grid-info .eyebrow,
.project-grid-info span {
  color: var(--copper-soft);
}

.badge {
  background: var(--copper);
  color: white;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.65);
}

.footer a,
.footer p,
.footer-contact a,
.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
}

.footer a:hover,
.footer-nav a:hover {
  color: white;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form label {
  color: rgba(255, 255, 255, 0.8);
}

.hero-panel span,
.hero-panel small {
  color: rgba(255, 255, 255, 0.75);
}

.slide-rail button {
  color: rgba(255, 255, 255, 0.6);
}

.slide-rail button.is-active {
  color: white;
}

.stats span,
.stats-bar-item span,
.about-strip-item span {
  color: var(--muted);
}

.intro-text,
.intro-text p,
.project-overview p,
.promise-copy p:not(.eyebrow),
.office-info p {
  color: var(--muted);
}

.review-card p {
  color: var(--muted);
}

.faq-item p {
  color: var(--muted);
}

/* ── Project filter tabs ───────────────────────────────────── */
.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.project-filters .btn {
  min-height: 44px;
  padding: 0 24px;
  font-size: 0.72rem;
}

.project-filters .btn.is-active {
  background: var(--copper);
  color: white;
  border-color: var(--copper);
}

.project-grid-card.is-hidden {
  display: none;
}

/* ── Lightbox caption ──────────────────────────────────────── */
.lightbox {
  cursor: default;
}

.lightbox img {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: 8px;
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-align: center;
  max-width: 80vw;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

@media (max-width: 620px) {
  .lightbox img {
    max-width: 96vw;
    max-height: 70vh;
  }

  .lightbox-nav {
    display: none;
  }
}

/* ── Sticky nav mobile fix ─────────────────────────────────── */
@media (max-width: 900px) {
  .sticky-nav {
    top: 64px;
    padding: 12px 16px;
    gap: 16px;
  }

  .sticky-nav a {
    font-size: 0.78rem;
  }
}

/* ── Focus & accessibility ─────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

::selection {
  background: rgba(163, 70, 0, 0.2);
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM REDESIGN OVERRIDES — cohesive brown-gold theme
   ═══════════════════════════════════════════════════════════════ */

/* ── Section rhythm & separators ───────────────────────────── */
.page-section {
  border-top: 1px solid var(--line);
}

.page-section:first-of-type,
.page-hero + .page-section {
  border-top: 0;
}

/* Alternate backgrounds for clear section separation */
.section-alt {
  background: var(--ivory);
}

.section-muted {
  background: var(--sage);
}

.section-deep {
  background: var(--deep);
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-deep .section-kicker,
.section-deep h2,
.section-deep h3 {
  color: var(--copper-soft);
}

.section-deep .section-kicker::after {
  background: linear-gradient(90deg, var(--copper-soft), transparent);
}

.section-deep p {
  color: rgba(255, 255, 255, 0.78);
}

/* ── Section kicker single line ────────────────────────────── */
.section-kicker {
  color: var(--copper);
  margin-bottom: 8px;
}

.section-kicker::after {
  width: 40px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--copper), var(--copper-soft));
}

/* ── Credential cards with icons ───────────────────────────── */
.credential-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 8px;
  text-align: left;
  background: var(--copper-light);
}

.credential-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-soft), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.credential-card:hover::before {
  opacity: 1;
}

.credential-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--copper-light);
  color: var(--copper);
  margin-bottom: 20px;
}

.credential-icon svg {
  width: 24px;
  height: 24px;
}

.credential-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.credential-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Business verticals (image + gradient cards) ───────────── */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.vertical-card {
  position: relative;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: white;
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vertical-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: -2;
}

.vertical-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 19, 13, 0.2) 0%,
    rgba(26, 19, 13, 0.55) 55%,
    rgba(26, 19, 13, 0.82) 100%
  );
  z-index: -1;
}

.vertical-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 19, 13, 0.18);
}

.vertical-card:hover::before {
  transform: scale(1.05);
}

.vertical-card .vertical-number {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--copper-soft);
  opacity: 0.9;
}

.vertical-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: white;
}

.vertical-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1100px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .vertical-card {
    min-height: 340px;
  }
}

/* ── Mission / Vision cards ────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--copper-light);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px 36px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
  border-color: rgba(193, 155, 108, 0.35);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--copper-light);
  color: var(--copper);
  margin-bottom: 22px;
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--ink);
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Promise / Our Aim section ─────────────────────────────── */
.promise {
  background: var(--ivory);
}

.promise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) 24px;
}

.promise-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: auto;
  aspect-ratio: 4/3;
}

.promise-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: auto;
}

.promise-copy {
  max-width: 540px;
}

.promise-copy h2 {
  margin: 16px 0 24px;
}

.promise-copy > p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.promise-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.promise-stats > div {
  text-align: center;
  padding: 20px 12px;
  background: var(--copper-light);
  border-radius: 8px;
}

.promise-stats strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 6px;
}

.promise-stats span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

@media (max-width: 900px) {
  .promise {
    grid-template-columns: 1fr;
  }

  .promise-copy {
    max-width: 100%;
  }

  .promise-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .promise-stats {
    grid-template-columns: 1fr;
  }
}

/* ── Ongoing Projects section light theme ──────────────────── */
.projects {
  background: var(--paper);
  color: var(--ink);
  border-top: 0;
}

.projects .section-heading h2 {
  color: var(--ink);
}

.projects .project-card {
  background: var(--copper-light);
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  color: var(--ink);
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.projects .project-card > a,
.projects .project-card > .premium-placeholder {
  display: block;
  height: 380px;
  flex-shrink: 0;
  width: 100%;
}

.projects .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projects .project-card > div:last-child {
  padding: 22px 22px 34px;
  background: var(--copper-light);
  border-radius: 0 0 12px 12px;
  flex-grow: 1;
}

.projects .project-card span {
  color: var(--copper);
}

.projects .project-card h3,
.projects .project-card h3 a {
  color: var(--ink);
}

.projects .project-card h3 a:hover {
  color: var(--copper);
}

.projects .project-card p {
  color: var(--muted);
}

.projects .project-card .btn {
  background: var(--copper);
  border-color: var(--copper);
  color: white;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.projects .project-card .btn:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: white;
  box-shadow: none;
}

.projects .project-track {
  padding: 0 12px 20px;
}

.projects .project-card:hover img {
  transform: scale(1.03);
}

/* ── Reviews / feedback section alignment ──────────────────── */
.reviews .section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.reviews .section-heading h2 {
  flex: 1 1 auto;
  margin: 0;
}

.reviews .section-heading .eyebrow {
  width: 100%;
  margin-bottom: 10px;
}

.reviews .section-heading .btn {
  flex: 0 0 auto;
}

.review-grid {
  margin-top: 48px;
}

/* ── Contact section redesign ──────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) 24px;
  color: var(--ink);
  background: var(--paper);
}

.contact-copy h2 {
  margin: 14px 0 22px;
  color: var(--ink);
}

.contact-copy > p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-links a:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.contact-links a svg {
  width: 18px;
  height: 18px;
  color: var(--copper);
}

.contact-form {
  background: var(--copper-light);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(32px, 4vw, 48px);
}

.contact-form label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--copper);
  outline: none;
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

/* ── Font consistency ──────────────────────────────────────── */
body,
input,
select,
textarea,
button {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.section-kicker,
.eyebrow,
.brand,
.stats-bar-item strong,
.about-strip-item strong,
.promise-stats strong {
  font-family: 'Montserrat', sans-serif;
}

/* Remove stray inline color overrides */
[style*="color:var(--copper)"],
[style*="color: var(--copper)"] {
  color: var(--copper) !important;
}

/* ── Mobile refinements for redesign ───────────────────────── */
@media (max-width: 900px) {
  .reviews .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews .section-heading .btn {
    margin-top: 8px;
  }

  .credential-card {
    padding: 28px 22px;
  }

  .value-card {
    padding: 32px 24px;
  }
}

@media (max-width: 620px) {
  .credential-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .credential-icon svg {
    width: 20px;
    height: 20px;
  }

  .promise-stats {
    grid-template-columns: 1fr;
  }

  .contact-links a {
    width: 100%;
    justify-content: center;
  }
}

/* ── Button theme consistency ──────────────────────────────── */
.btn.primary {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 16px rgba(163, 70, 0, 0.25);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #b55100 0%, var(--copper) 100%);
  box-shadow: 0 6px 24px rgba(163, 70, 0, 0.32);
  color: white;
}

.btn.glass {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--copper);
  color: var(--copper);
}

.btn.glass:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: white;
}

/* Override green/blue off-theme colors */
[style*="color: #16a34a"],
.text-success {
  color: var(--copper) !important;
}

[style*="color: #3b82f6"],
.text-info {
  color: var(--copper-soft) !important;
}

[style*="color: #555555"],
[style*="color: #4a4a4a"] {
  color: var(--muted) !important;
}

.float-whatsapp {
  background: var(--copper);
  color: white;
}

.float-whatsapp:hover {
  background: var(--copper-dark);
}

/* ── Project grid cards (projects.html) light theme ────────── */
.project-grid-card {
  background: var(--copper-light);
  border: 0;
  border-radius: 12px;
  color: var(--ink);
}

.project-grid-info {
  padding: 22px;
  background: var(--copper-light);
}

.project-grid-info h3 {
  color: var(--ink);
}

.project-grid-info p {
  color: var(--muted);
}

.project-grid-info .eyebrow,
.project-grid-info span {
  color: var(--copper);
}

/* ── Desktop hero full viewport height ─────────────────────── */
@media (min-width: 901px) {
  .hero {
    height: 100svh;
    min-height: auto;
  }
}



/* Mobile Our Aim fix — ensure single column */
@media (max-width: 900px) {
  .promise-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 56px 20px !important;
  }

  .promise-media {
    width: 100%;
    aspect-ratio: 16 / 10 !important;
    min-height: 220px !important;
    border-radius: 8px !important;
  }

  .promise-media img {
    min-height: 220px !important;
  }

  .promise-copy {
    max-width: 100% !important;
    text-align: center;
  }

  .promise-copy h2,
  .promise-copy > p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .promise-stats {
    justify-content: center;
  }
}

/* Premium Placeholder */
.premium-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--ivory) 0%, var(--copper-light) 100%);
  position: relative;
  overflow: hidden;
}

.premium-placeholder::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(163, 70, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.premium-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
}

.premium-placeholder-inner img {
  width: 80px !important;
  height: auto !important;
  margin-bottom: 16px;
  filter: drop-shadow(0 6px 12px rgba(163, 70, 0, 0.12));
  opacity: 0.9;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .premium-placeholder-inner img,
.project-grid-card:hover .premium-placeholder-inner img {
  transform: scale(1.1);
}

.premium-placeholder-inner span {
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--copper), var(--copper-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Light CTA Section --- */
.cta-light {
  background: var(--copper-light);
  text-align: center;
  padding: clamp(80px, 12vw, 140px) max(28px, calc((100vw - 1280px) / 2));
}

.cta-light .contact-copy {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-light h2 {
  color: var(--ink);
  margin-top: 16px;
  margin-bottom: 24px;
}

.cta-light p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.cta-light .contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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