/* =========================================================
   APEX CONSTRUCTION — Premium Multi-Page Template
   Plain HTML5 + CSS3 + Vanilla JS. No frameworks.
   ---------------------------------------------------------
   REBRAND: Change brand colors, fonts and radius below in
   the :root block. Search "REBRAND" to find quick edits.
   ========================================================= */

:root {
  /* ---- REBRAND: Brand palette ---- */
  --amber: #f59e0b;          /* safety amber / primary accent */
  --amber-dark: #d97706;     /* hover / deeper accent */
  --charcoal: #1f2937;       /* primary dark / headings */
  --charcoal-900: #111827;   /* deepest dark */
  --ink: #374151;            /* body text */
  --muted: #6b7280;          /* secondary text */
  --white: #ffffff;
  --soft: #f7f7f5;           /* soft alt background */
  --line: #e5e7eb;           /* borders / dividers */

  /* ---- REBRAND: Fonts ---- */
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* ---- Design tokens ---- */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(17, 24, 39, .06);
  --shadow-md: 0 12px 30px rgba(17, 24, 39, .10);
  --shadow-lg: 0 24px 60px rgba(17, 24, 39, .16);
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------------- Base / reset ---------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--charcoal);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { color: var(--ink); }

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

ul { list-style: none; }

/* ---------------- Layout helpers ---------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--soft { background: var(--soft); }
.section--dark { background: var(--charcoal); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #cbd5e1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--amber); }

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.06rem; }

.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--amber); color: var(--charcoal-900); }
.btn--primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: var(--charcoal-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--charcoal); }
.btn--light { background: #fff; color: var(--charcoal); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------------- Header / nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--charcoal);
  letter-spacing: -.03em;
}
.logo .logo-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.logo .logo-mark svg { width: 20px; height: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  position: relative;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: var(--charcoal); font-weight: 600; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.nav-cta { margin-left: 6px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--charcoal);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero (home) ---------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 78% -10%, rgba(245, 158, 11, .18), transparent 60%),
    linear-gradient(160deg, var(--charcoal-900), var(--charcoal) 60%, #283545);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  /* subtle blueprint grid overlay */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(900px 500px at 70% 0%, #000, transparent 75%);
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding-block: clamp(70px, 11vw, 130px);
}
.hero h1 { color: #fff; }
.hero h1 span { color: var(--amber); }
.hero p { color: #cbd5e1; font-size: 1.15rem; margin: 22px 0 32px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--amber); }
.hero-badge span { font-size: .86rem; color: #94a3b8; }

/* Hero visual: stacked gradient "site" panels */
.hero-visual {
  position: relative;
  height: 420px;
}
.hero-panel {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-panel-1 {
  inset: 0 60px 90px 0;
  background: linear-gradient(135deg, #475569, #1f2937);
}
.hero-panel-2 {
  right: 0; bottom: 0; width: 62%; height: 58%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: grid; place-items: center; color: var(--charcoal-900); text-align: center;
  padding: 22px;
}
.hero-panel-2 .stat-big { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; line-height: 1; }
.hero-panel-2 .stat-cap { font-weight: 600; font-size: .9rem; }
.hero-panel-1 .panel-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,.07) 2px, transparent 2px);
  background-size: 38px 38px;
}
.hero-panel-1 .panel-crane {
  position: absolute; left: 24px; top: 24px; font-size: 3rem;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}

/* ---------------- Page banner (inner pages) ---------------- */
.banner {
  position: relative;
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(245, 158, 11, .22), transparent 60%),
    linear-gradient(160deg, var(--charcoal-900), var(--charcoal));
  color: #fff;
  padding: clamp(64px, 9vw, 110px) 0 clamp(56px, 8vw, 88px);
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(700px 360px at 80% 0%, #000, transparent 75%);
}
.banner .container { position: relative; }
.banner h1 { color: #fff; max-width: 720px; }
.banner p { color: #cbd5e1; margin-top: 16px; max-width: 620px; font-size: 1.1rem; }
.crumbs { font-size: .9rem; color: #94a3b8; margin-bottom: 16px; font-family: var(--font-head); }
.crumbs a:hover { color: var(--amber); }
.crumbs span { color: var(--amber); }

/* ---------------- Cards / grids ---------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .card-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(245,158,11,.06));
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  color: var(--amber-dark);
}
.card .card-link:hover { gap: 11px; }

/* ---------------- Why-us / feature list ---------------- */
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature .feature-ic {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--charcoal);
  color: var(--amber);
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.feature h3 { font-size: 1.18rem; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .97rem; }

/* ---------------- Stats ---------------- */
.stats { background: var(--charcoal); }
.stats .grid-4 { gap: 20px; }
.stat {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
}
.stat .stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--amber);
  line-height: 1;
}
.stat .stat-label { color: #cbd5e1; margin-top: 10px; font-size: .98rem; }

/* ---------------- Projects ---------------- */
.proj-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 44px;
}
.proj-filter {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  padding: 9px 20px; border-radius: 100px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  cursor: pointer; transition: var(--transition);
}
.proj-filter:hover { border-color: var(--charcoal); }
.proj-filter.active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.proj-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.proj-thumb { position: absolute; inset: 0; transition: transform .5s ease; }
.proj-card:hover .proj-thumb { transform: scale(1.08); }
.proj-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,.88) 5%, rgba(17,24,39,.15) 60%, transparent);
  transition: var(--transition);
}
.proj-body { position: relative; z-index: 2; padding: 26px; width: 100%; }
.proj-tag {
  display: inline-block;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--amber); color: var(--charcoal-900);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.proj-body h3 { color: #fff; font-size: 1.3rem; }
.proj-meta {
  color: #cbd5e1; font-size: .9rem; margin-top: 6px;
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; max-height: 0; transition: var(--transition);
}
.proj-card:hover .proj-meta { opacity: 1; max-height: 60px; }
.proj-meta span { display: inline-flex; align-items: center; gap: 5px; }
.is-hidden { display: none !important; }

/* Gradient thumbnail variants */
.g1 { background: linear-gradient(135deg, #334155, #0f172a); }
.g2 { background: linear-gradient(135deg, #f59e0b, #b45309); }
.g3 { background: linear-gradient(135deg, #1e3a5f, #0c2340); }
.g4 { background: linear-gradient(135deg, #57534e, #292524); }
.g5 { background: linear-gradient(135deg, #d97706, #78350f); }
.g6 { background: linear-gradient(135deg, #475569, #1e293b); }

/* ---------------- Testimonial ---------------- */
.testimonial {
  max-width: 820px; margin-inline: auto; text-align: center;
}
.testimonial .quote-mark { font-family: var(--font-head); font-size: 4rem; color: var(--amber); line-height: .6; }
.testimonial blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin: 18px 0 28px;
}
.testimonial .who { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial .who .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff;
}
.testimonial .who .meta { text-align: left; }
.testimonial .who .meta strong { font-family: var(--font-head); color: var(--charcoal); }
.testimonial .who .meta span { display: block; color: var(--muted); font-size: .9rem; }

/* ---------------- CTA band ---------------- */
.cta-band {
  background:
    radial-gradient(700px 320px at 12% 120%, rgba(245,158,11,.25), transparent 60%),
    linear-gradient(135deg, var(--charcoal-900), var(--charcoal));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 68px);
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 700px; margin-inline: auto; }
.cta-band p { color: #cbd5e1; max-width: 580px; margin: 14px auto 30px; font-size: 1.08rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------------- About-specific ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-visual {
  border-radius: var(--radius);
  min-height: 380px;
  background: linear-gradient(135deg, #334155, #0f172a);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-visual .panel-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,.06) 2px, transparent 2px);
  background-size: 40px 40px;
}
.split-visual .float-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-md);
}
.split-visual .float-badge .fb-ic {
  width: 46px; height: 46px; border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: grid; place-items: center; font-size: 1.4rem;
}
.split-visual .float-badge strong { font-family: var(--font-head); color: var(--charcoal); display: block; }
.split-visual .float-badge span { color: var(--muted); font-size: .88rem; }
.split-visual .big-emoji { position: absolute; top: 26px; left: 26px; font-size: 3.4rem; }

.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.value-card .vc-num { font-family: var(--font-head); font-weight: 800; color: var(--amber); font-size: 1.4rem; }
.value-card h3 { margin: 10px 0 8px; }
.value-card p { color: var(--muted); font-size: .96rem; }

.leader-card { text-align: center; }
.leader-card .avatar-lg {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: #fff;
}
.leader-card h3 { font-size: 1.15rem; }
.leader-card .role { color: var(--amber-dark); font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.leader-card p { color: var(--muted); font-size: .92rem; margin-top: 8px; }

.cert-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 11px 22px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--charcoal);
}
.cert-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); }

/* ---------------- Services-specific ---------------- */
.svc-row {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: var(--transition);
}
.svc-row:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateX(4px); }
.svc-row .svc-ic {
  width: 72px; height: 72px; border-radius: 14px;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-900));
  color: var(--amber); display: grid; place-items: center; font-size: 1.9rem;
}
.svc-row h3 { margin-bottom: 6px; }
.svc-row p { color: var(--muted); font-size: .98rem; max-width: 620px; }
.svc-row .svc-num { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--line); }

.process-step { position: relative; padding-left: 0; }
.process-step .step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--amber); color: var(--charcoal-900);
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  display: grid; place-items: center; margin-bottom: 18px;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: .95rem; }

/* ---------------- Contact-specific ---------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: .9rem; color: var(--charcoal); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--soft);
  transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); background: #fff;
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .err { color: #dc2626; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #dc2626; background: #fef2f2; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: #ecfdf5; color: #065f46; font-size: .94rem; font-family: var(--font-head); font-weight: 600;
  display: none;
}
.form-note.show { display: block; }

.info-card {
  background: var(--charcoal); color: #fff;
  border-radius: var(--radius); padding: 32px; margin-bottom: 22px;
}
.info-card h3 { color: #fff; margin-bottom: 18px; }
.info-line { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.info-line .ic { font-size: 1.3rem; flex: 0 0 auto; }
.info-line strong { font-family: var(--font-head); display: block; color: #fff; font-size: .98rem; }
.info-line span { color: #cbd5e1; font-size: .94rem; }

.hours-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.hours-card h3 { margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:last-child { font-family: var(--font-head); font-weight: 600; color: var(--charcoal); }

.map-placeholder {
  margin-top: 22px;
  border-radius: var(--radius);
  min-height: 240px;
  background:
    radial-gradient(circle at 30% 40%, rgba(245,158,11,.25), transparent 40%),
    linear-gradient(135deg, #334155, #1e293b);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-placeholder .pin { position: relative; z-index: 2; text-align: center; color: #fff; }
.map-placeholder .pin .dot { font-size: 2.6rem; }
.map-placeholder .pin span { font-family: var(--font-head); font-weight: 600; font-size: .94rem; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--charcoal-900); color: #cbd5e1; padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer .logo { color: #fff; }
.footer-about p { color: #94a3b8; font-size: .95rem; margin-top: 16px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a, .footer-col li { color: #94a3b8; font-size: .94rem; line-height: 2.1; transition: color var(--transition); }
.footer-col a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center; font-size: 1.1rem;
}
.footer-social a:hover { background: var(--amber); border-color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .88rem; color: #94a3b8;
}
.footer-bottom a:hover { color: var(--amber); }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
/* Fallback: if JS disabled, show everything */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; order: -1; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 12px 0 0; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; text-align: left; gap: 16px; }
  .svc-row .svc-num { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 18px; }
}
