:root {
  --navy: #14253f;
  --navy-deep: #0d1a2e;
  --gray: #6b7280;
  --gray-light: #f4f5f7;
  --gray-border: #e2e5ea;
  --white: #ffffff;
  --accent: #1f3a63;
  --shadow: 0 12px 32px rgba(20, 37, 63, 0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--navy);
  line-height: 1.65;
  background: var(--white);
}
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 14px;
}
.section h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 18px; }
.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head p { color: var(--gray); font-size: 1.05rem; }
.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--accent); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--navy); line-height: 1.1; }
.brand-name span { display: block; font-family: 'Inter', sans-serif; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--navy); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.current { color: var(--accent); font-weight: 600; }
.nav-links .btn { color: var(--white); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); transition: 0.3s; }

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0 64px;
}
.page-hero .crumbs { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; letter-spacing: 0.4px; }
.page-hero .crumbs a { color: rgba(255,255,255,0.85); }
.page-hero .crumbs a:hover { color: var(--white); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 620px; font-size: 1.05rem; }

/* PROJECT GRID */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
  cursor: pointer;
  border: none;
  padding: 0;
  text-align: left;
  font-family: inherit;
  min-height: 44px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(20, 37, 63, 0.22); }
.project-card .cover { width: 100%; height: 300px; object-fit: cover; }
.project-card .cover-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card .cover-placeholder svg { width: 84px; height: 84px; opacity: 0.55; }
.project-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 24px 22px;
  background: linear-gradient(transparent, rgba(13, 26, 46, 0.92) 55%);
  color: var(--white);
}
.project-info h3 { font-size: 1.3rem; margin-bottom: 4px; }
.project-info .meta { font-size: 0.85rem; color: rgba(255,255,255,0.75); letter-spacing: 0.4px; }
.project-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 6px 15px; border-radius: 30px;
  font-size: 0.72rem; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600;
}
.project-card.coming { cursor: default; }
.project-card.coming:hover { transform: none; box-shadow: var(--shadow); }

/* PROJECT LIGHTBOX */
.viewer {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(13, 26, 46, 0.95);
  display: none;
  flex-direction: column;
  padding: 64px 20px 24px;
}
.viewer.open { display: flex; }
.viewer-head {
  position: absolute; top: 16px; left: 24px; right: 70px;
  color: var(--white);
}
.viewer-head h3 { font-size: 1.2rem; }
.viewer-head .count { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.viewer-close {
  position: absolute; top: 12px; right: 20px;
  background: none; border: none; color: var(--white);
  font-size: 2.4rem; line-height: 1; cursor: pointer; font-family: inherit;
  width: 44px; height: 44px;
}
.viewer-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 0;
}
.viewer-stage img {
  max-width: min(1000px, 82vw);
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.viewer-nav {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.4rem; line-height: 1;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
}
.viewer-nav:hover { background: rgba(255,255,255,0.26); }
.viewer-caption { color: rgba(255,255,255,0.8); text-align: center; font-size: 0.9rem; margin-top: 14px; min-height: 22px; }
.viewer-thumbs {
  display: flex; gap: 10px; justify-content: flex-start;
  overflow-x: auto; padding: 12px 2px 4px; margin-top: 6px;
}
.viewer-thumbs img {
  width: 90px; height: 64px; object-fit: cover;
  border-radius: 5px; cursor: pointer;
  opacity: 0.5; border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  flex: 0 0 auto;
}
.viewer-thumbs img.active, .viewer-thumbs img:hover { opacity: 1; border-color: var(--white); }

/* ABOUT — BIO */
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.bio-text p { color: var(--gray); margin-bottom: 16px; }
.bio-text p strong { color: var(--navy); }
.bio-text h2 { margin-bottom: 18px; }
.bio-placeholder { border-left: 3px solid var(--gray-border); padding-left: 16px; font-size: 0.95rem; }
.portrait-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--accent) 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
}
.portrait-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center top;
  display: block;
}
.portrait-placeholder .monogram {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
}
.portrait-placeholder .portrait-note {
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.portrait-caption { margin-top: 16px; text-align: center; }
.portrait-caption strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.portrait-caption span { font-size: 0.85rem; color: var(--gray); }

/* ABOUT — METRICS & CREDENTIALS */
.metrics-band { background: var(--gray-light); }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.metric {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 30px 22px;
  text-align: center;
}
.metric .num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.metric .label { font-size: 0.82rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gray); margin-top: 8px; }
.cred-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 32px 34px;
  box-shadow: var(--shadow);
}
.cred-card h3 { font-size: 1.35rem; margin-bottom: 18px; }
.cred-list { list-style: none; }
.cred-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.95rem;
}
.cred-list li:last-child { border-bottom: none; }
.cred-label { color: var(--gray); font-weight: 500; }
.cred-value { font-weight: 600; text-align: right; }
.cred-value.pending { color: var(--gray); font-weight: 500; font-style: italic; }

/* ABOUT — SERVICE AREA MAP */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.map-wrap {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 26px;
}
.ga-map { width: 100%; height: auto; display: block; }
.ga-outline { fill: var(--white); stroke: var(--navy); stroke-width: 2.5; stroke-linejoin: round; }
.ga-highlight { fill: var(--navy); fill-opacity: 0.88; stroke: var(--navy-deep); stroke-width: 2; stroke-linejoin: round; }
.pins circle { fill: var(--white); stroke: var(--navy-deep); stroke-width: 2; }
.pins text { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; fill: var(--white); }
.pin-hq circle { fill: #d7b56d; stroke: var(--white); stroke-width: 2.5; }
.pin-hq text { fill: var(--white); font-size: 13px; font-weight: 700; }
.city-major circle { fill: var(--white); }
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--gray);
}
.map-legend .swatch { display: inline-block; width: 13px; height: 13px; border-radius: 3px; margin-right: 7px; vertical-align: -2px; }
.swatch-area { background: var(--navy); }
.swatch-hq { background: #d7b56d; border-radius: 50%; }
.area-text h3 { font-size: 1.35rem; margin-bottom: 16px; }
.area-text p { color: var(--gray); }
.area-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.area-chips span {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: 30px;
  padding: 7px 15px;
  font-size: 0.86rem;
  font-weight: 500;
}
.area-note { margin-top: 18px; font-size: 0.92rem; }

/* CTA */
.cta { background: var(--gray-light); text-align: center; }
.cta h2 { margin-bottom: 14px; }
.cta p { color: var(--gray); max-width: 560px; margin: 0 auto 28px; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 40px 0; text-align: center; font-size: 0.9rem; }
footer .brand-name { color: var(--white); margin-bottom: 8px; }

@media (max-width: 900px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--gray-border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .bio-grid, .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .portrait { max-width: 340px; margin: 0 auto; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .project-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .project-card .cover, .project-card .cover-placeholder { height: 240px; }
  .viewer-stage { gap: 6px; }
  .viewer-nav { width: 40px; height: 40px; }
  .cred-card { padding: 24px 20px; }
  .cred-list li { flex-direction: column; gap: 2px; }
  .cred-value { text-align: left; }
  .map-wrap { padding: 16px; }
}
