@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokens — derived from the C&N logo palette ── */
:root {
  --ink:          #0C1C28;   /* deepest dark, replaces near-black */
  --navy:         #1C3D52;   /* brand navy — the "N" in the logo */
  --teal:         #2A5F7A;   /* interactive teal, slightly brighter */
  --steel:        #607D8F;   /* mid gray-blue — the "C" in the logo */
  --sky:          #A8C4D8;   /* light steel blue — the "&" in the logo */
  --cream:        #F4F7FA;   /* cool off-white background */
  --sand:         #E4ECF2;   /* cool light section background */
  --white:        #FFFFFF;
  --border:       #C8D8E4;
  --dark-bg:      #0C1C28;
  --dark-surface: #132334;
  --accent:       #1C3D52;   /* primary brand = navy */
  --accent-hover: #0F2A38;
  --accent-pale:  #E0EDF5;
  --accent-light: #A8C4D8;   /* sky blue for use on dark backgrounds */
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal.visible  { opacity: 1; transform: translateY(0); }

/* ── Navigation — light background so logo shows in full color ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 28px rgba(12, 28, 40, 0.1);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-brand { text-decoration: none; display: flex; align-items: center; }
.nav-logo {
  height: 56px;
  width: auto;
  display: block;
  /* No filter — logo displays in its actual colors on the light nav */
}

.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--navy);
  transition: right 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { right: 0; }

.btn-nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  transition: background 0.2s !important;
}
.btn-nav-cta:hover { background: var(--teal) !important; color: var(--white) !important; }
.btn-nav-cta::after { display: none !important; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-bg);
}
.hero-parallax-bg {
  position: absolute;
  inset: -20%;
  background-image: url(photos/hero-driveway.jpg);
  background-size: cover;
  background-position: center 60%;
  will-change: transform;
  filter: contrast(1.08) saturate(0.75) brightness(0.55);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,28,40,0.55) 0%, rgba(12,28,40,0.45) 50%, rgba(12,28,40,0.7) 100%),
    linear-gradient(to right, rgba(12,28,40,0.5) 0%, transparent 60%);
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,196,216,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,196,216,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-deco-text {
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(168,196,216,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.hero-left-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--sky) 30%, var(--sky) 70%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  padding-top: 76px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--sky); }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  max-width: 800px;
}
.hero h1 em { color: var(--sky); font-style: normal; }

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(168,196,216,0.7);
  max-width: 500px;
  margin-bottom: 2.75rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  border: 1.5px solid var(--navy);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28,61,82,0.35);
}

.btn-ghost {
  color: var(--sky);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 1rem 0;
}
.btn-ghost:hover { color: var(--white); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(168,196,216,0.1);
}
.hero-stat { padding: 0 2rem 0 0; }
.hero-stat + .hero-stat { padding-left: 2rem; border-left: 1px solid rgba(168,196,216,0.1); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num em { color: var(--sky); font-style: normal; }
.stat-label { font-size: 0.675rem; color: var(--steel); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.5rem; }

/* ── Marquee ── */
.marquee {
  background: var(--navy);
  padding: 0.875rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(168,196,216,0.8);
  padding: 0 2.5rem;
}
.marquee-track span.dot { padding: 0; color: rgba(168,196,216,0.3); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Shared Layout ── */
section { padding: 7rem 5%; }
.container { max-width: 1280px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.section-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--teal); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.section-title.light { color: var(--white); }
.section-title em { color: var(--teal); font-style: italic; }

.section-body { font-size: 1rem; color: var(--steel); max-width: 480px; line-height: 1.8; font-weight: 300; }
.section-body.light { color: var(--sky); }

/* ── Services Section ── */
.services-section { background: var(--cream); }
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.service-card {
  background: var(--cream);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: var(--white); }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: -webkit-text-stroke 0.3s;
}
.service-card:hover .service-num { -webkit-text-stroke: 1px var(--sand); }
.service-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--steel); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.service-card:hover .service-icon { border-color: var(--navy); background: var(--accent-pale); }
.service-card:hover .service-icon svg { stroke: var(--navy); }
.service-card h3 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.8375rem; color: var(--steel); line-height: 1.7; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s;
}
.service-card:hover .card-link { opacity: 1; transform: translateX(0); }

/* ── Split Feature Section ── */
.split-feature { background: var(--dark-bg); padding: 0; }
.split-feature-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.split-text {
  padding: 7rem 5% 7rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
  padding-right: 5rem;
}
.split-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
}
.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,28,40,0.6) 0%, rgba(12,28,40,0.2) 100%);
}
.split-visual-deco {
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(168,196,216,0.08);
  line-height: 1;
  user-select: none;
}
.split-feature-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.split-feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(168,196,216,0.07);
}
.split-feature-list li:last-child { border-bottom: none; }
.split-feat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sky);
  flex-shrink: 0;
  line-height: 1.4;
}
.split-feat-title { font-size: 0.9375rem; font-weight: 600; color: var(--white); }
.split-feat-desc { font-size: 0.8125rem; color: rgba(168,196,216,0.6); margin-top: 0.2rem; line-height: 1.6; }

/* ── Stats Section ── */
.stats-section { background: var(--dark-surface); padding: 5.5rem 5%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-block { text-align: center; padding: 2.5rem; border-right: 1px solid rgba(168,196,216,0.07); }
.stat-block:last-child { border-right: none; }
.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-big em { color: var(--sky); font-style: normal; }
.stat-desc { font-size: 0.7rem; color: var(--steel); text-transform: uppercase; letter-spacing: 0.16em; margin-top: 0.6rem; }

/* ── Projects Preview ── */
.certs-section { background: var(--sand); padding: 4rem 5%; }
.certs-inner { display: flex; flex-direction: column; gap: 1.5rem; }
.certs-row { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.certs-badge { height: 96px; width: auto; flex-shrink: 0; }
.certs-text { font-size: 0.95rem; line-height: 1.7; color: var(--navy); font-weight: 300; max-width: 640px; }
.certs-text strong { font-weight: 600; }

.projects-preview { background: var(--cream); }
.projects-preview-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.projects-preview-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.25rem; }

.proj-card { position: relative; border-radius: 4px; overflow: hidden; background: var(--navy); }
.proj-card-tall { aspect-ratio: 3/4; }
.proj-card-sq   { aspect-ratio: 4/5; }
.proj-card-bg { position: absolute; inset: 0; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.proj-card:hover .proj-card-bg { transform: scale(1.05); }
.proj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,28,40,0.95) 0%, rgba(12,28,40,0.2) 55%, transparent 100%);
}
.proj-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.proj-card-type { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--sky); font-weight: 600; margin-bottom: 0.4rem; display: block; }
.proj-card-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.proj-card-loc { font-size: 0.75rem; color: rgba(168,196,216,0.6); margin-top: 0.4rem; }
.proj-card-arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(168,196,216,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  opacity: 0;
  transform: rotate(-45deg) scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
}
.proj-card:hover .proj-card-arrow { opacity: 1; transform: rotate(0deg) scale(1); }

/* Project card — photo backgrounds */
.proj-card-bg {
  background-size: cover;
  background-position: center;
  filter: contrast(1.08) saturate(0.82) brightness(0.92);
}

/* Fallback solid colours if photo missing */
.bg-driveway  { background-color: #1C3D52; }
.bg-patio     { background-color: #1A3540; }
.bg-excavate  { background-color: #132030; }
.bg-ada       { background-color: #1A2C3A; }
.bg-lights    { background-color: #152535; }
.bg-extend    { background-color: #0F1E2C; }

.proj-bg-pattern { display: none; }

/* ── Quote Section ── */
.quote-section { background: var(--sand); padding: 7rem 5%; text-align: center; }
.quote-mark-lg {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--navy);
  line-height: 0.5;
  display: block;
  margin-bottom: 2rem;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-style: italic;
}
.quote-attr { font-size: 0.75rem; font-weight: 600; color: var(--steel); letter-spacing: 0.15em; text-transform: uppercase; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-deco {
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(168,196,216,0.05);
  line-height: 1;
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-banner p { font-size: 1rem; color: var(--sky); margin-bottom: 2.5rem; position: relative; font-weight: 300; }
.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 1rem 2.5rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

/* ── Footer ── */
footer { background: var(--ink); padding: 5rem 5% 2.5rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(168,196,216,0.07);
  margin-bottom: 2rem;
}
.footer-brand { }

/* Footer logo sits in a small white pill so the logo colors show */
.footer-logo-wrap {
  display: inline-block;
  background: var(--white);
  padding: 0.5rem 0.875rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.footer-logo {
  height: 48px;
  width: auto;
  display: block;
}

.footer-tagline { font-size: 0.8375rem; color: rgba(168,196,216,0.4); line-height: 1.75; max-width: 260px; font-weight: 300; }
.footer-col h4 { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(168,196,216,0.35); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.8125rem; color: rgba(168,196,216,0.45); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-link { display: flex; flex-direction: column; margin-bottom: 0.75rem; }
.footer-contact-link a { font-size: 0.8125rem; color: rgba(168,196,216,0.45); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-contact-link a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; color: rgba(168,196,216,0.2); }

/* ── Inner Page Hero ── */
.page-hero { background: var(--ink); padding: 10rem 5% 5rem; position: relative; overflow: hidden; }
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,196,216,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,196,216,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-hero-deco {
  position: absolute;
  right: 5%; top: 50%; transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(168,196,216,0.05);
  line-height: 1;
  user-select: none;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.06;
}
.page-hero p { font-size: 1.0625rem; color: rgba(168,196,216,0.55); max-width: 540px; line-height: 1.8; font-weight: 300; }

/* ── Services Detail Page ── */
.services-detail { background: var(--cream); padding-bottom: 6rem; }
.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
  margin-top: 4rem;
}
.service-detail-card {
  background: var(--cream);
  display: flex;
  min-height: 440px;
  transition: background 0.3s;
}
.service-detail-card:hover { background: var(--white); }
.service-detail-card:nth-child(even) { flex-direction: row-reverse; }
.service-detail-photo {
  width: 44%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.06) saturate(0.85) brightness(0.93);
}
.service-detail-content {
  flex: 1;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.service-detail-card .service-icon {
  width: 52px; height: 52px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}
.service-detail-card:hover .service-icon { border-color: var(--navy); }
.service-detail-card .service-icon svg { width: 22px; height: 22px; stroke: var(--steel); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-detail-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}
.service-detail-card p { font-size: 0.9375rem; color: var(--steel); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300; }
.service-detail-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-detail-card ul li { font-size: 0.875rem; color: var(--ink); display: flex; align-items: flex-start; gap: 0.75rem; }
.service-detail-card ul li::before { content: ''; width: 5px; height: 5px; background: var(--navy); border-radius: 50%; flex-shrink: 0; margin-top: 0.45rem; }

/* ── Projects Gallery ── */
.projects-gallery { background: var(--cream); }
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 3rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--steel);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.projects-masonry { columns: 3; column-gap: 1.25rem; margin-top: 2.5rem; }
.proj-masonry-card { break-inside: avoid; margin-bottom: 1.25rem; border-radius: 4px; overflow: hidden; position: relative; background: var(--navy); display: block; }
.proj-masonry-img {
  width: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  filter: contrast(1.06) saturate(0.85) brightness(0.95);
}
.proj-masonry-img.tall  { aspect-ratio: 3/4; }
.proj-masonry-img.wide  { aspect-ratio: 5/3; }
.proj-masonry-img.sq    { aspect-ratio: 1/1; }
.proj-masonry-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,28,40,0.92) 0%, transparent 55%); display: flex; align-items: flex-end; }
.proj-masonry-info { padding: 1.5rem; }
.proj-masonry-type { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--sky); font-weight: 600; display: block; margin-bottom: 0.3rem; }
.proj-masonry-name { font-family: 'Playfair Display', serif; font-size: 1.0625rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.proj-masonry-loc { font-size: 0.72rem; color: rgba(168,196,216,0.6); margin-top: 0.25rem; }
.proj-bg-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: 0.06; color: var(--white); }

/* ── Contact Page ── */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 5rem; margin-top: 4rem; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 800; color: var(--ink); margin-bottom: 0.875rem; letter-spacing: -0.02em; }
.contact-info > p { font-size: 0.9375rem; color: var(--steel); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
.contact-detail { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--white); transition: border-color 0.2s; }
.contact-detail:hover .contact-detail-icon { border-color: var(--navy); }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--steel); font-weight: 600; }
.contact-detail-value { font-size: 0.9375rem; color: var(--ink); font-weight: 500; margin-top: 0.2rem; }
.contact-detail-value a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--navy); }
.service-area-badge { background: var(--white); border: 1px solid var(--border); padding: 1.5rem; margin-top: 2.5rem; }
.service-area-badge h4 { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--navy); font-weight: 600; margin-bottom: 0.5rem; }
.service-area-badge p { font-size: 0.875rem; color: var(--steel); line-height: 1.7; font-weight: 300; }
.contact-map { margin-top: 2rem; border: 1px solid var(--border); overflow: hidden; }

.contact-form { background: var(--white); padding: 3rem; border: 1px solid var(--border); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 800; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.contact-form .form-intro { font-size: 0.875rem; color: var(--steel); margin-bottom: 2rem; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.9375rem; font-family: inherit; color: var(--ink);
  background: var(--cream); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; background: var(--navy); color: var(--white); padding: 1.0625rem; font-weight: 700; font-size: 0.8125rem; border: none; cursor: pointer; font-family: inherit; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s; }
.btn-submit:hover { background: var(--teal); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-bottom: 1px solid rgba(168,196,216,0.06); }
  .stat-block:nth-child(2) { border-right: none; }
  .projects-masonry { columns: 2; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .services-intro { grid-template-columns: 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .split-feature-inner { grid-template-columns: 1fr; }
  .split-visual { display: none; }
  .split-text { margin: 0; padding: 5rem 5%; max-width: 100%; }
  .projects-preview-grid { grid-template-columns: 1fr; }
  .projects-preview-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .service-detail-card,
  .service-detail-card:nth-child(even) { flex-direction: column; }
  .service-detail-photo { width: 100%; height: 260px; }
  .service-detail-content { padding: 2.5rem 1.75rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.75rem; }
  .projects-masonry { columns: 1; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block { border-right: none; }
}
