/* ============================================================
   MAVEN HOMES LLC — Luxury Residential Builder
   Designed with Apple-tier precision & craft
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  --black: #0A0A0A;
  --dark: #111111;
  --charcoal: #1A1A1A;
  --surface: #222222;
  --surface-hover: #2A2A2A;
  --gold: #C5A55A;
  --gold-bright: #D4BA7A;
  --gold-dim: rgba(197, 165, 90, 0.06);
  --gold-glow: rgba(197, 165, 90, 0.2);
  --cream: #F5F0E8;
  --warm-white: #FAF8F5;
  --text-primary: #E8E2D8;
  --text-secondary: #A09888;
  --text-tertiary: #706860;
  --border: rgba(197, 165, 90, 0.1);
  --border-strong: rgba(197, 165, 90, 0.22);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.3s var(--ease-out);
  --transition-med: 0.5s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === SKIP LINK (Accessibility) === */
.skip-link {
  position: absolute; top: -100%; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem; font-weight: 600;
  z-index: 10000; border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed; width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,165,90,0.035) 0%, transparent 70%);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* === PRELOADER === */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  transition: opacity 0.8s var(--ease-in-out), visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
}
.preloader-bar {
  width: 100px; height: 1px; background: var(--border);
  position: relative; overflow: hidden;
}
.preloader-bar::after {
  content: ''; position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: slide 1.4s ease-in-out infinite;
}
@keyframes slide { 0% { left: -100%; } 100% { left: 100%; } }

/* === NAVIGATION === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.6rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: all var(--transition-med);
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  padding: 0.9rem 5%;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.9rem;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--gold);
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.nav-logo-mark::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateY(101%);
  transition: transform 0.4s ease; z-index: 0;
}
.nav-logo:hover .nav-logo-mark::before { transform: translateY(0); }
.nav-logo:hover .nav-logo-mark { color: var(--black); }
.nav-logo-mark span { position: relative; z-index: 1; }
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 500;
  color: var(--cream); letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-brand-sub {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 0.5rem; font-weight: 300;
  color: var(--text-tertiary); letter-spacing: 0.35em;
  text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.nav-cta {
  padding: 0.65rem 1.8rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: all 0.4s ease !important;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform 0.4s ease; z-index: 0;
}
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta:hover { color: var(--black) !important; }
.nav-cta span { position: relative; z-index: 1; }
.nav-cta::after { display: none !important; }

/* Mobile Toggle */
.menu-toggle {
  display: none; flex-direction: column;
  gap: 6px; padding: 8px; z-index: 1001;
}
.menu-toggle span {
  width: 26px; height: 1.5px; background: var(--cream);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; visibility: hidden;
  transition: all var(--transition-med);
}
.mobile-menu[aria-hidden="false"] { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--cream);
  transition: color var(--transition-fast);
  opacity: 0; transform: translateY(20px);
}
.mobile-menu[aria-hidden="false"] a {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s;
}
.mobile-menu[aria-hidden="false"] a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu[aria-hidden="false"] a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu[aria-hidden="false"] a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu[aria-hidden="false"] a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu[aria-hidden="false"] a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:hover { color: var(--gold); }

/* === HERO === */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute; inset: -5%; z-index: 0;
  overflow: hidden;
}
.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroFloat 20s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.1) translateY(-10px); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.65) 75%, rgba(10,10,10,0.95) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.8) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 8%; max-width: 900px;
}
.hero-tag {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}
.hero-tag-line { width: 45px; height: 1px; background: var(--gold); }
.hero-tag-text {
  font-size: 0.6rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold); font-weight: 400;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.08;
  color: var(--cream); margin-bottom: 2rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner {
  display: block;
  opacity: 0; transform: translateY(100%);
  animation: lineReveal 0.9s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.7s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.85s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 1.0s; }
@keyframes lineReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-title em {
  font-style: italic; color: var(--gold);
}
.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500; line-height: 1.8;
  color: #FFFFFF; max-width: 560px;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
.hero-buttons {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  text-align: center;
  opacity: 0; animation: fadeUp 0.8s ease 2s forwards;
}
.hero-scroll-text {
  font-size: 0.52rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--text-tertiary);
  margin-bottom: 0.8rem;
}
.hero-scroll-line {
  width: 1px; height: 45px; margin: 0 auto;
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%; background: var(--gold);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -50%; } 100% { top: 150%; } }

/* === BUTTONS === */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2.5rem;
  background: var(--gold); color: var(--black);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--cream); transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }
.btn-gold svg { position: relative; z-index: 1; transition: transform 0.3s; }
.btn-gold:hover svg { transform: translateX(4px); }
.btn-gold:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2.5rem;
  background: transparent; color: var(--cream);
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* === STATS BAR === */
.stats-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 8%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { text-align: center; position: relative; padding: 0 1rem; }
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%;
  height: 60%; width: 1px; background: var(--border);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400; color: var(--gold);
  line-height: 1; margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-tertiary);
  font-weight: 300;
}

/* === SECTION COMMON === */
.section { padding: 7rem 8%; position: relative; }
.section-tag {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.2rem;
}
.section-tag-line { width: 28px; height: 1px; background: var(--gold); }
.section-tag-text {
  font-size: 0.56rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold); font-weight: 400;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.12;
  color: var(--cream); margin-bottom: 1.2rem;
}
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300; line-height: 1.8;
  color: var(--text-secondary); max-width: 560px;
}

/* === SCROLL REVEAL === */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0; transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.95); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* === ABOUT === */
.about { background: var(--black); overflow: hidden; }
.about-layout {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 6rem; align-items: center; margin-top: 3.5rem;
}
.about-visual { position: relative; }
.about-img-main {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.88) contrast(1.05) saturate(0.92);
  transition: transform 1s var(--ease-out);
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 50%; aspect-ratio: 4/3;
  overflow: hidden;
  border: 3px solid var(--black);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-frame {
  position: absolute; top: -1.2rem; left: -1.2rem;
  right: 2.5rem; bottom: 2.5rem;
  border: 1px solid var(--gold-glow); z-index: -1;
}
.about-exp-badge {
  position: absolute; top: 1.5rem; right: -0.8rem;
  background: var(--gold); color: var(--black);
  padding: 1rem 1.3rem; text-align: center; z-index: 3;
}
.about-exp-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 600; line-height: 1;
}
.about-exp-label {
  font-size: 0.48rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600; margin-top: 2px;
}
.about-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 400; color: var(--cream);
  margin-bottom: 1.8rem; line-height: 1.35;
}
.about-body p {
  font-size: 0.86rem; line-height: 2;
  color: var(--text-secondary); font-weight: 300;
  margin-bottom: 1.3rem;
}
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.about-highlight {
  padding-left: 1rem;
  border-left: 2px solid var(--gold-glow);
  transition: border-color var(--transition-fast);
}
.about-highlight:hover { border-left-color: var(--gold); }
.about-highlight-label {
  font-size: 0.52rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-tertiary);
  margin-bottom: 0.3rem;
}
.about-highlight-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--gold-bright); font-weight: 500;
}

/* === PARALLAX DIVIDERS === */
.parallax-divider {
  height: 40vh; min-height: 300px;
  position: relative; overflow: hidden;
}
.parallax-divider-img {
  position: absolute; inset: -15%;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.parallax-divider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(10,10,10,0.25) 30%, rgba(10,10,10,0.25) 70%, var(--black) 100%);
}
.parallax-divider-content {
  position: relative; z-index: 2;
  height: 100%; display: flex;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 8%;
}
.parallax-divider-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400; color: var(--cream);
  line-height: 1.45; max-width: 650px;
  font-style: italic;
}
.parallax-divider-text em { color: var(--gold); }

/* === SERVICES === */
.services { background: var(--dark); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem; margin-top: 3.5rem;
}
.service-card {
  background: var(--charcoal);
  padding: 3rem 2.2rem;
  position: relative; overflow: hidden;
  border: 1px solid transparent;
  transition: all var(--transition-med);
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition-med);
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--gold-dim) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition-med);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-card-inner { position: relative; z-index: 1; }
.service-icon {
  width: 44px; height: 44px; margin-bottom: 1.8rem;
  stroke: var(--gold); fill: none; stroke-width: 1.2;
}
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(197,165,90,0.05);
  line-height: 1;
  position: absolute; top: 1.5rem; right: 1.5rem;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.9rem;
}
.service-text {
  font-size: 0.8rem; line-height: 1.85;
  color: var(--text-secondary); font-weight: 300;
}
.service-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-top: 1.5rem; font-weight: 500;
  transition: gap var(--transition-fast);
}
.service-cta:hover { gap: 0.7rem; }

/* === PORTFOLIO === */
.portfolio { background: var(--black); }
.impact-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--surface) 100%);
  border: 1px solid var(--border-strong);
  padding: 3rem; margin-top: 2.5rem;
}
.impact-banner-inner {
  display: flex; align-items: center; gap: 3rem;
}
.impact-stat-highlight { text-align: center; flex-shrink: 0; }
.impact-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 400; color: var(--gold);
  line-height: 1;
}
.impact-label {
  font-size: 0.55rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-tertiary);
  margin-top: 0.4rem;
}
.impact-story { flex: 1; }
.impact-story h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.8rem;
}
.impact-story p {
  font-size: 0.85rem; line-height: 1.9;
  color: var(--text-secondary); font-weight: 300;
}

/* Project Showcase */
.project-showcase {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; margin-top: 3.5rem; align-items: center;
}
.project-showcase.reverse { direction: rtl; }
.project-showcase.reverse > * { direction: ltr; }
.project-images { position: relative; }
.project-img-main {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.project-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.project-img-main:hover img { transform: scale(1.03); }
.project-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--black);
  padding: 0.4rem 1rem;
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  z-index: 2;
}
.project-img-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem; margin-top: 0.6rem;
}
.project-img-sm {
  overflow: hidden; aspect-ratio: 4/3;
}
.project-img-sm img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.project-img-sm:hover img { transform: scale(1.05); }
.project-type-tag {
  font-size: 0.55rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem; font-weight: 400;
}
.project-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500; color: var(--cream);
  margin-bottom: 0.3rem;
}
.project-location {
  font-size: 0.7rem; color: var(--text-tertiary);
  letter-spacing: 0.1em; margin-bottom: 1.2rem;
}
.project-desc {
  font-size: 0.84rem; line-height: 1.9;
  color: var(--text-secondary); font-weight: 300;
  margin-bottom: 1.8rem;
}
.project-stats {
  display: flex; gap: 2rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.project-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--gold); line-height: 1;
}
.project-stat-label {
  font-size: 0.5rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-tertiary);
  margin-top: 0.3rem;
}
.project-scope {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.project-scope span {
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  font-size: 0.6rem; letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.project-scope span:hover {
  border-color: var(--gold-glow);
  color: var(--gold-bright);
}
.portfolio-cta {
  margin-top: 3.5rem; text-align: center;
}
.portfolio-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--text-secondary);
  font-weight: 300; margin-bottom: 1.8rem;
}

/* === WHY MAVEN === */
.why-section { background: var(--dark); }
.why-layout {
  display: grid; grid-template-columns: 1fr 0.8fr;
  gap: 5rem; margin-top: 3.5rem; align-items: center;
}
.why-item {
  display: flex; gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-item-icon {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 300;
  color: var(--gold); line-height: 1;
  flex-shrink: 0; width: 2rem;
}
.why-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.6rem;
}
.why-item-desc {
  font-size: 0.82rem; line-height: 1.85;
  color: var(--text-secondary); font-weight: 300;
}
.why-image {
  overflow: hidden; aspect-ratio: 3/4;
}
.why-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}

/* === PROCESS === */
.process { background: var(--black); }
.process-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 3.5rem;
  position: relative;
}
.process-timeline::before {
  content: ''; position: absolute;
  top: 12px; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.process-dot {
  width: 10px; height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  background: var(--black);
}
.process-step-num {
  font-size: 0.52rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem;
}
.process-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.7rem;
}
.process-step-desc {
  font-size: 0.8rem; line-height: 1.85;
  color: var(--text-secondary); font-weight: 300;
}

/* === TESTIMONIALS CAROUSEL === */
.testimonials {
  background: var(--dark);
  padding: 7rem 8%;
}
.testimonial-carousel {
  max-width: 750px; margin: 3rem auto 0;
  text-align: center; position: relative;
  overflow: hidden;
}
.testimonial-track { position: relative; }
.testimonial-slide {
  display: none; opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.testimonial-slide.active {
  display: block; opacity: 1;
}
.testimonial-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem; color: var(--gold-glow);
  line-height: 0.5; margin-bottom: 1.5rem;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  font-weight: 400; line-height: 1.9;
  color: var(--text-primary);
  font-style: italic; margin-bottom: 1.8rem;
}
.testimonial-divider {
  width: 40px; height: 1px;
  background: var(--gold); margin: 0 auto 1rem;
}
.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.25rem;
}
.testimonial-detail {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-tertiary);
  margin-bottom: 0.6rem;
}
.testimonial-stars {
  font-size: 0.9rem; color: var(--gold);
  letter-spacing: 0.15em;
}

/* Carousel Controls */
.testimonial-controls {
  display: flex; align-items: center;
  justify-content: center; gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-prev,
.testimonial-next {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  background: transparent;
}
.testimonial-prev:hover,
.testimonial-next:hover {
  border-color: var(--gold); color: var(--gold);
}
.testimonial-prev:focus-visible,
.testimonial-next:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
.testimonial-dots {
  display: flex; gap: 0.6rem; align-items: center;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--text-tertiary);
  background: transparent;
  transition: all var(--transition-fast);
  padding: 0;
}
.testimonial-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}
.testimonial-dot:hover {
  border-color: var(--gold);
}
.testimonial-dot:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

/* Google Reviews Link */
.google-review-link {
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}
.google-review-link:hover {
  border-color: var(--gold-glow);
}
.google-review-link:hover span { color: var(--gold-bright); }

/* === TRUST BADGES === */
.trust-section {
  background: var(--black);
  padding: 4rem 8%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner { max-width: 1100px; margin: 0 auto; }
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 2rem;
}
.trust-badge {
  text-align: center;
  padding: 1.5rem 0.8rem;
  transition: all var(--transition-fast);
}
.trust-badge:hover { transform: translateY(-4px); }
.trust-badge-icon {
  margin-bottom: 0.8rem;
  display: flex; justify-content: center;
}
.trust-badge-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.25rem;
}
.trust-badge-detail {
  font-size: 0.58rem; letter-spacing: 0.12em;
  color: var(--text-tertiary); text-transform: uppercase;
}

@media (max-width: 1024px) {
  .trust-badges { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .testimonial-controls { gap: 1rem; }
}
@media (max-width: 480px) {
  .trust-badges { grid-template-columns: 1fr 1fr; }
}

/* === CTA BANNER === */
.cta-banner {
  position: relative; padding: 6rem 8%;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-image: url('images/cta-banner-bg.webp');
  background-size: cover; background-position: center;
  filter: brightness(0.3);
}
.cta-banner-content {
  position: relative; z-index: 2;
  text-align: center;
}
.cta-banner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--cream);
  margin-bottom: 2rem;
}
.cta-banner-content em { color: var(--gold); font-style: italic; }

/* === CONTACT === */
.contact { background: var(--black); }
.contact-layout {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem; margin-top: 3rem;
}
.contact-block { margin-bottom: 2.5rem; }
.contact-label {
  font-size: 0.52rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem; font-weight: 500;
}
.contact-value {
  font-size: 0.9rem; color: var(--text-primary);
  line-height: 1.8;
}
.contact-value a {
  color: var(--text-primary);
  transition: color var(--transition-fast);
  border-bottom: 1px solid transparent;
}
.contact-value a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.contact-social { display: flex; gap: 1rem; margin-top: 0.5rem; }
.contact-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.contact-social a:hover { border-color: var(--gold); color: var(--gold); }
.contact-social a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.contact-social svg { width: 14px; height: 14px; }

/* Contact Form */
.contact-form {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 3rem;
}
.form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.4rem;
}
.form-subheading {
  font-size: 0.78rem; color: var(--text-secondary);
  margin-bottom: 2rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.56rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-tertiary); margin-bottom: 0.5rem;
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  transition: border-color var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #E57373;
}
.form-error {
  font-size: 0.7rem; color: #E57373;
  margin-top: 0.3rem; display: none;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23706860' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.form-trust {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.form-trust-item {
  font-size: 0.6rem; letter-spacing: 0.1em;
  color: var(--text-tertiary); display: flex;
  align-items: center; gap: 0.4rem;
}
.form-trust-item svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; }

/* === FOOTER === */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.footer-main {
  padding: 4rem 8% 3rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.3rem;
}
.footer-brand-tagline {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 0.8rem; line-height: 1.8;
  color: var(--text-secondary); font-weight: 300;
  max-width: 280px;
}
.footer-heading {
  font-size: 0.56rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 1.2rem;
}
.footer-links a {
  display: block; font-size: 0.8rem;
  color: var(--text-secondary); margin-bottom: 0.7rem;
  transition: color var(--transition-fast); font-weight: 300;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 8%;
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 0.65rem; color: var(--text-tertiary);
  letter-spacing: 0.05em;
}
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a {
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .project-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .project-showcase.reverse { direction: ltr; }
  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-image { max-width: 500px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .impact-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 6%; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem 6%;
  }
  .stat:nth-child(2)::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-content { padding: 0 6%; }
  .contact-form { padding: 2rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 600px; }
  .hero-buttons { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }
  .stats-section { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .project-stats { flex-wrap: wrap; gap: 1.2rem; }
}
