/* ============================================================
   Shieldguard Specialist — light theme · red + white + warm grays
   Modern corporate sans · mixed case
   ============================================================ */

:root {
  /* Color */
  --red: #a31621;
  --red-2: #8a0f1b;
  --red-3: #c41e2a;
  --red-soft: #fdf2f3;
  --red-line: #f1d6d9;

  --bg: #ffffff;
  --bg-soft: #faf8f5;
  --bg-warm: #f4efe9;
  --bg-warmer: #ece5db;

  --ink: #1a1714;
  --ink-2: #3a342e;
  --ink-3: #6b6356;
  --ink-4: #9a9285;

  --line: rgba(26, 23, 20, 0.10);
  --line-strong: rgba(26, 23, 20, 0.18);

  --shadow-sm: 0 1px 2px rgba(26, 23, 20, 0.06);
  --shadow-md: 0 8px 24px -10px rgba(26, 23, 20, 0.14);
  --shadow-lg: 0 24px 60px -24px rgba(26, 23, 20, 0.22);
  --shadow-red: 0 18px 40px -16px rgba(163, 22, 33, 0.32);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  --max: 1240px;

  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(36px, 5.2vw, 64px); font-weight: 800; letter-spacing: -0.022em; }
h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

p { margin: 0 0 1em; text-wrap: pretty; color: var(--ink-2); }
.lead { font-size: 19px; color: var(--ink-2); max-width: 64ch; line-height: 1.55; }
.muted { color: var(--ink-3); }
.accent { color: var(--red); }
.orange { color: #F26C1F; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-2); }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-soft); }

.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover { background: #1ebe5c; }

.btn-lg { padding: 18px 28px; font-size: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-top {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.nav-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,0.85);
}
.nav-top a { color: rgba(255,255,255,0.85); }
.nav-top a:hover { color: #fff; }
.nav-top .left, .nav-top .right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.nav-top .right .sep { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.nav-top .item { display: inline-flex; align-items: center; gap: 8px; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li { list-style: none; position: relative; }
.nav-links a.link {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a.link:hover, .nav-links a.link.active { color: var(--red); background: var(--red-soft); }

.nav-has-sub > a::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.7;
}
.nav-sub {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  list-style: none;
  margin: 0;
}
.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-sub li { list-style: none; }
.nav-sub a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-sub a:hover, .nav-sub a.active { background: var(--red-soft); color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span { width: 18px; height: 2px; background: var(--ink); display: block; }

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px 0 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu .wrap > a, .mobile-menu .wrap > details {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
}
.mobile-menu details summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu details summary::-webkit-details-marker { display: none; }
.mobile-menu details[open] summary::after { transform: rotate(180deg); }
.mobile-menu details summary::after { content: "▾"; transition: transform 0.2s ease; }
.mobile-menu details a {
  display: block;
  padding: 10px 0 10px 16px;
  font-weight: 500;
  color: var(--ink-2);
}
.mobile-menu .cta-row { display: flex; gap: 10px; margin-top: 16px; }
.mobile-menu .cta-row .btn { flex: 1; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-bg-shapes .blob-a {
  position: absolute;
  top: -120px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(163,22,33,0.10), transparent 70%);
  filter: blur(20px);
}
.hero-bg-shapes .blob-b {
  position: absolute;
  bottom: -200px; left: -150px;
  width: 620px; height: 620px;
  background: radial-gradient(closest-side, rgba(163,22,33,0.06), transparent 70%);
  filter: blur(30px);
}
.hero-bg-shapes .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,23,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,23,20,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(800px 500px at 60% 40%, #000, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-inner.hero-centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero-inner.hero-centered .hero-actions { justify-content: center; }
.hero-inner.hero-centered .lead { margin-left: auto; margin-right: auto; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
}
.hero h1 .red { color: var(--red); }
.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-stat .num .accent { color: var(--red); }
.hero-stat .lbl {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 10px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,23,20,0.6) 100%);
}
.hero-visual .badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.96);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.hero-visual .badge .lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.hero-visual .badge .ttl {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

/* Hero abstract (for Home, About) */
.hero-abstract {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.hero-shield {
  position: relative;
  width: 86%;
  aspect-ratio: 1/1.1;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  clip-path: polygon(50% 0, 100% 18%, 100% 60%, 50% 100%, 0 60%, 0 18%);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-shield::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255,255,255,0.25);
  clip-path: polygon(50% 0, 100% 18%, 100% 60%, 50% 100%, 0 60%, 0 18%);
}
.hero-shield::after {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.18) 50%, transparent 55%);
}
.hero-shield .mark {
  position: relative;
  z-index: 2;
  width: 56%;
}
.hero-shield .mark img { width: 100%; filter: brightness(0) invert(1); }
/* Hero brand mark (swoosh logo) — replaces the red hexagon shield */
.hero-logo {
  position: relative;
  z-index: 0;                 /* sits behind the floating tags so it doesn't cover them */
  width: 86%;                 /* scales with the hero-abstract so it never clips */
  display: grid;
  place-items: center;
}
.hero-logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.20));
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;                 /* tags render above the logo */
}
.hero-orbit .tag {
  position: absolute;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-orbit .tag .pip {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--red);
}
.hero-orbit .tag.t1 { top: 4%; left: -10%; }
.hero-orbit .tag.t2 { top: 22%; right: -10%; }
.hero-orbit .tag.t3 { top: 46%; left: -14%; }
.hero-orbit .tag.t4 { top: 54%; right: -8%; }
.hero-orbit .tag.t5 { bottom: 12%; left: -4%; }
.hero-orbit .tag.t6 { bottom: -2%; right: -2%; max-width: 240px; line-height: 1.3; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.trust-list {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
}
.trust-item svg {
  width: 20px; height: 20px;
  color: var(--red);
  flex-shrink: 0;
}

/* ---------- Sections ---------- */
section { padding: 100px 0; position: relative; }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 .red { color: var(--red); }

/* ---------- Services grid (home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.svc-card .photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-card .photo {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.svc-card .photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,23,20,0.35) 100%);
}
.svc-card .photo .num {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  padding: 4px 10px;
  background: rgba(0,0,0,0.4);
  border-radius: var(--r-pill);
}
.svc-card .body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.svc-card h3 { color: var(--ink); }
.svc-card p { color: var(--ink-3); font-size: 15px; margin: 0; }
.svc-card .bullets {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-card .bullets li {
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.svc-card .bullets li::before {
  content: "";
  margin-top: 8px;
  width: 5px; height: 5px;
  background: var(--red);
  flex-shrink: 0;
}
.svc-card .link {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.01em;
}
.svc-card .link .arrow { transition: transform 0.2s ease; }
.svc-card:hover .link .arrow { transform: translateX(4px); }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.why-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.why-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,23,20,0.6) 100%);
}
.why-photo .stamp {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
}
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.why-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.why-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.why-num {
  font-weight: 800;
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.why-item h3 { margin: 0 0 6px; font-size: 18px; }
.why-item p { margin: 0; color: var(--ink-3); font-size: 14px; line-height: 1.55; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-right: 0;
  position: relative;
  transition: background 0.2s ease;
}
.process-step:last-child { border-right: 1px solid var(--line); }
.process-step:hover { background: var(--bg-soft); }
.process-step .step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 4px 10px;
  background: var(--red-soft);
  border-radius: var(--r-pill);
}
.process-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.process-step p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item .q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.faq-item .toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  color: var(--red);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.faq-item.open .toggle { transform: rotate(45deg); background: var(--red); color: #fff; border-color: var(--red); }
.faq-item .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item.open .a { max-height: 800px; margin-top: 12px; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--red);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: #fff;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; max-width: 18ch; }
.cta-strip p { color: rgba(255,255,255,0.9); margin: 12px 0 0; font-size: 17px; }
.cta-strip .btn-primary { background: #fff; color: var(--red); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }
.cta-strip .btn-primary:hover { background: var(--bg-soft); }
.cta-strip .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-strip .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
}
.contact-info-card h3 { color: #fff; margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.contact-info-block {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.contact-info-block:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-info-block .ic {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
}
.contact-info-block .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-info-block .val {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
}
.contact-info-block .sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 700;
}
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font: inherit;
  font-family: var(--font-body);
  background: var(--bg-soft);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px var(--red-soft);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.form-foot small { font-size: 12px; color: var(--ink-3); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: var(--red-soft);
  border: 1px solid var(--red-line);
  border-radius: var(--r-md);
  margin-bottom: 24px;
}
.form-success strong { color: var(--red); }
.form-success p { margin: 0; font-size: 14px; }
/* The hidden attribute must win over the display:flex above (it shows on load otherwise). */
.form-success[hidden] { display: none !important; }

/* ---------- Long-form (SEO article) ---------- */
.article {
  display: grid;
  grid-template-columns: 0.78fr 0.22fr;
  gap: 56px;
  align-items: start;
}
.article-body { max-width: 80ch; }
.article-body h2 {
  margin-top: 56px;
  font-size: clamp(26px, 2.6vw, 32px);
  scroll-margin-top: 120px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  margin-top: 32px;
  font-size: 21px;
}
.article-body p { font-size: 16.5px; line-height: 1.75; color: var(--ink-2); }
.article-body p strong { color: var(--ink); }
.article-body ul, .article-body ol {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-2);
  padding-left: 24px;
  margin: 0 0 1em;
}
.article-body ul li, .article-body ol li { margin-bottom: 8px; }
.article-body ul li::marker { color: var(--red); }
.article-body a.inline {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.article-body a.inline:hover { color: var(--red-2); }

.article-body .callout {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--red-soft);
  border-left: 4px solid var(--red);
  border-radius: var(--r-sm);
}
.article-body .callout p:last-child { margin-bottom: 0; }
.article-body .callout strong { color: var(--red); }

.article-body .grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}
.article-body .grid-cards .gc {
  padding: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.article-body .grid-cards .gc h4 { margin: 0 0 6px; font-size: 16px; }
.article-body .grid-cards .gc p { margin: 0; font-size: 14.5px; }

.article-body .pull-quote {
  margin: 32px 0;
  padding: 24px 28px;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

.article-toc {
  position: sticky;
  top: 120px;
  padding: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.article-toc h5 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
  font-weight: 700;
}
.article-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.article-toc a {
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
  display: block;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: background 0.15s ease, color 0.15s ease;
}
.article-toc a:hover { background: var(--red-soft); color: var(--red); }

/* Page hero (interior pages) */
.page-hero {
  background: var(--bg-soft);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(163,22,33,0.08), transparent 65%);
}
.page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.crumbs {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--red); }
.crumbs .sep { color: var(--ink-4); }
.crumbs .here { color: var(--ink); font-weight: 600; }

.page-hero h1 { font-size: clamp(34px, 4.5vw, 56px); }
.page-hero .lead { margin-top: 16px; }
.page-hero .hero-actions { margin-top: 28px; }

.page-hero-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.page-hero-art {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.page-hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,23,20,0.4) 100%);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand img { height: 60px; }
.footer-brand p {
  margin-top: 18px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  max-width: 38ch;
}
.footer-brand .uen {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}
.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.footer-contact-line svg { color: var(--red-3); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .pol { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }

/* ---------- WhatsApp / Phone Floater ---------- */
.fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 14px;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.fab .pill:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(37, 211, 102, 0.55); }
.fab .pill .wa-text { display: inline-block; max-width: 160px; line-height: 1.2; }
.fab .pill .wa-text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}
.fab .pill svg { flex-shrink: 0; }
.fab a.call-ic {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(163,22,33,0.45);
  transition: transform 0.15s ease;
}
.fab a.call-ic:hover { transform: scale(1.06); }

/* ---------- Tag chips ---------- */
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.keyword-cloud .k {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink-2);
}

/* Service inline list */
.svc-inline-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 16px 0 24px;
  list-style: none;
  padding: 0;
}
.svc-inline-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.svc-inline-list li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ---------- Coverage chips ---------- */
.coverage-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.coverage-chips .chip {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.coverage-chips .chip:hover { border-color: var(--red); color: var(--red); }
.coverage-chips .chip .pin {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 0 0 4px var(--red-soft);
}

/* ===========================================================
   Service Page v2 — centered, breathable, photo-banded
   =========================================================== */
.svc-article {
  max-width: 760px;
  margin: 0 auto;
}
.svc-article > .intro {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.svc-article h2 {
  margin-top: 64px;
  font-size: clamp(26px, 2.8vw, 34px);
  scroll-margin-top: 160px;
}
.svc-article h2:first-child { margin-top: 0; }
.svc-article h3 {
  margin-top: 36px;
  font-size: 21px;
}
.svc-article p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 1.1em;
}
.svc-article p strong { color: var(--ink); }
.svc-article ul, .svc-article ol {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  padding-left: 22px;
  margin: 0 0 1.2em;
}
.svc-article ul li, .svc-article ol li { margin-bottom: 8px; }
.svc-article ul li::marker { color: var(--red); }
.svc-article a.inline {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.svc-article a.inline:hover { color: var(--red-2); }

.svc-article .callout {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--red-soft);
  border-left: 4px solid var(--red);
  border-radius: var(--r-sm);
}
.svc-article .callout p:last-child { margin-bottom: 0; }

.svc-article .pull-quote {
  margin: 40px 0;
  padding: 28px 0;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}

.svc-article .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}
.svc-article .grid-2 .gc {
  padding: 22px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.svc-article .grid-2 .gc h4 { margin: 0 0 6px; font-size: 16px; }
.svc-article .grid-2 .gc p { margin: 0; font-size: 14.5px; }
@media (max-width: 720px) {
  .svc-article .grid-2 { grid-template-columns: 1fr; }
}

/* Anchor chip nav under hero, sticky under main nav */
.anchor-nav {
  position: sticky;
  top: 84px;
  z-index: 20;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.anchor-nav-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 0;
}
.anchor-nav-inner::-webkit-scrollbar { display: none; }
.anchor-nav a {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.anchor-nav a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.photo-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.photo-band > img + .cap { z-index: 2; }
/* Full-width photo break between sections */
.photo-band {
  height: 360px;
  background-size: cover;
  background-position: center;
  margin: 72px 0;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(26,23,20,0.55) 100%);
}
.photo-band .cap {
  position: absolute;
  left: 28px;
  bottom: 24px;
  right: 28px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
  z-index: 2;
}

/* Stat row */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 40px 0;
  padding: 32px 28px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border-left: 4px solid var(--red);
}
.stat-strip .s .n {
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-strip .s .l {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* Sub-service cards (hub pages) */
.sub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.sub-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.sub-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sub-card .ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sub-card .ph {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sub-card .ph::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,23,20,0.35) 100%);
}
.sub-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sub-card h3 { font-size: 19px; }
.sub-card p { font-size: 14.5px; color: var(--ink-3); margin: 0; }
.sub-card .read {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Compact horizontal process bar (in-article) */
.process-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 32px 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.process-bar .ps {
  padding: 22px 20px;
  background: #fff;
  border-right: 1px solid var(--line);
}
.process-bar .ps:last-child { border-right: 0; }
.process-bar .ps .n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.process-bar .ps h4 { font-size: 15px; margin: 0 0 6px; }
.process-bar .ps p { font-size: 13px; margin: 0; color: var(--ink-3); line-height: 1.55; }
@media (max-width: 760px) {
  .process-bar { grid-template-columns: 1fr 1fr; }
  .process-bar .ps:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-bar .ps:nth-child(2) { border-right: 0; }
}

/* Inline FAQ inside svc-article */
.svc-article .faq-list { margin-top: 16px; }
.svc-article .faq-item .q { font-size: 17px; }
.svc-article .faq-item .a { font-size: 15.5px; line-height: 1.7; }

/* ===========================================================
   Tweak Variants — Mood / Hero / Pace
   Toggled via body[data-mood|hero|pace="…"] from tweaks.js
   =========================================================== */

/* --- MOOD: full-palette swap --- */
body[data-mood="slate"] {
  --red: #5B2630; --red-2: #4A1E26; --red-3: #7A3946;
  --red-soft: #ECEFF3; --red-line: #D7DEE7;
  --bg: #F1F4F7; --bg-soft: #E6EBF1; --bg-warm: #DBE2E9; --bg-warmer: #C9D2DC;
  --ink: #14202C; --ink-2: #2D3947; --ink-3: #5A6878; --ink-4: #8B98A8;
  --line: rgba(20,32,44,0.10); --line-strong: rgba(20,32,44,0.20);
}
body[data-mood="sunrise"] {
  --red: #C7421B; --red-2: #A93512; --red-3: #D9572C;
  --red-soft: #FFEFE0; --red-line: #FBD5B5;
  --bg: #FFF8EE; --bg-soft: #FBEEDC; --bg-warm: #F4E0C5; --bg-warmer: #ECCEA1;
  --ink: #2B1407; --ink-2: #4A2814; --ink-3: #7A5639; --ink-4: #A88466;
  --line: rgba(43,20,7,0.10); --line-strong: rgba(43,20,7,0.20);
}
body[data-mood="midnight"] {
  --red: #E63946; --red-2: #C82B36; --red-3: #FF4F5E;
  --red-soft: #2A0F14; --red-line: #3A1820;
  --bg: #0B0F14; --bg-soft: #131922; --bg-warm: #1A2230; --bg-warmer: #232C3C;
  --ink: #F5F7FA; --ink-2: #C9D1DB; --ink-3: #8A95A4; --ink-4: #5B6878;
  --line: rgba(255,255,255,0.08); --line-strong: rgba(255,255,255,0.18);
}
body[data-mood="midnight"] .nav { background: rgba(11,15,20,0.86); }
body[data-mood="midnight"] .nav-top { background: #050810; }
body[data-mood="midnight"] .field input,
body[data-mood="midnight"] .field select,
body[data-mood="midnight"] .field textarea { background: #131922; color: var(--ink); }
body[data-mood="midnight"] .btn-ghost { background: rgba(255,255,255,0.04); }
body[data-mood="midnight"] .footer { background: #04060B; }
body[data-mood="midnight"] .hero-bg-shapes .grid {
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}
body[data-mood="midnight"] .hero-shield {
  box-shadow: 0 24px 60px -24px rgba(230,57,70,0.45);
}

/* --- HERO: reshape headline composition --- */
body[data-hero="photo"] .hero-shield,
body[data-hero="photo"] .hero-abstract::before { display: none !important; }
body[data-hero="photo"] .hero-abstract {
  border-radius: 18px;
  overflow: hidden;
  background-image: url('assets/placeholders/painting-hero-crew-singapore-shieldguard.svg');
  background-color: #faf8f5;
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 70px -28px rgba(0,0,0,0.45);
}
body[data-hero="photo"] .hero-abstract::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
body[data-hero="photo"] .hero-orbit { display: none; }

body[data-hero="numbers"] .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}
body[data-hero="numbers"] .hero-abstract { display: none; }
body[data-hero="numbers"] .hero-actions { justify-content: center; }
body[data-hero="numbers"] .hero-sub { margin: 22px auto 0; max-width: 60ch; }
body[data-hero="numbers"] .hero h1 { font-size: clamp(48px, 8vw, 100px); }
body[data-hero="numbers"] .hero-stats {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  margin: 64px auto 0;
  padding: 36px 0;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
body[data-hero="numbers"] .hero-stat { text-align: center; }
body[data-hero="numbers"] .hero-stat .num { font-size: clamp(48px, 7vw, 88px); }
body[data-hero="numbers"] .hero-stat .lbl { justify-content: center; }

/* --- PACE: typographic rhythm + density --- */
body[data-pace="editorial"] h1 { font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; }
body[data-pace="editorial"] h2 { font-weight: 500; letter-spacing: -0.025em; }
body[data-pace="editorial"] h3 { font-weight: 500; letter-spacing: -0.01em; }
body[data-pace="editorial"] .hero { padding: 140px 0 160px; }
body[data-pace="editorial"] section { padding: 140px 0; }
body[data-pace="editorial"] .lead { font-size: 22px; font-weight: 400; line-height: 1.6; }
body[data-pace="editorial"] .eyebrow { letter-spacing: 0.30em; font-weight: 500; }
body[data-pace="editorial"] .btn { letter-spacing: 0.04em; font-weight: 500; }
body[data-pace="editorial"] .why-num { font-weight: 400; font-style: italic; opacity: 0.7; }
body[data-pace="editorial"] .hero-stat .num { font-weight: 500; letter-spacing: -0.04em; }
body[data-pace="editorial"] .section-head { gap: 64px; margin-bottom: 80px; }

body[data-pace="punchy"] h1 {
  font-weight: 900;
  font-size: clamp(48px, 8vw, 116px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}
body[data-pace="punchy"] h2 {
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
body[data-pace="punchy"] h3 { font-weight: 800; text-transform: uppercase; letter-spacing: -0.005em; }
body[data-pace="punchy"] .hero { padding: 72px 0 80px; }
body[data-pace="punchy"] section { padding: 80px 0; }
body[data-pace="punchy"] .lead { font-size: 17px; font-weight: 500; }
body[data-pace="punchy"] .hero-stat .num { font-size: 56px; font-weight: 900; letter-spacing: -0.04em; }
body[data-pace="punchy"] .eyebrow { font-weight: 800; letter-spacing: 0.22em; }
body[data-pace="punchy"] .btn { font-weight: 800; text-transform: uppercase; letter-spacing: 0.10em; }
body[data-pace="punchy"] .why-num { font-size: 36px; font-weight: 900; }

/* ===========================================================
   Project gallery (service pages)
   =========================================================== */
.proj-gallery {
  margin: 40px 0 8px;
}
.proj-gallery-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.proj-gallery-head p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14.5px;
  max-width: 56ch;
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.proj-grid .pg {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-soft) center/cover no-repeat;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proj-grid .pg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.proj-grid .pg:hover { box-shadow: var(--shadow-md); }
.proj-grid .pg:hover img { transform: scale(1.04); }
.proj-grid .pg figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.65) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.proj-grid .pg:hover figcaption,
.proj-grid .pg:focus-within figcaption { opacity: 1; transform: translateY(0); }
.proj-grid .pg .tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

/* Mosaic spans (12-col) — desktop */
.proj-grid .pg.s-wide   { grid-column: span 6; grid-row: span 2; }
.proj-grid .pg.s-tall   { grid-column: span 3; grid-row: span 3; }
.proj-grid .pg.s-tall-2 { grid-column: span 3; grid-row: span 2; }
.proj-grid .pg.s-sq     { grid-column: span 3; grid-row: span 2; }
.proj-grid .pg.s-wide-1 { grid-column: span 6; grid-row: span 2; }
.proj-grid .pg.s-md     { grid-column: span 4; grid-row: span 2; }

/* Lightbox */
.proj-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 32px;
  animation: pgFade 0.2s ease;
}
.proj-lightbox.open { display: flex; }
.proj-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.proj-lightbox .pl-cap {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  padding: 0 24px;
}
.proj-lightbox .pl-close,
.proj-lightbox .pl-prev,
.proj-lightbox .pl-next {
  position: absolute;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: background 0.15s ease;
}
.proj-lightbox .pl-close:hover,
.proj-lightbox .pl-prev:hover,
.proj-lightbox .pl-next:hover { background: rgba(255,255,255,0.20); }
.proj-lightbox .pl-close { top: 24px; right: 24px; }
.proj-lightbox .pl-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.proj-lightbox .pl-next  { right: 24px; top: 50%; transform: translateY(-50%); }
@keyframes pgFade { from { opacity: 0; } to { opacity: 1; } }

/* Tablet */
@media (max-width: 1080px) {
  .proj-grid { grid-auto-rows: 160px; gap: 12px; }
  .proj-grid .pg.s-wide,
  .proj-grid .pg.s-wide-1 { grid-column: span 6; grid-row: span 2; }
  .proj-grid .pg.s-tall   { grid-column: span 6; grid-row: span 3; }
  .proj-grid .pg.s-tall-2,
  .proj-grid .pg.s-sq,
  .proj-grid .pg.s-md     { grid-column: span 6; grid-row: span 2; }
}
/* Mobile */
@media (max-width: 600px) {
  .proj-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .proj-grid .pg,
  .proj-grid .pg.s-wide,
  .proj-grid .pg.s-tall,
  .proj-grid .pg.s-tall-2,
  .proj-grid .pg.s-sq,
  .proj-grid .pg.s-wide-1,
  .proj-grid .pg.s-md { grid-column: 1 / -1; grid-row: span 1; }
  .proj-grid .pg figcaption { opacity: 1; transform: none; font-size: 12px; padding: 12px; }
  .proj-lightbox { padding: 16px; }
  .proj-lightbox .pl-prev { left: 12px; }
  .proj-lightbox .pl-next { right: 12px; }
  .proj-lightbox .pl-close { top: 12px; right: 12px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner,
  .why-grid,
  .faq-grid,
  .contact-grid,
  .page-hero-inner,
  .article { grid-template-columns: 1fr; gap: 36px; }
  .article-toc { position: static; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: 1px solid var(--line); }
  .process-step:nth-child(-n+2) { border-bottom: 0; }
  .why-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 760px) {
  section { padding: 72px 0; }
  .wrap { padding: 0 20px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: flex; }
  .nav-top .left .item.hide-mobile, .nav-top .right .sep { display: none; }
  .services-grid, .process-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .fab .pill .wa-text { display: none; }
  .fab .pill { padding: 14px; }
  h1 { font-size: 36px; }
}
