:root {
  --navy:      #1F3864;
  --navy-dk:   #131F3A;
  --navy-md:   #2E5BA8;
  --blue:      #4A90D9;
  --blue-lt:   #7FB3E8;
  --white:     #FFFFFF;
  --off-white: #F8F9FC;
  --gray-dk:   #2A2A2A;
  --gray-md:   #5A6070;
  --gray-lt:   #E8ECF2;
  --border:    #D4DAE8;
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Raleway', sans-serif;
  color: var(--gray-dk);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; }

/* ── NAVIGATION ─────────────────────────────────────────────────────── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  height: 88px;
  display: flex; align-items:center; justify-content:space-between;
  padding: 0 52px;
  background: rgba(19,31,58,0.75);
  backdrop-filter: blur(8px);
  transition: background .4s, box-shadow .4s;
}
nav.solid {
  background: rgba(19,31,58,0.97);
  box-shadow: 0 2px 32px rgba(0,0,0,.4);
}
.nav-logo img { height: 68px; }
.nav-links { display:flex; gap:36px; list-style:none; align-items:center; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  transition: color .2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color:#fff; border-bottom-color: var(--blue); }
.nav-active { color:#fff !important; border-bottom: 2px solid var(--blue) !important; }

/* ── HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset:0;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset:0;
  background: linear-gradient(
    105deg,
    rgba(19,31,58,.92) 0%,
    rgba(19,31,58,.80) 40%,
    rgba(19,31,58,.45) 75%,
    rgba(19,31,58,.2) 100%
  );
}
.hero-content {
  position: relative; z-index:2;
  max-width: 1100px; margin: 0 auto;
  padding: 0 52px; width:100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue-lt);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content:''; display:block;
  width:36px; height:2px; background: var(--blue);
}
.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  max-width: 780px;
}
.hero h1 .accent {
  display: block;
  color: var(--blue-lt);
  font-weight: 300;
  font-style: italic;
  font-family: 'Source Serif 4', serif;
  font-size: .82em;
  letter-spacing: 0;
}
.hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.72); max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; }
.btn-hero-primary {
  background: var(--blue); color:#fff;
  padding: 16px 36px; font-size:14px; font-weight:700;
  letter-spacing: .06em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:10px;
  transition: background .2s, transform .15s;
}
.btn-hero-primary:hover { background:#3578C0; transform:translateY(-2px); }
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,.45); color:#fff;
  padding: 14px 36px; font-size:14px; font-weight:600;
  letter-spacing: .06em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:10px;
  transition: border-color .2s, background .2s;
}
.btn-hero-outline:hover { border-color:#fff; background:rgba(255,255,255,.08); }

/* Hero scroll indicator */
.hero-scroll {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(255,255,255,.4); font-size:10px; letter-spacing:.2em;
  text-transform:uppercase; z-index:2;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform:translateX(-50%) translateY(0); opacity:.4; }
  50% { transform:translateX(-50%) translateY(6px); opacity:.7; }
}
.hero-scroll svg { width:20px; height:20px; stroke:rgba(255,255,255,.5); }

/* Hero stats bar */
.hero-stats {
  position:absolute; bottom:0; left:0; right:0; z-index:3;
  background: rgba(19,31,58,.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(74,144,217,.25);
  display:flex;
}
.hero-stat {
  flex:1; padding:20px 36px;
  border-right: 1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; gap:14px;
}
.hero-stat:last-child { border-right:none; }
.hero-stat svg { width:22px; height:22px; stroke:var(--blue); flex-shrink:0; }
.hero-stat-text strong {
  display:block; font-size:14px; font-weight:700; color:#fff;
}
.hero-stat-text span {
  font-size:12px; color:rgba(255,255,255,.45); letter-spacing:.04em;
}

/* ── INTRO BAND ─────────────────────────────────────────────────────── */
.intro-band {
  background: var(--off-white);
  padding: 80px 52px;
  border-bottom: 1px solid var(--border);
}
.intro-inner {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.intro-headline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400; line-height: 1.3;
  color: var(--navy);
}
.intro-headline em { font-style:italic; color:var(--navy-md); }
.intro-text p {
  font-size:16px; font-weight:300; line-height:1.85;
  color:var(--gray-md); margin-bottom:16px;
}
.intro-text p:last-child { margin-bottom:0; }

/* ── SERVICES ───────────────────────────────────────────────────────── */
.services { padding: 100px 52px; background: var(--white); }
.services-inner { max-width:1100px; margin:0 auto; }
.section-label {
  font-size:11px; font-weight:700; letter-spacing:.22em;
  text-transform:uppercase; color:var(--blue);
  display:flex; align-items:center; gap:12px; margin-bottom:14px;
}
.section-label::before {
  content:''; width:28px; height:2px; background:var(--blue);
}
.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800; line-height: 1.1;
  color: var(--navy); margin-bottom: 56px;
}

/* Service cards with photo */
.svc-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:24px;
}
.svc-card {
  position:relative; overflow:hidden;
  background: var(--navy-dk);
  display:flex; flex-direction:column;
  min-height: 380px;
  cursor:default;
  transition: transform .3s;
}
.svc-card:hover { transform:translateY(-4px); }
.svc-card-img {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:.35;
  transition: opacity .4s, transform .5s;
}
.svc-card:hover .svc-card-img { opacity:.5; transform:scale(1.04); }
.svc-card-body {
  position:relative; z-index:2;
  padding:36px; margin-top:auto;
  background: linear-gradient(0deg, rgba(19,31,58,.98) 40%, transparent 100%);
}
.svc-card-num {
  font-size:10px; font-weight:700; letter-spacing:.25em;
  color:var(--blue); text-transform:uppercase; margin-bottom:10px;
}
.svc-card h3 {
  font-size:22px; font-weight:800; color:#fff;
  margin-bottom:10px; letter-spacing:-.01em;
}
.svc-card p {
  font-size:14px; color:rgba(255,255,255,.6); line-height:1.65;
  margin-bottom:16px;
}
.svc-link {
  font-size:12px; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--blue);
  display:inline-flex; align-items:center; gap:6px;
  transition: gap .2s;
}
.svc-link:hover { gap:10px; }

/* Large featured card */
.svc-card.featured { grid-column: span 2; min-height:320px; flex-direction:row; }
.svc-card.featured .svc-card-body {
  margin-top:0; align-self:flex-end; width:50%;
  padding:48px;
  background: linear-gradient(90deg, rgba(19,31,58,.98) 60%, transparent 100%);
}

/* ── PROOF STRIP ────────────────────────────────────────────────────── */
.proof-strip {
  background: var(--navy-dk);
  padding: 56px 52px;
  display:flex; justify-content:center; flex-wrap:wrap; gap:0;
}
.proof-item {
  text-align:center; padding:24px 52px;
  border-right: 1px solid rgba(255,255,255,.08);
  flex-shrink:0;
}
.proof-item:last-child { border-right:none; }
.proof-num {
  font-size:42px; font-weight:800; color:#fff;
  font-family:'Raleway',sans-serif; line-height:1;
  margin-bottom:6px;
}
.proof-num span { color:var(--blue); }
.proof-label {
  font-size:11px; font-weight:600; letter-spacing:.15em;
  text-transform:uppercase; color:rgba(255,255,255,.4);
}

/* ── PHOTO GALLERY STRIP ────────────────────────────────────────────── */
.gallery-strip {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  height: 420px; overflow:hidden;
}
.gallery-cell {
  overflow:hidden; position:relative;
}
.gallery-cell img {
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  transition: transform .6s ease;
}
.gallery-cell:hover img { transform:scale(1.06); }
.gallery-cell-caption {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(0deg, rgba(19,31,58,.85), transparent);
  padding:24px 20px 16px;
  font-size:12px; font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; color:rgba(255,255,255,.7);
  transform:translateY(100%);
  transition: transform .3s;
}
.gallery-cell:hover .gallery-cell-caption { transform:none; }

/* ── ABOUT STRIP ────────────────────────────────────────────────────── */
.about-strip {
  padding: 100px 52px;
  background: var(--off-white);
}
.about-inner {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1.1fr; gap:80px; align-items:center;
}
.about-img {
  position:relative;
  height:500px; overflow:hidden;
}
.about-img img {
  width:100%; height:100%; object-fit:cover;
  object-position: center top;
}
.about-img-badge {
  position:absolute; bottom:28px; left:28px;
  background: var(--navy-dk);
  border-left: 4px solid var(--blue);
  padding:18px 24px; color:#fff;
}
.about-img-badge strong {
  display:block; font-size:18px; font-weight:800; margin-bottom:3px;
}
.about-img-badge span { font-size:12px; color:rgba(255,255,255,.55); font-weight:400; }
.about-text .section-label { margin-bottom:12px; }
.about-text h2 {
  font-family:'Raleway',sans-serif;
  font-size:clamp(28px,3.5vw,44px);
  font-weight:800; color:var(--navy);
  margin-bottom:24px; line-height:1.1;
}
.about-text p {
  font-size:16px; font-weight:300; line-height:1.85;
  color:var(--gray-md); margin-bottom:16px;
}
.about-creds {
  display:flex; flex-wrap:wrap; gap:8px; margin:28px 0;
}
.cred-tag {
  background:var(--white); border:1.5px solid var(--border);
  border-left:3px solid var(--navy);
  padding:8px 14px; font-size:12.5px; font-weight:600; color:var(--navy);
}
/* Home About-PEC tags: equal-width aligned grid (scoped so About-page affiliation badges are unaffected) */
.about-strip .about-creds {
  display:grid;
  grid-template-columns:repeat(2,1fr);
}
.about-strip .cred-tag {
  display:flex; align-items:center;
}
.btn-about {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--navy); color:#fff;
  padding:14px 32px; font-size:13px; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase;
  transition:background .2s;
}
.btn-about:hover { background:var(--navy-md); }

/* ── WHY PEC ────────────────────────────────────────────────────────── */
.why { padding:100px 52px; background:var(--white); }
.why-inner { max-width:1100px; margin:0 auto; }
.why-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0; background:var(--border); border:1px solid var(--border);
  margin-top:8px;
}
.why-card {
  background:var(--white); padding:40px 32px;
  border-right:1px solid var(--border);
  position:relative; overflow:hidden;
  transition:background .2s;
}
.why-card:last-child { border-right:none; }
.why-card::after {
  content:''; position:absolute;
  top:0; left:0; right:0; height:3px;
  background:transparent; transition:background .25s;
}
.why-card:hover { background:var(--off-white); }
.why-card:hover::after { background:var(--blue); }
.why-icon {
  width:48px; height:48px; margin-bottom:20px;
  background:rgba(74,144,217,.1); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.why-icon svg { width:22px; height:22px; stroke:var(--navy); }
.why-card h3 {
  font-size:17px; font-weight:800; color:var(--navy); margin-bottom:10px;
}
.why-card p { font-size:14px; color:var(--gray-md); line-height:1.7; }

/* ── CTA ────────────────────────────────────────────────────────────── */
.cta {
  position:relative; overflow:hidden;
  padding:0;
}
.cta-bg {
  position:absolute; inset:0;
  background-image: url('img/photo-curtainwall.jpg');
  background-size:cover; background-position:center 60%;
}
.cta-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(19,31,58,.95) 0%, rgba(31,56,100,.88) 100%);
}
.cta-content {
  position:relative; z-index:2;
  text-align:center; padding:96px 52px;
  max-width:800px; margin:0 auto;
}
.cta-content h2 {
  font-size:clamp(32px,5vw,60px); font-weight:800;
  color:#fff; margin-bottom:16px; line-height:1.1;
}
.cta-content h2 em {
  font-style:italic; font-family:'Source Serif 4',serif;
  font-weight:300; color:var(--blue-lt);
}
.cta-content p {
  font-size:18px; font-weight:300; color:rgba(255,255,255,.7);
  margin-bottom:40px; line-height:1.7;
}
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
footer {
  background:var(--navy-dk);
  padding:72px 52px 32px;
}
.footer-grid {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1.3fr; gap:52px;
  padding-bottom:52px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand img { height:52px; margin-bottom:18px; }
.footer-brand p {
  font-size:13.5px; line-height:1.75;
  color:rgba(255,255,255,.45); max-width:290px;
}
.footer-col h4 {
  font-size:11px; font-weight:700; letter-spacing:.18em;
  text-transform:uppercase; color:#fff; margin-bottom:18px;
}
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:10px; }
.footer-col a {
  font-size:13.5px; color:rgba(255,255,255,.45);
  transition:color .2s;
}
.footer-col a:hover { color:#fff; }
.footer-contact p {
  font-size:13.5px; line-height:1.85;
  color:rgba(255,255,255,.45);
}
.footer-contact a { color:var(--blue-lt); }
.footer-contact a:hover { color:#fff; }
.footer-bottom {
  max-width:1100px; margin:28px auto 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12.5px; color:rgba(255,255,255,.25);
  flex-wrap:wrap; gap:8px;
}
.footer-divider {
  width:32px; height:3px; background:var(--blue);
  margin-bottom:20px;
}

/* ── ANIMATIONS ─────────────────────────────────────────────────────── */
.fade-up {
  opacity:0; transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.fade-up.in { opacity:1; transform:none; }
.fade-up:nth-child(2) { transition-delay:.1s; }
.fade-up:nth-child(3) { transition-delay:.2s; }
.fade-up:nth-child(4) { transition-delay:.3s; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width:1000px) {
  nav { padding:0 16px; }
  .nav-links { gap:14px; }
  .nav-links a { font-size:11px; letter-spacing:.04em; }
  .hero-content { padding:0 24px; }
  .hero-stats { display:none; }
  .services, .about-strip, .why, .proof-strip, .intro-band { padding:64px 24px; }
  .svc-grid { grid-template-columns:1fr; }
  .svc-card.featured { grid-column:span 1; flex-direction:column; }
  .svc-card.featured .svc-card-body { width:100%; background:linear-gradient(0deg,rgba(19,31,58,.98) 40%,transparent); }
  .intro-inner, .about-inner { grid-template-columns:1fr; gap:40px; }
  .about-img { height:360px; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .gallery-strip { grid-template-columns:1fr; height:auto; }
  .gallery-cell { height:220px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .cta-content { padding:64px 24px; }
  .proof-strip { padding:48px 24px; }
  .proof-item { padding:20px 28px; }
}
@media (max-width:600px) {
  .hero h1 { font-size:40px; }
  .footer-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .hero-actions { flex-direction:column; }
}

/* ═══════════════════════════════════════════════════════════════════════
   INNER PAGES — shared components (Services / About / Contact / 404)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── PAGE HEADER (inner hero banner) ─────────────────────────────────── */
.page-header {
  position: relative;
  padding: 170px 52px 84px;
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 65%, var(--navy-md) 140%);
  overflow: hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background-image: repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,.022) 79px 80px);
}
.page-header::after {
  content:''; position:absolute; right:-120px; top:-120px;
  width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(74,144,217,.22), transparent 68%);
}
.page-header-inner { position:relative; z-index:2; max-width:1100px; margin:0 auto; }
.breadcrumb {
  font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color: rgba(255,255,255,.45); margin-bottom:20px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition:color .2s; }
.breadcrumb a:hover { color:#fff; }
.breadcrumb span { color: var(--blue-lt); }
.page-header h1 {
  font-size: clamp(38px, 5.5vw, 66px); font-weight:800; color:#fff;
  line-height:1.04; letter-spacing:-.02em; max-width:880px;
}
.page-header h1 em {
  font-family:'Source Serif 4', serif; font-style:italic; font-weight:300;
  color: var(--blue-lt);
}
.page-header .ph-sub {
  margin-top:22px; max-width:620px; font-size:18px; font-weight:300; line-height:1.7;
  color: rgba(255,255,255,.72);
}

/* ── GENERIC SECTION HELPERS ─────────────────────────────────────────── */
.section { padding: 96px 52px; }
.section.alt { background: var(--off-white); }
.section.navy { background: var(--navy-dk); }
.section-inner { max-width:1100px; margin:0 auto; }
.section-inner.narrow { max-width:820px; }
.lead {
  font-size:20px; font-weight:300; line-height:1.75; color:var(--gray-md);
  max-width:760px; margin-bottom:18px;
}
.lead strong { font-weight:600; color:var(--gray-dk); }
.prose p { font-size:16px; line-height:1.8; color:var(--gray-md); margin-bottom:18px; }
.prose p:last-child { margin-bottom:0; }

/* ── SERVICES PAGE — overview chips ──────────────────────────────────── */
.svc-toc { display:flex; flex-wrap:wrap; gap:12px; margin-top:8px; }
.svc-toc a {
  font-size:13px; font-weight:600; letter-spacing:.02em;
  padding:10px 18px; border:1px solid var(--border); border-radius:2px;
  color:var(--navy); background:#fff; transition:all .2s;
}
.svc-toc a:hover { background:var(--navy); color:#fff; border-color:var(--navy); transform:translateY(-2px); }

/* ── SERVICE DETAIL ROWS ─────────────────────────────────────────────── */
.svc-detail {
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  padding:80px 0; border-top:1px solid var(--gray-lt);
  scroll-margin-top:110px;
}
.svc-detail:first-of-type { border-top:none; }
.svc-detail.flip .svc-detail-media { order:2; }
.svc-detail-media {
  position:relative; aspect-ratio:4/3; overflow:hidden; border-radius:3px;
  background:var(--navy-dk);
}
.svc-detail-media img { width:100%; height:100%; object-fit:cover; }
.svc-detail-media .svc-tag {
  position:absolute; top:18px; left:18px;
  background:rgba(19,31,58,.9); color:#fff; font-size:11px; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; padding:8px 14px;
}
.svc-detail-num {
  font-family:'Source Serif 4', serif; font-style:italic; font-size:18px;
  color:var(--blue); margin-bottom:10px;
}
.svc-detail h2 {
  font-size:clamp(26px,3vw,38px); font-weight:800; color:var(--navy);
  line-height:1.12; letter-spacing:-.01em; margin-bottom:18px;
}
.svc-detail h2 em { font-family:'Source Serif 4',serif; font-style:italic; font-weight:300; color:var(--navy-md); }
.svc-detail p { font-size:16px; line-height:1.8; color:var(--gray-md); margin-bottom:18px; }
.svc-list { list-style:none; display:grid; gap:12px; margin-top:8px; }
.svc-list li { position:relative; padding-left:30px; font-size:15px; line-height:1.55; color:var(--gray-dk); }
.svc-list li::before {
  content:''; position:absolute; left:0; top:7px; width:16px; height:16px;
  background:var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────────────── */
.about-hero-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:64px; align-items:center; }
.about-portrait { position:relative; aspect-ratio:4/5; overflow:hidden; border-radius:3px; background:var(--navy-dk); }
.about-portrait img { width:100%; height:100%; object-fit:cover; }
.about-portrait .about-img-badge { position:absolute; left:24px; bottom:24px; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:48px; }
.value-card { padding:34px 30px; background:#fff; border:1px solid var(--gray-lt); border-radius:3px; transition:transform .3s, box-shadow .3s; }
.value-card:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(31,56,100,.10); }
.value-card .why-icon { width:46px; height:46px; margin-bottom:18px; }
.value-card .why-icon svg { width:24px; height:24px; }
.value-card h3 { font-size:19px; font-weight:800; color:var(--navy); margin-bottom:10px; }
.value-card p { font-size:14.5px; line-height:1.7; color:var(--gray-md); }
.stat-band { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.stat-band .stat { text-align:center; }
.stat-band .stat strong { display:flex; align-items:flex-end; justify-content:center; min-height:1.9em; font-size:clamp(34px,4vw,52px); font-weight:800; color:#fff; line-height:.95; }
.stat-band .stat strong em { font-family:'Source Serif 4',serif; font-style:italic; font-weight:300; color:var(--blue-lt); }
.stat-band .stat span { display:block; margin-top:10px; font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.55); }

/* ── CONTACT PAGE ────────────────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:64px; align-items:start; }
.contact-cards { display:grid; gap:18px; }
.contact-card { display:flex; gap:18px; padding:26px; background:#fff; border:1px solid var(--gray-lt); border-radius:3px; }
.contact-card .cc-icon { flex:0 0 46px; width:46px; height:46px; display:flex; align-items:center; justify-content:center; background:var(--off-white); border-radius:3px; color:var(--blue); }
.contact-card .cc-icon svg { width:22px; height:22px; }
.contact-card h4 { font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--gray-md); margin-bottom:6px; }
.contact-card p, .contact-card a { font-size:16px; line-height:1.6; color:var(--gray-dk); }
.contact-card a:hover { color:var(--blue); }
.form-wrap { background:#fff; border:1px solid var(--gray-lt); border-radius:3px; padding:40px; }
.form-wrap h3 { font-size:22px; font-weight:800; color:var(--navy); margin-bottom:6px; }
.form-wrap .form-sub { font-size:14.5px; color:var(--gray-md); margin-bottom:26px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { margin-bottom:18px; }
.field label { display:block; font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--gray-md); margin-bottom:8px; }
.field input, .field select, .field textarea {
  width:100%; padding:13px 15px; font-family:inherit; font-size:15px; color:var(--gray-dk);
  border:1px solid var(--border); border-radius:2px; background:var(--off-white); transition:border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--blue); background:#fff; }
.field textarea { resize:vertical; min-height:130px; }
.btn-submit {
  width:100%; background:var(--blue); color:#fff; border:none; cursor:pointer;
  padding:16px; font-family:inherit; font-size:14px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  display:inline-flex; align-items:center; justify-content:center; gap:8px; transition:background .2s, transform .15s;
}
.btn-submit:hover { background:#3578C0; transform:translateY(-2px); }
.form-note { margin-top:14px; font-size:12.5px; color:var(--gray-md); text-align:center; }
.map-band { height:340px; background:var(--gray-lt); position:relative; overflow:hidden; }
.map-band iframe { width:100%; height:100%; border:0; filter:grayscale(.2) contrast(1.05); }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { display:grid; gap:0; max-width:820px; margin:0 auto; }
.faq details { border-bottom:1px solid var(--gray-lt); padding:22px 0; }
.faq summary { cursor:pointer; list-style:none; font-size:17px; font-weight:700; color:var(--navy); display:flex; justify-content:space-between; align-items:center; gap:20px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:'+'; font-size:24px; font-weight:400; color:var(--blue); transition:transform .2s; }
.faq details[open] summary::after { transform:rotate(45deg); }
.faq details p { margin-top:14px; font-size:15px; line-height:1.75; color:var(--gray-md); }

/* ── INNER-PAGE RESPONSIVE ───────────────────────────────────────────── */
@media (max-width:1000px) {
  .page-header { padding:140px 24px 64px; }
  .section { padding:64px 24px; }
  .svc-detail { grid-template-columns:1fr; gap:34px; padding:56px 0; }
  .svc-detail.flip .svc-detail-media { order:0; }
  .about-hero-grid { grid-template-columns:1fr; gap:40px; }
  .about-portrait { aspect-ratio:4/3; max-width:480px; }
  .values-grid { grid-template-columns:1fr 1fr; }
  .stat-band { grid-template-columns:1fr 1fr; gap:36px 24px; }
  .contact-grid { grid-template-columns:1fr; gap:40px; }
}
@media (max-width:600px) {
  .values-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .svc-toc { display:none; }
}

/* ── CTA SPLIT (vertical building photo + content) ───────────────────── */
.cta.cta-split { display:grid; grid-template-columns:460px 1fr; align-items:stretch; background:var(--navy-dk); }
.cta-split .cta-photo { position:relative; overflow:hidden; min-height:480px; }
.cta-split .cta-photo img { width:100%; height:100%; object-fit:cover; object-position:center; }
.cta-split .cta-content { text-align:left; margin:0; max-width:640px; padding:88px 72px;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center; }
.cta-split .cta-content .cta-btns { justify-content:flex-start; }
@media (max-width:1000px) {
  .cta.cta-split { grid-template-columns:1fr; }
  .cta-split .cta-photo { min-height:300px; }
  .cta-split .cta-content { text-align:center; align-items:center; padding:56px 24px; }
  .cta-split .cta-content .cta-btns { justify-content:center; }
}

