/* ============================================================
   Salter & Sons Electric  -  multi-page marketing site
   ============================================================ */

:root {
  /* Brand palette */
  --navy:        #003277;
  --navy-deep:   #001f4d;
  --navy-soft:   #14437c;
  --orange:      #ED780E;
  --orange-deep: #c0610b;
  --cream:       #faf7f2;
  --paper:       #ffffff;
  --ink:         #1a1a1a;
  --ink-soft:    #2b2f37;
  --muted:       #6b7280;
  --divider:     #e5e7eb;

  /* Type */
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script:  "Playfair Display", Georgia, serif;
  --fs-h1:        clamp(2.6rem, 5.4vw, 4.2rem);
  --fs-h2:        clamp(1.9rem, 3.4vw, 2.6rem);
  --fs-h3:        1.25rem;

  /* Layout */
  --container:    1180px;
  --section-pad:  clamp(60px, 8vw, 110px);
  --radius:       14px;
  --radius-sm:    8px;

  /* Motion */
  --ease:         cubic-bezier(.2,.7,.2,1);
}

/* ------------ Reset ------------ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.15; margin: 0 0 0.6em; color: var(--navy-deep); letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.center { text-align: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 14px;
}
.eyebrow-center { text-align: center; }
.eyebrow-light  { color: #FFB47A; }
.text-light     { color: #fff; }
.section-sub {
  max-width: 720px;
  margin: 0 auto 56px;
  color: var(--muted);
  font-size: 1.05rem;
}
.accent-cursive {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
}

/* ============================================================
   SCROLL REVEAL  -  start invisible, fade up when in view
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-stagger.is-visible > *           { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(237,120,14,0.55);
}
.btn-primary:hover {
  background: var(--orange-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(237,120,14,0.65);
}
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

/* ============================================================
   HEADER & NAV   (big logo, modern square-corner CTA)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
  transition: padding .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px -22px rgba(0,31,77,0.45);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  transition: padding .25s var(--ease);
}
.is-scrolled .nav-row {
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  transition: transform .25s var(--ease);
}
.nav-brand:hover { transform: scale(1.03); }
.nav-logo {
  height: 72px;
  width: auto;
  transition: height .25s var(--ease);
}
.is-scrolled .nav-logo { height: 54px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.is-current {
  color: var(--navy);
  font-weight: 600;
}
.nav-links a.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Get-a-Quote CTA.  Large filled orange pill, text only, properly centered. */
.nav-cta {
  padding: 22px 60px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--orange);
  color: #fff;
  border: 0;
  line-height: 1.2;
  display: inline-block;
  text-align: center;
  margin-left: 12px;
  min-width: 200px;          /* enforce minimum width so the pill is unmistakably big */
  box-shadow: 0 10px 24px -6px rgba(237,120,14,0.6);
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-cta::after { content: none; }     /* no arrow */
.nav-cta:hover {
  background: var(--orange-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(237,120,14,0.65);
}
.nav-cta.is-current {
  background: var(--orange-deep);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 1px; }

/* ============================================================
   HERO  (with per-page photo variants)
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(80px, 14vw, 160px) 0 clamp(70px, 12vw, 140px);
  overflow: hidden;
  color: #fff;
}
.hero-photo {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) brightness(0.85);   /* lighter so the photo actually shows */
  transform: scale(1.05);
  transition: transform 1.2s var(--ease);
}
.hero:hover .hero-photo { transform: scale(1.08); }

/* Per-page hero photos — every photo unique across the site, no repeats. */
.hero-photo--home     { background-image: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1800&q=80&auto=format&fit=crop'); }   /* electrician with tools */
.hero-photo--about    { background-image: url('https://images.unsplash.com/photo-1551023166-1f508088028e?w=1800&q=80&auto=format&fit=crop'); }   /* circuit breakers on wall, no people/brands */
.hero-photo--team     { background-image: url('https://images.unsplash.com/photo-1591375275624-c4c8c40e83a6?w=1800&q=80&auto=format&fit=crop'); }   /* clean electrician working at panel, no brands */
.hero-photo--services { background-image: url('https://images.unsplash.com/photo-1635335874521-7987db781153?w=1800&q=80&auto=format&fit=crop'); }   /* wires plugged into switch box */
.hero-photo--contact  { background-image: url('https://images.unsplash.com/photo-1565608438257-fac3c27beb36?w=1800&q=80&auto=format&fit=crop'); }   /* multimeter voltage testing */
.hero-photo--values   { background-image: url('https://images.unsplash.com/photo-1668097613572-40b7c11c8727?w=1800&q=80&auto=format&fit=crop'); }   /* solar / panel work, principles */

/* Lighter overlay -- enough contrast to keep text readable, light enough
   to let the photo actually be visible.  Asymmetric so the LEFT side
   (where text sits) is slightly darker. */
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(0,31,77,0.78) 0%, rgba(0,31,77,0.55) 45%, rgba(0,31,77,0.25) 100%),
    radial-gradient(60% 80% at 85% 25%, rgba(237,120,14,0.15) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  max-width: 900px;
}
.hero-title {
  font-size: var(--fs-h1);
  color: #fff;
  margin: 8px 0 26px;
  font-weight: 800;
  line-height: 1.05;
}
.hero-sub {
  font-size: 1.18rem;
  color: #f3f4f6;
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: #ffd7b0;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-badges li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}


/* Inner-page hero  (smaller, no CTA stack) */
.hero-sm {
  padding: clamp(70px, 8vw, 120px) 0 clamp(60px, 6vw, 90px);
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.hero-sm .hero-photo { filter: saturate(0.95) brightness(0.85); }
.hero-sm .hero-title { margin-bottom: 14px; }
.hero-sm .hero-sub  { margin-bottom: 0; max-width: 680px; }

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--divider);
}
.intro-headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 980px;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.3;
  margin: 0;
}

/* ============================================================
   TWO-COL  (about, area, contact)
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.two-col-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px -30px rgba(0,31,77,0.35);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.two-col-photo img:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -30px rgba(0,31,77,0.5);
}
.two-col-text h2 { margin-top: 0; }
.lede {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  margin-top: 22px;
}
.section-about,
.section-area,
.section-contact {
  padding: var(--section-pad) 0;
}
.section-area { background: var(--cream); }

/* ============================================================
   WHY US
   ============================================================ */
.section-why {
  padding: var(--section-pad) 0;
  background: var(--paper);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.why-card {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.why-card::after {
  content: "→";
  position: absolute;
  right: 24px; bottom: 22px;
  color: var(--orange);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.why-card:hover::after { opacity: 1; transform: translateX(0); }
a.why-heading-link {
  text-decoration: none;
  color: inherit;
  transition: color .2s ease;
}
a.why-heading-link:hover { color: var(--orange); }
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 24px 50px -25px rgba(0,31,77,0.4);
}
.why-icon {
  width: 82px; height: 82px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  margin-bottom: 22px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.why-card:hover .why-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}
.why-icon svg { width: 40px; height: 40px; fill: currentColor; }
.why-card h3 { margin-bottom: 10px; }
.why-card p  { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

/* ============================================================
   SERVICES   (cards are clickable links)
   ============================================================ */
.section-services {
  padding: var(--section-pad) 0;
  background: var(--paper);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.service-grid.is-three-col { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: var(--paper);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--divider);
  transition: border-color .3s var(--ease), transform .25s var(--ease), box-shadow .3s var(--ease);
  display: block;
  color: inherit;
  position: relative;
}
.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-5px);
  box-shadow: 0 16px 34px -18px rgba(0,31,77,0.45);
  color: inherit;
}
.service-card::after {
  content: "→";
  position: absolute;
  right: 20px; bottom: 16px;
  font-size: 1.05rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  font-weight: 700;
}
.service-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.service-icon {
  display: inline-flex;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.05);
}
.service-icon svg { width: 36px; height: 36px; fill: currentColor; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--navy-deep); }
.service-card p  { margin: 0; color: var(--muted); font-size: 0.93rem; }

.section-more-link {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   PROCESS  (clean navy gradient band, no photo)
   ============================================================ */
.section-process {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: #e6ecf5;
}
.section-process h2 { color: #fff; }
.process-list {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-list li {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}
.process-list li:hover {
  border-color: var(--orange);
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.process-num {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--orange);
  font-weight: 600;
  font-style: italic;
}
.process-list h3 { color: #fff; margin: 14px 0 6px; font-size: 1.1rem; }
.process-list p  { color: #d9def0; margin: 0; font-size: 0.95rem; }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.section-team {
  padding: var(--section-pad) 0;
}
.team-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.team-intro p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 30px 60px -30px rgba(0,31,77,0.4);
}
.team-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo.is-placeholder svg {
  width: 88px; height: 88px;
  color: rgba(255,255,255,0.55);
}
.team-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0;
}
.team-role {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin: 0;
}
.team-bio {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 8px 0 0;
}
.team-specialty {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--divider);
  font-size: 0.85rem;
  color: var(--muted);
}
.team-specialty strong {
  display: block;
  color: var(--navy);
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-values {
  margin-top: 70px;
  background: var(--cream);
  padding: 50px;
  border-radius: var(--radius);
}
.team-values h3 { margin-top: 0; }
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 40px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.values-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.values-list svg {
  width: 22px; height: 22px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}
.values-list strong {
  display: block;
  color: var(--navy-deep);
  font-size: 1rem;
  margin-bottom: 4px;
}
.values-list span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ============================================================
   CTA STRIP — base styling, per-page photo via modifier classes
   ============================================================ */
.section-cta {
  padding: clamp(70px, 8vw, 110px) 0;
  background: linear-gradient(120deg, rgba(0,31,77,0.95), rgba(0,31,77,0.85)), var(--navy-deep);
  color: #fff;
  text-align: center;
}
.section-cta--home    { background: linear-gradient(120deg, rgba(0,31,77,0.82), rgba(0,31,77,0.65)), url('https://images.unsplash.com/photo-1717667745852-a5bd6876c1de?w=1800&q=80&auto=format&fit=crop') center/cover; }
.section-cta--about   { background: linear-gradient(120deg, rgba(0,31,77,0.82), rgba(0,31,77,0.65)), url('https://images.unsplash.com/photo-1595856619767-ab739fa7daae?w=1800&q=80&auto=format&fit=crop') center/cover; }
.section-cta--team    { background: linear-gradient(120deg, rgba(0,31,77,0.82), rgba(0,31,77,0.65)), url('https://images.unsplash.com/photo-1636218685495-8f6545aadb71?w=1800&q=80&auto=format&fit=crop') center/cover; }
.section-cta--services{ background: linear-gradient(120deg, rgba(0,31,77,0.82), rgba(0,31,77,0.65)), url('https://images.unsplash.com/photo-1759542877886-39d81e8f2eee?w=1800&q=80&auto=format&fit=crop') center/cover; }
.section-cta--contact { background: linear-gradient(120deg, rgba(0,31,77,0.82), rgba(0,31,77,0.65)), url('https://images.unsplash.com/photo-1652715648725-c84d5035e9a2?w=1800&q=80&auto=format&fit=crop') center/cover; }
.section-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-cta p  { color: #f0f4fb; max-width: 640px; margin: 0 auto 32px; font-size: 1.08rem; }
.cta-buttons {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   VALUES PAGE  (expanded principles with anchored sections)
   ============================================================ */
.section-values {
  padding: var(--section-pad) 0;
}
.values-intro {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.values-intro p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.value-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: 50px 0;
  border-top: 1px solid var(--divider);
  scroll-margin-top: 120px;       /* offset for sticky header on jump-to-anchor */
}
.value-row:last-child {
  border-bottom: 1px solid var(--divider);
}
.value-num {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
.value-body h2 {
  margin: 0 0 0.6em;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}
.value-body p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}
.value-body p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .value-row { grid-template-columns: 1fr; gap: 12px; padding: 40px 0; }
}

/* ============================================================
   AREA  (areas served)
   ============================================================ */
.area-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.area-list li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.area-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0; top: 11px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact { background: var(--paper); }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--divider);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.contact-form label span { margin-bottom: 6px; letter-spacing: 0.03em; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-weight: 400;
  padding: 12px 14px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(0,50,119,0.12);
}
.contact-form .btn.full { grid-column: 1 / -1; justify-content: center; }
.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.contact-info-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 0.98rem;
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list .label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 700;
}

/* ============================================================
   FOOTER  (with Get-in-Touch column)
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: #cbd5e1;
  padding: 60px 0 22px;
  font-size: 0.93rem;
}
.footer-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo { height: 84px; margin-bottom: 16px; }
.footer-brand p { color: #aab5cc; margin: 0; max-width: 320px; }
.footer-row h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-nav { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.footer-nav a { color: #cbd5e1; }
.footer-nav a:hover { color: var(--orange); }
.footer-credentials p { margin: 0 0 6px; color: #cbd5e1; }
.footer-contact a {
  color: #fff;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  transition: color .2s ease, transform .2s ease;
}
.footer-contact a:hover { color: var(--orange); transform: translateX(2px); }
.footer-contact .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8aa0c2;
  margin: 14px 0 4px;
  font-weight: 700;
}
.footer-contact .label:first-child { margin-top: 0; }

.footer-legal {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  color: #94a3b8;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-logo       { height: 56px; }
  .is-scrolled .nav-logo { height: 46px; }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .service-grid,
  .service-grid.is-three-col { grid-template-columns: repeat(2, 1fr); }
  .process-list   { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-row     { grid-template-columns: 1fr 1fr; }
  .two-col        { grid-template-columns: 1fr; }
  .two-col-photo  { order: -1; }
  .contact-form   { grid-template-columns: 1fr; }
  .values-list    { grid-template-columns: 1fr; }
  .team-values    { padding: 32px 24px; }
}

@media (max-width: 720px) {
  .nav-logo { height: 50px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    padding: 14px;
    margin-top: 8px;
    gap: 10px;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-cta { align-self: stretch; text-align: center; justify-content: center; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .why-grid, .service-grid, .service-grid.is-three-col, .process-list { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; }
  .area-list  { grid-template-columns: 1fr; }
  .contact-info-list li { grid-template-columns: 1fr; gap: 2px; }
}
