/* ================================
   GRANDEUR STRUCTURES — DESIGN TOKENS
   ================================= */
:root {
  --charcoal: #1C1C1C;
  --ivory: #F8F6F2;
 --gold: #C77B4E;
--gold-light: #E3A87A;
  --white: #FFFFFF;
  --rich-black: #111111;
  --stone: #ECE9E3;
  --text-dark: #252525;
  --text-muted: #494643;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-btn: 'Montserrat', sans-serif;

  --container: 1240px;
  --radius: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-soft: 0 20px 60px rgba(28, 28, 28, 0.08);
  --shadow-gold: 0 10px 30px rgba(199, 123, 78, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  animation: pageFadeIn 0.5s ease;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--gold); color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.2px;
}

.eyebrow {
  font-family: var(--font-btn);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

section { position: relative; }

/* ==================================================================
   REVEAL / SCROLL ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* stagger helper applied via inline delay in JS */

/* ====================================================================
   BUTTONS
   ========================================================================== */
.btn {
  font-family: var(--font-btn);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: var(--radius);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.btn-sm { padding: 12px 24px; font-size: 0.7rem; }
.btn-lg { padding: 18px 42px; }

.btn-ripple { position: relative; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(3); opacity: 0; }
}

/* ==========================================================================
   CURSOR GLOW
   ========================================================================== */
.cursor-glow {
  position: fixed;
  width: px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,161,106,0.12) 0%, rgba(199,161,106,0) 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
@media (min-width: 1024px) {
  .cursor-glow.active { opacity: 1; }
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  width: 140px;
  animation: preloaderPulse 1.6s ease-in-out infinite;
  border-radius: 9px;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.7; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}
.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(28,28,28,0.12);
  overflow: hidden;
  border-radius: 2px;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: loadBar 1.6s var(--ease) forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* Preloader text logo (used on testimonial page) */
.preloader-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--charcoal);
}

/* Testimonials page styles */
.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
}
.testimonial-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  padding: 26px 0;
  background: transparent;
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(248, 246, 242, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 8px 30px rgba(28,28,28,0.06);
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 46px;
  width: auto; /* keep natural aspect ratio */
  max-width: 140px; /* reduce visual width while maintaining height */
  transition: height 0.4s var(--ease), max-width 0.4s var(--ease);
  border-radius: 9px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
.navbar.scrolled .nav-logo img { height: 38px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-family: var(--font-btn);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.navbar.scrolled .nav-link { color: var(--charcoal); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-actions .btn-primary { color: var(--charcoal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 700;
}
.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), background 0.35s ease;
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span,
.navbar.scrolled .hamburger.open span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-scrim {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  z-index: 540;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu-scrim.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(82%, 360px);
  z-index: 550;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 100px 36px 50px;
  background: var(--charcoal);
  box-shadow: -20px 0 60px rgba(0,0,0,0.35);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 28px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--ivory);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-menu-close:hover { color: var(--gold-light); transform: rotate(90deg); }
.mobile-link {
  font-family: var(--font-btn);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ivory);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.mobile-link:hover,
.mobile-link:focus-visible { color: var(--gold-light); border-color: var(--gold); }
.mobile-link.active { color: var(--gold-light); border-color: var(--gold); }
.mobile-cta { margin-top: 14px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.12) translate(-1%, -1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.35) 40%, rgba(17,17,17,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 820px;
  padding: 0 24px;
}
.hero-eyebrow { color: var(--White); }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}
.scroll-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  70% { opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* hero entrance handled by JS adding .in class */
.hero-content > * {
  opacity: 0;
  transform: translateY(40px);
}
.hero-content.in > * {
  animation: heroUp 0.9s var(--ease) forwards;
}
.hero-content.in > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content.in > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content.in > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content.in > *:nth-child(4) { animation-delay: 0.8s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: 140px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-media { position: relative; border-radius: 7px; overflow: hidden; }
.about-img {
  width: 100%;
  border-radius: 0; /* container handles rounding */
  filter: grayscale(6%);
}
.about-quote-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 28px 30px;
  max-width: 280px;
  box-shadow: var(--shadow-soft);
}
.about-quote-card p {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.about-quote-card span {
  font-family: var(--font-btn);
  font-size: 0.70rem;
  letter-spacing: 1px;
  color: var(--gold-light);
  text-transform: uppercase;
}
.about-copy p { color: var(--rich-black); margin-bottom: 18px; }
.about-copy h2 { font-size: clamp(2.3rem, 3.6vw, 2.8rem); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--stone);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--rich-black);
  display: block;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-btn);
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stats-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.6;
  font-style: normal;
}

/* ==================
   SERVICES
   =================== */
.services { padding: 120px 0; background: var(--ivory); }
.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}
.service-card {
  background: var(--white);
  padding: 44px 32px;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-card:hover {
  background: var(--charcoal);
  transform: translateY(-4px);
  z-index: 1;
}
.service-card:hover h3,
.service-card:hover p { color: var(--ivory); }
.service-card:hover p { color: rgba(248,246,242,0.7); }
.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.service-icon::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 16px;
  transform: translate(-50%, -50%);
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}
.service-card p {
  color: var(--rich-black);
  font-size: 0.93rem;
  transition: color 0.4s ease;
}

/* ==========================================================================
   FEATURED PROJECTS
   ========================================================================== */
.featured { padding: 130px 0 60px; }
.featured .container { margin-bottom: 20px; }

.project-block { padding: 70px 0; }
.project-block-alt { background: var(--stone); }

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.project-tag {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rich-black);
}
.project-copy h3 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 12px 0 4px;
}
.project-location {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.project-copy > p:not(.project-location) { color: var(--rich-black); margin-bottom: 20px; }
.project-features { margin-bottom: 30px; }
.project-features li {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 0.94rem;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
   border-radius: 7px;
  overflow: hidden;
}
.g-main {
  grid-column: span 3;
  aspect-ratio: 16/10;
  object-fit: cover;
  cursor: pointer;
  border-radius: 7px;
  transition: transform 0.6s var(--ease);
}
.g-thumb {
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  border-radius: 7px;
  transition: transform 0.6s var(--ease), filter 0.4s ease;
}
.project-gallery img:hover { transform: scale(1.04); }

/* ==========================================================================
   PORTFOLIO MASONRY
   ========================================================================== */
.portfolio { padding: 60px 0 130px; }
.filter-bar {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 40px 0 50px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-btn);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 26px;
  border: 1px solid var(--stone);
  color: var(--text-muted);
  transition: all 0.35s var(--ease);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--ivory);
}

.masonry {
  columns: 4 260px;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
   border-radius: 7px;
  transition: transform 0.7s var(--ease);
}
.masonry-item:hover img { transform: scale(1.08); }
.masonry-item.hide { display: none; }

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.process { padding: 130px 0; background: var(--ivory); }
.timeline {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}
.timeline-step {
  padding-top: 26px;
  border-top: 1px solid var(--rich-black);
  position: relative;
}
.timeline-index {
  --font-btn: var(--font-display);
  font-size: 2.7rem;
  color: var(--rich-black);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.85;
}
.timeline-step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.timeline-step p { color: var(--rich-black); font-size: 0.92rem; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-us { padding: 130px 0; }
.why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.why-card {
  padding: 40px 34px;
  border: 1px solid var(--stone);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.why-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 0.93rem; }

/* ==========================================================================
   PHILOSOPHY QUOTE
   ========================================================================== */
.philosophy {
  background: var(--rich-black);
  color: var(--ivory);
  padding: 140px 0;
  text-align: center;
}
.philosophy-inner { max-width: 780px; margin: 0 auto; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  margin-bottom: 26px;
}
.philosophy-author {
  font-family: var(--font-btn);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal), #2a2a2a);
  padding: 100px 0;
  text-align: center;
}
.cta-inner h2 {
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn { padding: 14px 20px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { padding: 130px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
.contact-list { margin: 34px 0; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 0;
  border-bottom: 1px solid var(--stone);
}
.contact-label {
  font-family: var(--font-btn);
  font-size: 0.66rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-list a, .contact-list span:last-child { font-size: 1.05rem; }
.contact-list a:hover { color: var(--gold); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-btn);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid var(--charcoal);
  transition: all 0.35s var(--ease);
}
.whatsapp-btn:hover { background: var(--charcoal); color: var(--ivory); }

.contact-form { background: var(--stone); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-btn);
  font-size: 0.68rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  background: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-submit { width: 100%; margin-top: 10px; }
.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  min-height: 1.2em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--rich-black); color: rgba(248,246,242,0.75); padding: 90px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 50px; margin-bottom: 20px; filter: brightness(1.4); border-radius: 9px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-btn);
  font-size: 0.68rem;
  transition: all 0.3s ease;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

.footer-links h4, .footer-contact h4 {
  color: var(--ivory);
  font-size: 1.1rem;
  margin-bottom: 22px;
}
.footer-links a, .footer-contact p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 26px 0;
  font-size: 0.8rem;
  color: rgba(248,246,242,0.5);
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 86vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.94);
  transition: transform 0.4s var(--ease);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 2.4rem;
  color: var(--ivory);
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--ivory);
  padding: 10px 18px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 50px; height: 50px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 400;
  transition: transform 0.3s var(--ease);
}
.float-whatsapp:hover { transform: scale(1.08); }
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 26px;
  width: 46px; height: 46px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(28, 28, 28, 0.3);
  z-index: 400;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s ease;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold); }

/* ==========================================================================
   CONTACT MAP
   ========================================================================== */
.contact-map { margin-top: 70px; }
.contact-map-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}
.contact-map-copy h3 { font-size: 1.6rem; margin-bottom: 10px; }
.contact-map-copy p { color: var(--text-muted); margin-bottom: 6px; }
.contact-map-copy .contact-address-label {
  font-family: var(--font-btn);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rich-black);
  display: block;
  margin-bottom: 10px;
}
.map-embed {
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-soft);
}
.map-embed iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: -200px;
  max-width: 550px;
  margin: 0 auto;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 24px 28px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  z-index: 3000;
  opacity: 0;
  transition: bottom 0.6s var(--ease), opacity 0.6s var(--ease);
}
.cookie-banner.show { bottom: 20px; opacity: 1; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.88rem; color: rgba(248,246,242,0.85); max-width: 620px; }
.cookie-inner a { color: var(--gold-light); font-weight: 600; }
.cookie-inner a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { padding: 12px 22px; font-size: 0.7rem; }
.cookie-actions .btn-outline {
  border-color: rgba(248,246,242,0.4);
  color: var(--ivory);
}
.cookie-actions .btn-outline:hover { background: rgba(248,246,242,0.12); color: var(--ivory); }

/* ==========================================================================
   PAGE HERO (image-backed hero used on pages like Testimonials)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 170px 24px 90px;
  overflow: hidden;
  background: var(--charcoal);
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.5) 0%, rgba(17,17,17,0.72) 55%, rgba(17,17,17,0.9) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin: 12px 0 16px;
}
.page-hero .section-sub { color: rgba(248,246,242,0.85); margin: 0 auto; }

/* ==========================================================================
   LEGAL PAGES (Privacy Policy / Terms of Service)
   ========================================================================== */
.legal-hero {
  padding: 190px 0 70px;
  background: var(--ivory);
  text-align: center;
}
.legal-hero .eyebrow { display: block; }
.legal-updated { color: var(--text-muted); font-size: 0.85rem; margin-top: 10px; }
.legal-content { padding: 80px 0 130px; }
.legal-content .container { max-width: 860px; }
.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; color: var(--text-dark); }
.legal-content ul { margin: 0 0 16px 0; padding-left: 20px; list-style: disc; }
.legal-content ul li {
  margin-bottom: 10px;
  color: var(--text-dark);
}
.legal-content a { color: var(--gold); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--charcoal); }
.legal-toc {
  background: var(--stone);
  border-radius: 7px;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.legal-toc p { font-family: var(--font-btn); font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.legal-toc ol { padding-left: 20px; }
.legal-toc li { margin-bottom: 8px; font-size: 0.92rem; }
.legal-toc a { color: var(--text-dark); }
.legal-toc a:hover { color: var(--gold); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid, .contact-grid, .contact-map-inner { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr; gap: 40px; }
  .project-block-alt .project-grid { direction: ltr; }
  .about-quote-card { position: static; margin-top: 20px; max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2 200px; }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .about-stats .stat:last-child {
    grid-column: span 2;
    text-align: center;
  }
  .contact-form { padding: 30px 24px; }
  .container { padding: 0 20px; }
  .map-embed iframe { height: 260px; }
  .legal-hero { padding: 160px 0 50px; }
  .page-hero { min-height: 50vh; padding: 150px 24px 70px; }
  .legal-content { padding: 50px 0 90px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .mobile-menu { width: min(88%, 320px); padding: 90px 28px 40px; gap: 20px; }
  .mobile-link { font-size: 0.95rem; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
