/* ===== CSS VARIABLES ===== */
:root {
  --site-topbar-height: 2.25rem;
  --navy: #243A4F;
  --navy-dark: #1A2A38;
  --navy-deeper: #0F1C27;
  --gold: #D4A017;
  --gold-light: #E8B93A;
  --sand: #EDE4D9;
  --sand-light: #F8F6F0;
  --teal: #0A7C6E;
  --charcoal: #2C3E50;
  --text-muted: #7A8A99;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', serif;
  --font-display: 'Inter', sans-serif;
  --font-ui: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--sand-light);
  color: var(--navy-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: var(--site-topbar-height);
  left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 5%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: all 0.4s var(--ease-out);
}

nav.scrolled {
  background: rgba(24, 38, 52, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(212,160,23,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 22px;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  width: max-content;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: inherit;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
#hero {
  position: fixed;
  z-index: -1;
  top: 0px;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-deeper);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-video.loaded {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,30,0.85) 0%, rgba(36,58,79,0.5) 50%, rgba(10,20,30,0.8) 100%);
  z-index: 1;
}

/* Architectural grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(212,160,23,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Geometric accent shape */
.hero-shape {
  position: absolute;
  top: 15%; right: 8%;
  z-index: 2;
  width: 320px; height: 420px;
  border: 1px solid rgba(212,160,23,0.2);
  transform: rotate(8deg);
  pointer-events: none;
}

.hero-shape::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(212,160,23,0.1);
  transform: rotate(-4deg);
}

.hero-shape-inner {
  position: absolute;
  top: 30%; right: 10%;
  z-index: 2;
  width: 200px; height: 280px;
  background: linear-gradient(135deg, rgba(212,160,23,0.06), rgba(10,124,110,0.04));
  transform: rotate(-3deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 5% 8vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.hero-left {}

.hero-tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.35s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-h1 strong {
  font-weight: 700;
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-top: 1.5rem;
  max-width: 440px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-primary {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 32px;
  transition: all 0.3s var(--ease-out);
  display: inline-block;
  position: relative;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,160,23,0.35);
}

.btn-outline {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  transition: all 0.3s var(--ease-out);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-out) 0.8s forwards;
}

.hero-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 100%;
  max-width: 300px;
}

.hero-stat-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stat-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}

.hero-stat-item:hover {
  background: rgba(212,160,23,0.08);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--gold);
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
  max-width: 120px;
  line-height: 1.4;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.hero-scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212,160,23,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ===== TRUST BAR ===== */
#trust-bar {
  background: var(--sand-light);
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 30px 0;
  position: relative;
}

.trust-track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.trust-dot {
  width: 12px; height: 12px;
  border-radius: 0;
  background: var(--gold);
  flex-shrink: 0;
  transform: rotate(45deg);
}

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

/* ===== SECTION COMMONS ===== */
section { position: relative; }

.section-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.section-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--navy-dark);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
}

/* ===== WHY CHOOSE US ===== */
#why {
  padding: 10rem 0;
  background: var(--sand-light);
  overflow: hidden;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}

.why-left {
  position: sticky;
  top: 150px;
}

.why-left .section-h2 {
  margin-bottom: 2rem;
}

.why-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  line-height: 1.6;
  max-width: 480px;
}

.why-founder {
  margin-top: 4rem;
  padding: 2.5rem;
  background: transparent;
  border-left: 2px solid var(--gold);
  position: relative;
}

.why-founder-quote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.why-founder-sig {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  counter-reset: why-counter;
}

.why-card {
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0%; height: 1px;
  background: var(--navy-dark);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover::before {
  width: 100%;
}

.why-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--navy-dark);
  transition: all 0.4s;
  border: none;
  width: auto; height: auto;
}

.why-card:hover .why-card-num {
  color: var(--gold);
  -webkit-text-stroke: 1px var(--gold);
}

.why-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  text-transform: none;
}

.why-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
}

/* ===== ABOUT / STATS ===== */
#about {
  padding: 10rem 0;
  background: var(--navy-deeper);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.about-geo {
  position: absolute;
  bottom: -10%; right: -5%;
  width: 50vw; height: 50vw;
  border: 1px solid rgba(212,160,23,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.about-geo::after {
  content: '';
  position: absolute;
  inset: 5%;
  border: 1px dashed rgba(212,160,23,0.15);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-left .section-label { color: var(--sand-light); }
.about-left .section-label::before { background: var(--sand-light); }

.about-left .section-h2 {
  color: var(--white);
}

.about-body {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--sand-light);
  line-height: 1.4;
  margin-top: 3rem;
  max-width: 900px;
}

.about-body p { margin-bottom: 2rem; }

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 3rem;
}

.about-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--navy-deeper);
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
}

.about-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-top: 2px solid var(--gold);
}

.stat-cell {
  background: var(--navy-deeper);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}

.stat-big {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.05em;
}

.stat-big sup {
  font-size: 2.5rem;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 400;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ===== SERVICES ===== */
#services {
  padding: 10rem 0;
  background: var(--sand);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  margin-bottom: 6rem;
  border-bottom: 2px solid var(--navy-dark);
  padding-bottom: 2rem;
}

.services-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--navy-dark);
  max-width: 400px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: transparent;
}

.service-card {
  background: transparent;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 3rem;
  align-items: center;
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; width: 0%; height: 2px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::after { width: 100%; }
.service-card:hover { padding-left: 2rem; }
.service-card::before { display: none; }

.service-icon {
  width: 60px; height: 60px;
  border: none;
  background: var(--white);
  border-radius: 50%;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--navy-dark);
  margin-bottom: 0;
}

.service-card:hover .service-title { color: var(--gold); }

.service-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.service-card:hover .service-desc { color: var(--charcoal); }

.service-arrow {
  margin-top: 0;
  font-size: 0;
  width: 60px; height: 60px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  opacity: 1; transform: none;
}
.service-arrow svg { width: 24px; height: 24px; stroke: var(--navy-dark); transition: all 0.3s; }
.service-card:hover .service-arrow { background: var(--navy-dark); border-color: var(--navy-dark); }
.service-card:hover .service-arrow svg { stroke: var(--white); transform: rotate(45deg); }

.service-card-vertical:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.service-card-vertical:hover img { transform: scale(1.05); transition: transform 0.6s ease; }

/* ===== PROJECTS ===== */
#projects {
  padding: 10rem 0;
  background: var(--sand-light);
  overflow: hidden;
}

.projects-header {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 5rem;
}

.projects-filters {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.filter-btn {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--navy-dark);
  color: var(--navy-dark);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy-dark);
  color: var(--white);
}

.projects-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  background: transparent;
}

.proj-card {
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--navy-deeper);
}
.proj-card:nth-child(even) {
  margin-top: 5rem;
}

.proj-card:nth-child(n) { grid-column: span 1; }

.proj-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.proj-card:hover .proj-bg { transform: scale(1.05); }

.proj-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 3rem 2rem;
  z-index: 10;
}

.proj-cat {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 6px 12px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.proj-name {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.proj-loc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.proj-loc svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; }

.proj-hover-detail {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  z-index: 10;
}
.proj-hover-detail span {
  background: var(--white);
  color: var(--navy-dark);
  border: none;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  padding: 8px 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* ===== PROCESS ===== */
#process {
  padding: 10rem 0;
  background: var(--navy-dark);
  color: var(--white);
}

#process .section-h2 { color: var(--white); }
#process .section-label { color: var(--sand); }
#process .section-label::before { background: var(--sand); }

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 8rem;
}

.process-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  position: relative;
}

.process-line {
  position: absolute;
  left: 50px; top: 0; bottom: 0; width: 2px; height: auto;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-areas: "num title" "num desc";
  column-gap: 4rem;
  row-gap: 1rem;
  text-align: left;
  align-items: start;
  position: relative;
  z-index: 1;
}
.step-num-wrap { grid-area: num; }
.step-title { grid-area: title; margin-bottom: 0; }
.step-desc { grid-area: desc; }

.step-num-wrap {
  width: 100px; height: 100px;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
}

.process-step:hover .step-num-wrap { background: var(--gold); border-color: var(--gold); }
.process-step:hover .step-num { color: var(--navy-dark); }

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 10rem 0;
  background: var(--sand);
}

#testimonials .section-h2 { color: var(--navy-dark); }

.testi-slider { padding: 5rem 0; overflow: hidden; position: relative;}

.testi-card {
  background: var(--white);
  padding: 4rem;
  border-radius: 0px;
  border-top: 4px solid var(--gold);
  border-left: 1px solid rgba(0,0,0,0.05);
  border-right: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s;
}
.testi-card:hover { background: var(--sand-light); transform: translateY(-10px); }

.testi-quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy-dark);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 50px; height: 50px;
  background: var(--navy-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  font-family: 'Syne', sans-serif; font-weight: 700;
}

.testi-name { font-family: 'Syne', sans-serif; color: var(--navy-dark); font-size: 1.1rem; font-weight: 700; }
.testi-role { font-family: 'DM Sans', sans-serif; color: var(--text-muted); font-size: 0.95rem; }

/* ===== FAQ ===== */
#faq { padding: 10rem 0; background: var(--sand-light); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
}

.faq-left p { font-family: 'DM Sans', sans-serif; font-size: 1.15rem; color: var(--charcoal); margin-bottom: 2rem;}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 2rem 0;
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer; color: var(--navy-dark);
  text-align: left; transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.2);
  display: flex; justify-content: center; align-items: center;
  transition: all 0.3s;
}
.faq-icon svg { width: 16px; height: 16px; stroke: var(--navy-dark); transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--navy-dark); border-color: var(--navy-dark); }
.faq-item.open .faq-icon svg { stroke: var(--gold); transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  padding-bottom: 2rem;
  line-height: 1.6;
}

/* ===== FINAL CTA ===== */
#cta {
  padding: 12rem 0;
  background: var(--gold);
}
.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.cta-label { color: var(--navy-dark); display: flex; justify-content: center; align-items: center; gap: 1rem; font-family: 'Syne', sans-serif; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 2rem;}
.cta-label::before, .cta-label::after { content:""; width: 50px; height: 2px; background: var(--navy-dark); }
.cta-h2 { font-family: 'Syne', sans-serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 800; color: var(--navy-dark); line-height: 1; margin-bottom: 2rem; letter-spacing: -0.03em;}
.cta-h2 em { font-family: var(--font-serif); font-weight: 400; color: var(--white); font-style: italic; }
.cta-sub { color: rgba(0,0,0,0.7); font-family: 'DM Sans', sans-serif; font-size: 1.25rem; max-width: 600px; margin: 0 auto 4rem auto; line-height: 1.6;}
.cta-buttons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 4rem;}
.btn-cta-gold { font-family: 'Syne', sans-serif; font-weight: 700; text-transform: uppercase; background: var(--navy-dark); color: var(--white); padding: 1.2rem 2.5rem; border-radius: 50px; transition: all 0.3s; }
.btn-cta-gold:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-cta-ghost { font-family: 'Syne', sans-serif; font-weight: 700; text-transform: uppercase; border: 2px solid var(--navy-dark); color: var(--navy-dark); padding: 1.2rem 2.5rem; border-radius: 50px; transition: all 0.3s; }
.btn-cta-ghost:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-5px); }

.cta-contact-row { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.cta-contact-item { display: flex; align-items: center; gap: 10px; color: var(--navy-dark); font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1.1rem;}
.cta-contact-item svg { width: 20px; height: 20px; stroke: var(--navy-dark); }
.cta-contact-item:hover { color: var(--white); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deeper);
  padding: 6rem 5%;
  color: var(--white);
}
.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { font-size: 1.8rem; font-family: 'Syne', sans-serif; font-weight: 800; color: var(--white); }
.footer-logo-img { height: 80px; width: auto; object-fit: contain; opacity: 0.8; transition: opacity 0.3s; }
.footer-logo-img:hover { opacity: 1; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: rgba(255,255,255,0.5); text-align: center;}
.footer-tagline { font-family: var(--font-serif); font-size: 1.4rem; color: rgba(255,255,255,0.5); font-style: italic;}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid, .about-grid, .services-header, .process-header, .faq-layout { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: repeat(2, 1fr); }
  .process-step { grid-template-columns: 1fr; gap: 1rem; }
  .step-num-wrap { margin-bottom: 1rem; }
  .projects-mosaic { grid-template-columns: 1fr; }
  .proj-card:nth-child(even) { margin-top: 0; }
  .footer-inner { flex-direction: column; gap: 2rem; text-align: center; }
}

/* ===== ANIMATIONS & MOBILE FIXES ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.mobile-menu {
  display: flex;
  position: fixed;
  top: var(--site-topbar-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 28, 39, 0.98);
  z-index: 2000;
  flex-direction: column;
  align-items: stretch;
  padding: 4.5rem 6% 1.5rem;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
body.menu-open {
  overflow: hidden;
}
.mobile-menu-nav {
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-top: 50px;
}
.mobile-menu-nav > a,
.mobile-menu-toggle {
  font-family: var(--font-ui);
  font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.7rem 0;
  text-align: center;
  flex-shrink: 0;
  transition: color 0.25s var(--ease-out);
}
.mobile-menu-nav > a:hover,
.mobile-menu-toggle:hover {
  color: var(--gold);
}
.mobile-menu-group {
  width: 100%;
  flex-shrink: 0;
}
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: 0.75;
  transition: transform 0.3s var(--ease-out);
}
.mobile-menu-group.is-open .mobile-menu-caret {
  transform: rotate(180deg);
}
.mobile-menu-panel {
  display: grid;
  grid-template-rows: 0fr;
  pointer-events: none;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.mobile-menu-group.is-open .mobile-menu-panel {
  grid-template-rows: 1fr;
  pointer-events: auto;
}
.mobile-menu-panel-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0.15rem 0 0.35rem;
}
.mobile-menu a.mobile-menu-sub {
  display: block;
  font-size: clamp(0.82rem, 3.2vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: start;
  padding: 0.5rem 0 0.5rem 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  border-left: 2px solid rgba(212, 160, 23, 0.35);
}
.mobile-menu a.mobile-menu-sub--all {
  font-weight: 600;
  font-size: clamp(0.72rem, 2.8vw, 0.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-left-color: rgba(212, 160, 23, 0.55);
  padding-top: 0.25rem;
}
.mobile-menu a.mobile-menu-sub:hover {
  color: var(--gold);
}
html[dir="rtl"] .mobile-menu a.mobile-menu-sub {
  padding-left: 0;
  padding-right: 1rem;
  text-align: end;
  border-left: none;
  border-right: 2px solid rgba(212, 160, 23, 0.35);
}
html[dir="rtl"] .mobile-menu a.mobile-menu-sub--all {
  border-right-color: rgba(212, 160, 23, 0.55);
}
.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 5%;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
html[dir="rtl"] .mobile-close {
  right: auto;
  left: 5%;
}

@media (max-width: 640px) {
  .service-card { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
  .service-icon { margin-bottom: 1rem; }
  .process-line { display: none; }
  .about-right { grid-template-columns: 1fr; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}
.testi-stars svg {
  width: 16px; height: 16px;
  fill: var(--gold);
  stroke: var(--gold);
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

/* Nav link typography comes from styles-editorial.css (.desktop-nav a).
   Do not set font on .nav-dropdown-trigger here — higher specificity would
   override editorial and mismatch Home / About / Contact (JetBrains Mono). */

.desktop-nav > a:hover,
.desktop-nav .nav-dropdown:hover .nav-dropdown-trigger,
.desktop-nav .nav-dropdown-trigger:hover {
  color: var(--gold);
}

/* Services mega-style dropdown (desktop) */
.nav-dropdown {
  position: relative;
  padding-bottom: 8px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}

.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(0.35rem);
  min-width: 16rem;
  max-width: 22rem;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s var(--ease-out),
    visibility 0.25s,
    transform 0.25s var(--ease-out);
  z-index: 1100;
}

.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-panel-inner {
  background: rgba(24, 38, 52, 0.98);
  border: 1px solid rgba(212, 160, 23, 0.28);
  box-shadow: 0 18px 40px rgba(10, 20, 30, 0.45);
  padding: 0.5rem 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-dropdown-panel-inner a {
  display: block;
  padding: 0.55rem 1.25rem;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-panel-inner a:hover {
  color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
}

.nav-dropdown-panel-inner .nav-dropdown-all {
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  margin-bottom: 0.15rem;
  padding-bottom: 0.65rem;
}

.nav-dropdown-panel-inner .nav-dropdown-all:hover {
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.1);
}

@media (max-width: 1024px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .desktop-nav { display: none; }
}

@media (min-width: 1025px) {
  .hamburger { display: none !important; }
}

/* ===== CONTACT PAGE SPECIFIC ===== */
.page-hero {
  padding: calc(14rem + var(--site-topbar-height)) 5% 8rem;
  background: var(--navy-deeper);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212,160,23,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212,160,23,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;
}
.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.contact-main {
  background: var(--sand-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 8rem 5%;
}
.form-wrap {
  background: var(--white);
  padding: 4rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
  border-top: 4px solid var(--gold);
}
.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 2rem;
  position: relative;
}
.form-control {
  width: 100%;
  padding: 1.2rem 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  background: transparent;
  color: var(--navy-dark);
  transition: all 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
}
.form-control::placeholder {
  color: rgba(0,0,0,0.3);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-micro {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.6;
}
.btn-submit {
  width: 100%;
  background: var(--navy-dark);
  color: var(--white);
  border: none;
  padding: 1.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.info-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.info-block-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-block-title i {
  color: var(--gold);
}
.info-block-content {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-dark);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s;
  margin-top: 1rem;
  margin-right: 0.5rem;
}
.info-link:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.map-embed {
  width: 100%;
  height: 320px;
  border: none;
  background: #e5e5e5;
  filter: grayscale(100%) contrast(1.2);
  transition: all 0.4s;
}
.map-embed:hover {
  filter: grayscale(0%);
}

.contact-why {
  background: var(--sand);
  padding: 8rem 5%;
}
.why-list {
  max-width: 1000px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.why-list-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.why-list-icon {
  width: 48px; height: 48px;
  background: var(--navy-dark);
  color: var(--gold);
  display: flex; justify-content: center; align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.why-list-content { text-align: left; }
.why-list-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.why-list-content p {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .form-wrap { padding: 3rem 2rem; }
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-page-main {
  background: var(--sand-light);
}

.story-section {
  padding: 8rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.story-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-top: 3rem;
}
.story-text p {
  margin-bottom: 1.5rem;
}
.story-highlight {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-style: italic;
  margin: 3rem 0;
}

.vm-section {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8rem 5%;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.vm-card {
  padding: 4rem;
  border-top: 4px solid var(--gold);
  background: rgba(255,255,255,0.03);
}
.vm-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
}
.vm-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.leadership-section {
  padding: 8rem 5%;
  background: var(--sand);
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.leader-name {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.leader-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.leader-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  line-height: 1.8;
  padding-left: 4rem;
  border-left: 1px solid rgba(0,0,0,0.1);
}

.values-section {
  padding: 8rem 5%;
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 4rem auto 0;
}
.value-card {
  padding: 3rem;
  background: var(--sand-light);
  border-radius: 0;
  transition: all 0.3s;
}
.value-card:hover {
  background: var(--navy-dark);
  color: var(--white);
}
.value-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: inherit;
}
.value-card:hover h4 { color: var(--gold); }
.value-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.value-card:hover p { color: rgba(255,255,255,0.7); }

.team-section {
  background: var(--navy-deeper);
  color: var(--white);
  padding: 8rem 5%;
  text-align: center;
}
.team-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.team-stat {
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 250px;
}
.team-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}
.team-stat-label {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sticky-cta-bar {
  position: sticky;
  top: calc(80px + var(--site-topbar-height));
  background: var(--gold);
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem;
  flex-wrap: wrap;
}
.sticky-cta-link {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.sticky-cta-link:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .vm-grid, .values-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; gap: 2rem; }
  .leader-bio { padding-left: 0; border-left: none; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 2rem; }
  .sticky-cta-bar { top: calc(70px + var(--site-topbar-height)); }
}



