/* =========================================================
   PROTECTION SYSTEMS INC. — v2
   Palette: GOLD · BLACK · GREY · WHITE only
   Edges: HARD. Corners: SQUARE. Lines: SHARP.
   ========================================================= */

:root {
  /* === MONOCHROME + GOLD ONLY === */
  --black: #000000;
  --ink:   #0a0a0a;       /* deepest background */
  --char:  #111111;       /* surface */
  --steel: #1a1a1a;       /* surface raised */
  --iron:  #242424;       /* border / hairline */
  --gray:  #3a3a3a;       /* divider */
  --slate: #6b6b6b;       /* muted text */
  --ash:   #9b9b9b;       /* secondary text */
  --bone:  #cfcfcf;       /* tertiary text */
  --white: #ffffff;
  --paper: #f4f4f4;

  --gold:        #d4af37;
  --gold-bright: #f0c75e;
  --gold-dim:    #a8862a;
  --gold-deep:   #6b541a;

  /* Semantic */
  --color-bg: var(--ink);
  --color-surface: var(--char);
  --color-surface-2: var(--steel);
  --color-border: var(--iron);
  --color-border-strong: var(--gray);
  --color-divider: var(--iron);
  --color-text: var(--white);
  --color-text-muted: var(--bone);
  --color-text-faint: var(--ash);
  --color-text-dim: var(--slate);

  /* Type scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.3vw, 0.95rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.6vw, 1.4rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 4.5rem);
  --text-hero: clamp(2.75rem, 1rem + 6vw, 7rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;

  /* Shadows */
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 0 1px rgba(212, 175, 55, 0.4), 0 12px 32px rgba(212, 175, 55, 0.15);

  /* Transitions */
  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 140ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1280px;
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 110px;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; color: inherit; font: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
input, textarea, select, button { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { line-height: 1.05; font-weight: 700; letter-spacing: -0.01em; }
p { max-width: 64ch; }
::selection { background: var(--gold); color: var(--black); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-5);
}
/* dash prefix removed per request */

/* ===== Top Bar ===== */
.top-bar {
  background: var(--black);
  color: var(--bone);
  font-size: var(--text-xs);
  border-bottom: 1px solid var(--iron);
  letter-spacing: 0.05em;
}
.top-bar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  padding: var(--space-2) var(--space-6); max-width: var(--container); margin: 0 auto;
}
.top-bar__left { display: flex; gap: var(--space-6); flex-wrap: wrap; align-items: center; }
.top-bar__item--site { color: var(--gold); font-weight: 600; letter-spacing: 0.08em; }
.top-bar__item { display: inline-flex; align-items: center; gap: var(--space-2); }
.top-bar__item svg { color: var(--gold); flex-shrink: 0; }
.top-bar__cta {
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: var(--gold); font-weight: 700; letter-spacing: 0.08em;
}
.top-bar__cta:hover { color: var(--gold-bright); }
@media (max-width: 720px) {
  .top-bar__inner { justify-content: center; padding: var(--space-2) var(--space-4); }
  .top-bar__left { display: none; }
}

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--iron);
  transition: background var(--transition), border-color var(--transition);
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: var(--gold);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-6); gap: var(--space-6);
}

.brand { display: inline-flex; align-items: center; gap: var(--space-3); color: var(--color-text); }
.brand__badge { width: 54px; height: 54px; flex-shrink: 0; }
.brand__badge img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase; }
.brand__tag { font-size: 10px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-top: 2px; }

.nav { display: flex; gap: var(--space-8); }
.nav a {
  font-family: var(--font-display);
  font-size: var(--text-xs); font-weight: 600; color: var(--bone);
  letter-spacing: 0.18em; text-transform: uppercase; position: relative; padding: var(--space-2) 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: var(--space-3); }

.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition-fast); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; padding: 0 var(--space-6) var(--space-6); border-top: 1px solid var(--iron); background: var(--black); }
.mobile-nav a {
  padding: var(--space-4) 0; font-size: var(--text-base); color: var(--white);
  border-bottom: 1px solid var(--iron); font-family: var(--font-display);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.mobile-nav__call {
  margin-top: var(--space-4); background: var(--gold); color: var(--black) !important;
  text-align: center; font-weight: 700; border-bottom: none !important;
  padding: var(--space-4) !important;
}
.mobile-nav.is-open { display: flex; }

@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .btn--call span { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.15em;
  border-radius: 0;
  transition: all var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--gold); color: var(--black);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--white); border-color: var(--gray);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 1.1rem 2rem; font-size: var(--text-sm); }
.btn--block { width: 100%; }
.btn--call { padding: 0.6rem 1rem; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; padding: var(--space-20) 0 var(--space-16);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 22s ease-out forwards;
  filter: grayscale(35%) contrast(1.1);
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(10, 10, 10, 1) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.hero__inner { position: relative; z-index: 1; max-width: 1100px; display: grid; grid-template-columns: 1fr auto; gap: var(--space-12); align-items: center; }
@media (max-width: 1024px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__main { min-width: 0; }

.hero__badges {
  display: flex; gap: var(--space-3); flex-wrap: wrap;
  margin-bottom: var(--space-8);
  animation: fadeUp 0.8s ease-out;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.hero__chip .dot {
  width: 6px; height: 6px; background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
}
.hero__title-line { display: block; animation: fadeUp 0.9s ease-out backwards; }
.hero__title-line:nth-child(2) { animation-delay: 0.15s; }
.hero__title-line--accent { color: var(--gold); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__lede {
  font-size: var(--text-lg);
  color: var(--bone);
  max-width: 640px; margin-bottom: var(--space-8);
  animation: fadeUp 1s 0.3s ease-out backwards;
  line-height: 1.55;
}

.hero__motto {
  display: flex; gap: var(--space-6); flex-wrap: wrap;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: var(--text-xs); letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: var(--space-8);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--iron);
  border-bottom: 1px solid var(--iron);
  animation: fadeUp 1s 0.45s ease-out backwards;
  font-weight: 600;
}
.hero__motto span { display: inline-flex; align-items: center; }
.hero__motto span:not(:last-child)::after {
  content: ''; display: inline-block;
  width: 4px; height: 4px; background: var(--gold);
  margin-left: var(--space-6);
}

.hero__cta {
  display: flex; gap: var(--space-3); flex-wrap: wrap;
  margin-bottom: var(--space-12);
  animation: fadeUp 1s 0.6s ease-out backwards;
}

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--iron);
  animation: fadeUp 1s 0.75s ease-out backwards;
}
.hero__stats > div { padding: var(--space-5) var(--space-4) 0 0; border-right: 1px solid var(--iron); padding-right: var(--space-4); }
.hero__stats > div:last-child { border-right: none; }
.hero__stats strong {
  display: block; font-family: var(--font-display); font-size: clamp(1.75rem, 1rem + 2vw, 2.5rem);
  font-weight: 700; color: var(--gold); line-height: 1;
}
.hero__stats span { display: block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash); margin-top: var(--space-2); font-weight: 600; }

.hero__sidebadge {
  width: 280px; aspect-ratio: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 1s 0.4s ease-out backwards;
}
.hero__sidebadge img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(212, 175, 55, 0.3)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
}
.hero__sidebadge::before {
  content: ''; position: absolute; inset: -20px;
  border: 1px solid var(--gold); opacity: 0.4;
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.15; }
}
@media (max-width: 1024px) { .hero__sidebadge { display: none; } }

@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stats > div:nth-child(2) { border-right: none; }
  .hero__stats > div:nth-child(1), .hero__stats > div:nth-child(2) { border-bottom: 1px solid var(--iron); padding-bottom: var(--space-5); margin-bottom: var(--space-5); }
  .hero__motto { gap: var(--space-3); font-size: 10px; letter-spacing: 0.25em; }
  .hero__motto span:not(:last-child)::after { margin-left: var(--space-3); }
  .hero__cta .btn { flex: 1; min-width: 0; }
}

.hero__scroll {
  position: absolute; bottom: var(--space-6); left: 50%; transform: translateX(-50%);
  color: var(--ash); z-index: 2;
  animation: bobble 2.5s ease-in-out infinite;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  font-family: var(--font-display); font-weight: 600;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 32px; background: var(--gold);
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ===== Marquee announcement ===== */
.marquee {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  overflow: hidden;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gold-deep);
  border-top: 1px solid var(--gold-deep);
}
.marquee__track {
  display: flex; gap: var(--space-12); width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee__item { display: inline-flex; align-items: center; gap: var(--space-3); white-space: nowrap; }
.marquee__item::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: var(--black); transform: rotate(45deg);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Trust Strip (streamlined) ===== */
.trust-strip {
  background: var(--black);
  border-top: 1px solid var(--iron);
  border-bottom: 1px solid var(--iron);
  padding: var(--space-5) 0;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3) var(--space-4);
  border-right: 1px solid var(--iron);
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__item span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  position: relative;
  padding-left: 18px;
}
.trust-strip__item span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: var(--gold);
}
@media (max-width: 900px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item { border-right: none; border-bottom: 1px solid var(--iron); }
  .trust-strip__item:nth-last-child(-n+2) { border-bottom: none; }
  .trust-strip__item:nth-child(2n) { border-right: none; }
}
@media (max-width: 520px) {
  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-strip__item { border-right: none; border-bottom: 1px solid var(--iron); }
  .trust-strip__item:last-child { border-bottom: none; }
}

/* ===== Sections ===== */
.section { padding: clamp(var(--space-16), 8vw, var(--space-24)) 0; position: relative; }
.section--alt { background: var(--char); border-top: 1px solid var(--iron); border-bottom: 1px solid var(--iron); }
.section__head { max-width: 760px; margin-bottom: var(--space-16); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center p { margin-left: auto; margin-right: auto; }
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-5);
  color: var(--white);
  line-height: 1.0;
}
.section__lede { font-size: var(--text-lg); color: var(--bone); line-height: 1.55; }

/* ===== Services Grid ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--iron);
  border: 1px solid var(--iron);
}
.service {
  background: var(--ink);
  padding: var(--space-10);
  position: relative;
  transition: var(--transition);
  display: flex; flex-direction: column;
  min-height: 460px;
}
.service::before {
  content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.5s var(--transition);
}
.service:hover { background: var(--char); }
.service:hover::before { width: 100%; }
.service__num {
  font-family: var(--font-display);
  font-size: var(--text-xs); color: var(--gold);
  letter-spacing: 0.3em; font-weight: 600;
  margin-bottom: var(--space-6);
  display: flex; align-items: center; gap: var(--space-3);
}
.service__num::after { content: ''; flex-grow: 1; height: 1px; background: var(--iron); }
.service__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
  margin-bottom: var(--space-6);
}
.service h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  color: var(--white);
  letter-spacing: -0.005em;
}
.service > p { color: var(--bone); margin-bottom: var(--space-5); flex-grow: 1; font-size: var(--text-base); line-height: 1.6; }
.service__bullets { display: flex; flex-direction: column; gap: var(--space-2); padding-top: var(--space-5); border-top: 1px solid var(--iron); }
.service__bullets li {
  position: relative; padding-left: var(--space-6);
  font-size: var(--text-sm); color: var(--bone);
  font-family: var(--font-display); letter-spacing: 0.05em; font-weight: 500;
}
.service__bullets li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 2px; background: var(--gold);
}

.service--feature {
  grid-column: span 2;
  padding: 0; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.service__media { position: relative; overflow: hidden; }
.service__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 0.8s ease;
}
.service--feature:hover .service__media img { transform: scale(1.04); }
.service__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(10, 10, 10, 0.6) 100%);
}
.service--reverse { grid-template-columns: 1fr 1fr; }
.service--reverse .service__media { order: 2; }
.service--reverse .service__media::after {
  background: linear-gradient(-90deg, transparent 60%, rgba(10, 10, 10, 0.6) 100%);
}
.service--feature .service__body {
  padding: var(--space-10);
  display: flex; flex-direction: column; justify-content: center;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service--feature { grid-column: span 1; grid-template-columns: 1fr; }
  .service--feature .service__media { min-height: 280px; }
  .service--reverse .service__media { order: 0; }
  .service { min-height: 0; padding: var(--space-8); }
}

/* ===== Price Match Banner ===== */
.guarantee {
  background: var(--black);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(212, 175, 55, 0.025) 24px 25px);
  pointer-events: none;
}
.guarantee__inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: var(--space-12); align-items: center;
  position: relative; z-index: 1;
}
.guarantee__icon {
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold); color: var(--gold);
}
.guarantee__copy h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}
.guarantee__copy p { color: var(--bone); max-width: 60ch; font-size: var(--text-base); }
.guarantee__copy strong { color: var(--gold); }
@media (max-width: 900px) {
  .guarantee__inner { grid-template-columns: 1fr; gap: var(--space-6); text-align: center; }
  .guarantee__icon { margin: 0 auto; }
}

/* ===== Pull Quote ===== */
.pullquote {
  padding: var(--space-24) 0;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)),
    url('assets/city-manhattan.png') center / cover no-repeat fixed;
  border-top: 1px solid var(--iron);
  border-bottom: 1px solid var(--iron);
  position: relative;
  text-align: center;
}
.pullquote__mark {
  font-family: var(--font-display);
  font-size: 6rem; color: var(--gold);
  line-height: 1; margin-bottom: var(--space-4);
}
.pullquote q {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-weight: 600; line-height: 1.15;
  color: var(--white); max-width: 900px;
  margin: 0 auto var(--space-6);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  quotes: none;
}
.pullquote q::before, .pullquote q::after { content: none; }
.pullquote__attr {
  font-family: var(--font-display);
  font-size: var(--text-xs); color: var(--gold);
  letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600;
  display: inline-flex; align-items: center; gap: var(--space-3);
}
.pullquote__attr::before, .pullquote__attr::after {
  content: ''; display: inline-block; width: 32px; height: 1px; background: var(--gold);
}

/* ===== About ===== */
.about {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-16); align-items: center;
}
.about__copy p { color: var(--bone); margin-bottom: var(--space-5); font-size: var(--text-base); }
.about__copy strong { color: var(--white); }
.about__callouts { margin-top: var(--space-8); padding-top: var(--space-8); border-top: 1px solid var(--iron); display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.about__callout { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-4); border-left: 2px solid var(--gold); }
.about__callout strong {
  font-family: var(--font-display);
  font-size: var(--text-sm); color: var(--gold);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.about__callout span { font-size: var(--text-sm); color: var(--bone); }

.about__visual { position: relative; }
.about__visual img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: grayscale(15%) contrast(1.08);
  border: 1px solid var(--iron);
}
.about__badge {
  position: absolute; bottom: -32px; right: -16px;
  background: var(--gold); color: var(--black);
  padding: var(--space-5) var(--space-6);
  text-align: center;
  font-family: var(--font-display);
}
.about__badge strong { display: block; font-size: 2.5rem; line-height: 1; }
.about__badge span { display: block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: var(--space-2); font-weight: 700; }

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: var(--space-12); }
  .about__callouts { grid-template-columns: 1fr; }
  .about__badge { right: var(--space-4); bottom: var(--space-4); padding: var(--space-4); }
  .about__badge strong { font-size: 1.75rem; }
}

/* ===== Team Section ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--iron); border: 1px solid var(--iron);
  margin-bottom: var(--space-10);
}
.team-card {
  background: var(--ink);
  display: grid; grid-template-columns: 240px 1fr;
  position: relative; transition: var(--transition);
}
.team-card:hover { background: var(--char); }
.team-card__photo {
  position: relative;
  background:
    repeating-linear-gradient(45deg, var(--char) 0 8px, transparent 8px 16px),
    var(--ink);
  border-right: 1px solid var(--iron);
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.team-card__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  text-align: center; padding: var(--space-6);
}
.team-card__placeholder svg { color: var(--gold); opacity: 0.6; }
.team-card__placeholder span {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 600; color: var(--ash);
}
.team-card__body { padding: var(--space-8); display: flex; flex-direction: column; }
.team-card__role {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs); letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--iron);
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  color: var(--white);
  letter-spacing: 0.02em;
}
.team-card__credential {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--white);
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.team-card__credential svg { color: var(--gold); flex-shrink: 0; }
.team-card__body p { color: var(--bone); font-size: var(--text-sm); margin-bottom: var(--space-4); line-height: 1.6; }
.team-card__quote {
  font-style: italic; color: var(--white);
  font-size: var(--text-sm);
  border-left: 2px solid var(--gold);
  padding: var(--space-2) 0 var(--space-2) var(--space-4);
  margin-top: auto;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-card__photo {
    min-height: 200px;
    border-right: none;
    border-bottom: 1px solid var(--iron);
  }
}

/* ===== Compare Table ===== */
.compare {
  border: 1px solid var(--iron);
  background: var(--ink);
}
.compare-row {
  display: grid; grid-template-columns: 1.2fr 1.3fr 1.5fr;
  border-bottom: 1px solid var(--iron);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell { padding: var(--space-5) var(--space-6); display: flex; align-items: center; min-height: 64px; }
.compare-cell--label {
  font-family: var(--font-display);
  font-weight: 700; color: var(--ash); letter-spacing: 0.15em; font-size: var(--text-xs); text-transform: uppercase;
}
.compare-cell--us {
  background: rgba(212, 175, 55, 0.05);
  border-left: 2px solid var(--gold);
  color: var(--white);
  font-weight: 600;
  gap: var(--space-2);
}
.compare-cell--them { color: var(--ash); font-size: var(--text-sm); }
.compare-row--head .compare-cell {
  background: var(--black);
  border-bottom: 1px solid var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700;
}
.compare-row--head .compare-cell--us { color: var(--gold); font-size: var(--text-lg); }
.compare-row--head .compare-cell--them { display: flex; flex-direction: column; align-items: flex-start; color: var(--ash); }
.compare-row--head .compare-cell--them small { font-family: var(--font-body); font-size: 10px; text-transform: none; letter-spacing: 0.04em; font-weight: 400; margin-top: 4px; color: var(--slate); }

@media (max-width: 760px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-cell { padding: var(--space-3) var(--space-5); min-height: 0; border-bottom: 1px solid var(--iron); }
  .compare-cell--label { background: var(--black); padding: var(--space-3) var(--space-5); font-size: 10px; }
  .compare-cell--us::before { content: 'PSI: '; color: var(--gold); font-weight: 700; margin-right: var(--space-2); font-family: var(--font-display); font-size: var(--text-xs); letter-spacing: 0.15em; }
  .compare-cell--them::before { content: 'Others: '; color: var(--slate); margin-right: var(--space-2); font-family: var(--font-display); font-size: var(--text-xs); letter-spacing: 0.15em; font-weight: 600; }
  .compare-row--head { display: none; }
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--iron); border: 1px solid var(--iron);
}
.plan {
  background: var(--ink); padding: var(--space-10) var(--space-8);
  display: flex; flex-direction: column;
  transition: var(--transition); position: relative;
}
.plan:hover { background: var(--char); }
.plan--featured {
  background: var(--black);
  border: 1px solid var(--gold);
  margin: -1px;
}
.plan__ribbon {
  position: absolute; top: 0; left: 0;
  background: var(--gold); color: var(--black);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
.plan__head { margin-bottom: var(--space-6); padding-top: var(--space-4); }
.plan__name {
  display: block; font-family: var(--font-display);
  font-size: var(--text-xl); text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--white);
}
.plan__sub {
  display: block; color: var(--ash); font-size: var(--text-xs);
  letter-spacing: 0.15em; text-transform: uppercase; margin-top: var(--space-2); font-weight: 600;
}
.plan__price {
  display: flex; align-items: baseline; gap: var(--space-2);
  margin-bottom: var(--space-6); padding-bottom: var(--space-6); border-bottom: 1px solid var(--iron);
}
.plan__amt {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.plan__amt sup { font-size: 1.25rem; vertical-align: super; }
.plan__per { color: var(--ash); font-size: var(--text-xs); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.plan__features { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); flex-grow: 1; }
.plan__features li {
  padding-left: var(--space-6); position: relative;
  font-size: var(--text-sm); color: var(--bone);
}
.plan__features li::before {
  content: ''; position: absolute; left: 0; top: 0.4em;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='3' stroke-linecap='square'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.pricing-note { text-align: center; color: var(--bone); margin: var(--space-10) auto 0; max-width: 700px; font-size: var(--text-sm); }
.pricing-note strong { color: var(--gold); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan--featured { margin: 0; }
}

/* ===== Coverage ===== */
.coverage__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center;
}
.coverage__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin-top: var(--space-8); }
.coverage__grid h4 {
  font-family: var(--font-display); font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold); margin-bottom: var(--space-4);
  padding-bottom: var(--space-2); border-bottom: 1px solid var(--gold); font-weight: 700;
}
.coverage__grid ul { display: flex; flex-direction: column; gap: var(--space-2); }
.coverage__grid li { font-size: var(--text-sm); color: var(--bone); }
.coverage__map { position: relative; }
.coverage__map svg { width: 100%; max-width: 520px; margin: 0 auto; color: var(--gold); }
@media (max-width: 900px) {
  .coverage__inner { grid-template-columns: 1fr; }
  .coverage__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .coverage__grid { grid-template-columns: 1fr; }
}

/* ===== CTA Section ===== */
.section--cta {
  background:
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
    url('assets/city-estate.png') center / cover no-repeat;
  border-top: 1px solid var(--iron);
}
.cta {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--space-16); align-items: start;
}
.cta__copy p { color: var(--bone); margin-bottom: var(--space-8); font-size: var(--text-base); }
.cta__phone {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--black);
  border: 1px solid var(--gold);
  color: var(--white);
  margin-bottom: var(--space-8);
  transition: var(--transition);
}
.cta__phone:hover { background: var(--gold); color: var(--black); }
.cta__phone:hover svg { color: var(--black); }
.cta__phone:hover small, .cta__phone:hover strong { color: var(--black); }
.cta__phone svg { color: var(--gold); flex-shrink: 0; transition: color var(--transition); }
.cta__phone span { display: flex; flex-direction: column; }
.cta__phone small {
  font-family: var(--font-display);
  font-size: 10px; color: var(--ash); letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600;
  transition: color var(--transition);
}
.cta__phone strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2rem);
  color: var(--gold); letter-spacing: 0.02em; transition: color var(--transition);
}
.cta__info { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); padding-top: var(--space-6); border-top: 1px solid var(--iron); }
.cta__info > div { display: flex; flex-direction: column; gap: var(--space-1); }
.cta__label {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 700;
}
.cta__info span:not(.cta__label) { color: var(--bone); font-size: var(--text-sm); }

.cta__form {
  background: var(--ink);
  border: 1px solid var(--iron);
  padding: var(--space-8);
}
.cta__form h3 {
  font-family: var(--font-display);
  text-transform: uppercase; font-size: var(--text-xl);
  margin-bottom: var(--space-6); letter-spacing: 0.02em; color: var(--white);
  padding-bottom: var(--space-4); border-bottom: 1px solid var(--gold);
}
.cta__form label { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.cta__form label > span {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); font-weight: 700;
}
.cta__form input, .cta__form select, .cta__form textarea {
  background: var(--black);
  border: 1px solid var(--iron);
  padding: 0.85rem 1rem; font-size: var(--text-base);
  color: var(--white);
  transition: var(--transition-fast);
  border-radius: 0;
}
.cta__form input:focus, .cta__form select:focus, .cta__form textarea:focus {
  outline: none; border-color: var(--gold); background: var(--char);
}
.cta__form textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-row label { margin-bottom: 0; }
.form-note { text-align: center; color: var(--bone); font-size: var(--text-xs); margin-top: var(--space-4); letter-spacing: 0.08em; }
.form-note a { color: var(--gold); font-weight: 700; }
.form-success {
  margin-top: var(--space-5); padding: var(--space-4);
  border: 1px solid var(--gold); background: rgba(212, 175, 55, 0.06);
  color: var(--gold); font-size: var(--text-sm); font-weight: 600;
}

@media (max-width: 900px) {
  .cta { grid-template-columns: 1fr; }
  .cta__info { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer { background: var(--black); padding: var(--space-16) 0 var(--space-6); border-top: 1px solid var(--gold); }
.footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: var(--space-12); padding-bottom: var(--space-10); border-bottom: 1px solid var(--iron); }
.footer__brand { display: flex; align-items: center; gap: var(--space-4); }
.footer__brand-badge { width: 64px; height: 64px; flex-shrink: 0; }
.footer__brand-badge img { width: 100%; height: 100%; object-fit: contain; }
.footer__brand > div { display: flex; flex-direction: column; line-height: 1.4; }
.footer__brand strong { font-family: var(--font-display); font-size: var(--text-lg); text-transform: uppercase; color: var(--white); letter-spacing: 0.06em; }
.footer__brand span { font-size: 10px; color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase; font-weight: 700; margin-top: var(--space-2); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.footer__cols h5 { font-family: var(--font-display); text-transform: uppercase; font-size: var(--text-xs); letter-spacing: 0.2em; color: var(--gold); margin-bottom: var(--space-4); font-weight: 700; }
.footer__cols a, .footer__cols span { display: block; color: var(--bone); font-size: var(--text-sm); padding: var(--space-1) 0; }
.footer__cols a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-3);
  padding-top: var(--space-6); font-size: 11px; color: var(--slate); letter-spacing: 0.08em;
}
.footer__licenses { font-size: 11px; }
@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ===== Floating Call Button ===== */
.fab-call {
  position: fixed; bottom: var(--space-5); right: var(--space-5);
  display: none;
  align-items: center; gap: var(--space-2);
  padding: 1rem 1.25rem;
  background: var(--gold); color: var(--black);
  font-family: var(--font-display);
  font-weight: 700; font-size: var(--text-sm); letter-spacing: 0.15em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,0,0,0.3);
  z-index: 40;
}
.fab-call:hover { background: var(--gold-bright); }
@media (max-width: 1024px) {
  .fab-call { display: inline-flex; }
}

/* ===== Reveal on scroll (DISABLED — was hiding content; keep classes harmless) ===== */
.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   OVERVIEW GRID (homepage compact services)
   ============================================================ */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}
@media (max-width: 1024px) { .overview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .overview-grid { grid-template-columns: 1fr; } }

.overview-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: var(--space-8) var(--space-6) var(--space-6);
  background: var(--char);
  border: 1px solid var(--iron);
  text-decoration: none;
  color: var(--white);
  transition: border-color 240ms ease, transform 240ms ease, background 240ms ease;
  min-height: 280px;
}
.overview-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: var(--steel);
}
.overview-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 280ms ease;
}
.overview-card:hover::before { transform: scaleX(1); }
.overview-card__num {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--gold); font-weight: 600;
  margin-bottom: var(--space-4);
}
.overview-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-3);
  line-height: 1.1;
}
.overview-card p {
  font-size: 14px;
  color: var(--bone);
  line-height: 1.55;
  flex: 1;
  margin-bottom: var(--space-5);
}
.overview-card__more {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--gold); font-weight: 600;
  text-transform: uppercase;
}
.overview-cta {
  display: flex; justify-content: center;
  margin-top: var(--space-12);
}

/* ============================================================
   OWNER FRAME (homepage About)
   ============================================================ */
.owner-frame {
  position: relative;
  background: var(--char);
  border: 1px solid var(--iron);
  padding: var(--space-3);
  max-width: 440px;
  margin: 0 auto;
}
.owner-frame::before {
  content: '';
  position: absolute; inset: -10px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.5;
}
.owner-frame__photo {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, var(--steel) 0%, var(--ink) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid var(--iron);
}
.owner-frame__photo img {
  width: 60%; height: 60%; object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.25));
}
.owner-frame__photo--filled {
  background: var(--ink);
  aspect-ratio: 3/4;
}
.owner-frame__photo--filled img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 1;
  filter: none;
  display: block;
}
.owner-frame__caption {
  position: absolute; bottom: var(--space-4); left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--ash); text-transform: uppercase;
  font-weight: 600;
}
.owner-frame__plate {
  display: block;
  padding: var(--space-4) var(--space-3) var(--space-2);
  text-align: center;
  border-top: 1px solid var(--gold);
  margin-top: var(--space-3);
}
.owner-frame__plate strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  font-weight: 600;
}
.owner-frame__plate span {
  display: block;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
  font-weight: 600;
  margin-top: var(--space-2);
}

/* About pullout paragraph (the "we've lived it" line) */
.about__pullout {
  border-left: 3px solid var(--gold);
  padding: var(--space-4) 0 var(--space-4) var(--space-5);
  margin: var(--space-6) 0;
  font-size: var(--text-lg);
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: var(--space-32) 0 var(--space-16);
  background: var(--ink);
  border-bottom: 1px solid var(--iron);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35;
  filter: grayscale(50%) contrast(1.1);
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.95) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero__crumbs {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-5);
}
.page-hero__crumbs a {
  color: var(--ash); text-decoration: none;
}
.page-hero__crumbs a:hover { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  font-weight: 700; line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}
.page-hero__lede {
  font-size: var(--text-lg);
  color: var(--bone);
  max-width: 640px; margin: 0 auto;
  line-height: 1.55;
}

/* ============================================================
   CONTACT FORM PAGE (Gladiator-style)
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 960px) { .contact-layout { grid-template-columns: 1fr; gap: var(--space-12); } }

.contact-aside {
  background: var(--char);
  border: 1px solid var(--iron);
  border-top: 3px solid var(--gold);
  padding: var(--space-10) var(--space-8);
}
.contact-aside h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-5);
  line-height: 1.1;
}
.contact-aside p { color: var(--bone); margin-bottom: var(--space-6); }
.contact-aside__item {
  display: block;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--iron);
}
.contact-aside__item:last-child { border-bottom: 1px solid var(--iron); }
.contact-aside__item span {
  display: block;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.contact-aside__item a,
.contact-aside__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white); font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.contact-aside__item a:hover { color: var(--gold); }
.contact-aside__badge {
  text-align: center;
  margin-top: var(--space-8);
}
.contact-aside__badge img {
  width: 80px; height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.4));
}

/* Form */
.contact-form {
  background: var(--char);
  border: 1px solid var(--iron);
  padding: var(--space-10) var(--space-8);
}
.contact-form__head {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--iron);
}
.contact-form__head h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}
.contact-form__head p { color: var(--bone); font-size: 14px; }

.contact-form label {
  display: block;
  margin-bottom: var(--space-5);
}
.contact-form label > span {
  display: block;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.contact-form label > span .opt {
  color: var(--ash); font-weight: 500;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--iron);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: var(--space-3) var(--space-4);
  outline: none;
  transition: border-color 180ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 600px) { .contact-form .form-row { grid-template-columns: 1fr; } }

/* Service checkbox grid */
.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-2);
}
@media (max-width: 600px) { .service-options { grid-template-columns: 1fr; } }
.service-options label {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-4);
  background: var(--ink);
  border: 1px solid var(--iron);
  cursor: pointer;
  margin: 0;
  transition: border-color 180ms ease, background 180ms ease;
}
.service-options label:hover { border-color: var(--gold); }
.service-options input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--ash);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-options input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.service-options input[type="checkbox"]:checked::after {
  content: '';
  position: absolute; top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.service-options label > span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  line-height: 1.3;
}
.service-options label:has(input:checked) {
  background: var(--steel);
  border-color: var(--gold);
}
.service-options label:has(input:checked) > span { color: var(--gold); }

.contact-form__note {
  font-size: 12px;
  color: var(--ash);
  margin-top: var(--space-4);
  text-align: center;
}

/* ============================================================
   TEAM PAGE — Hero owner cards
   ============================================================ */
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-10);
}
@media (max-width: 900px) { .team-page-grid { grid-template-columns: 1fr; } }

.team-page-card {
  background: var(--char);
  border: 1px solid var(--iron);
  position: relative;
  overflow: hidden;
}
.team-page-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.team-page-card__photo {
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, var(--steel) 0%, var(--ink) 100%);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--iron);
  position: relative;
}
.team-page-card__photo img {
  width: 40%; height: 60%; object-fit: contain;
  opacity: 0.8;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.25));
}
.team-page-card__photo .placeholder-label {
  position: absolute; bottom: var(--space-4);
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--ash); text-transform: uppercase;
  font-weight: 600;
}
.team-page-card__body { padding: var(--space-8); }
.team-page-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
  line-height: 1.05;
}
.team-page-card__role {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--bone); text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.team-page-card__credential {
  display: inline-block;
  padding: var(--space-2) var(--space-3);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-5);
}
.team-page-card__quote {
  border-left: 2px solid var(--gold);
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  font-size: 15px;
  color: var(--bone);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: var(--space-5);
}
.team-page-card__bio {
  font-size: 15px;
  color: var(--bone);
  line-height: 1.65;
}
.team-page-card__bio p + p { margin-top: var(--space-4); }

/* ============================================================
   SERVICES PAGE — extended detail
   ============================================================ */
.service-detail {
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--iron);
}
.service-detail:last-child { border-bottom: none; }
/* Non-reverse rows (01, 03, 05) keep original grid layout */
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 900px) {
  .service-detail__inner { grid-template-columns: 1fr; }
}
.service-detail__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--iron);
  aspect-ratio: 4/3;
  width: 100%;
}

/* Reverse rows (02, 04, 06) — image floats right; title + lede wrap;
   bullet list + CTA clear to full width below. */
.service-detail--reverse .service-detail__inner {
  display: block;
}
.service-detail--reverse .service-detail__inner::after {
  content: ''; display: block; clear: both;
}
.service-detail--reverse .service-detail__inner > div:not(.service-detail__media) {
  display: contents;
}
.service-detail--reverse .service-detail__media {
  float: right;
  width: 460px;
  max-width: 48%;
  margin: 0 0 var(--space-6) var(--space-8);
  shape-outside: margin-box;
  aspect-ratio: 4/3;
}
.service-detail--reverse .service-detail__list,
.service-detail--reverse .hero__cta {
  clear: both;
}
@media (max-width: 720px) {
  .service-detail--reverse .service-detail__media {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 var(--space-6) 0;
  }
}
.service-detail__media::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}
.service-detail__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) contrast(1.08);
}

.service-detail__num {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--gold); font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  display: block;
}
.service-detail h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
  margin-bottom: var(--space-5);
}
.service-detail__lede {
  font-size: var(--text-lg);
  color: var(--bone);
  line-height: 1.55;
  margin-bottom: var(--space-6);
}
.service-detail__list {
  list-style: none;
  margin-bottom: var(--space-6);
}
.service-detail__list li {
  position: relative;
  padding-left: var(--space-6);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--iron);
  font-size: 15px;
  color: var(--white);
}
.service-detail__list li::before {
  content: '';
  position: absolute; left: 0; top: calc(var(--space-2) + 8px);
  width: 12px; height: 2px;
  background: var(--gold);
}

/* ============================================================
   WHY PSI page tiles
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-tile {
  padding: var(--space-8) var(--space-6);
  background: var(--char);
  border: 1px solid var(--iron);
  position: relative;
  transition: border-color 200ms ease;
}
.why-tile:hover { border-color: var(--gold); }
.why-tile__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: var(--space-5);
}
.why-tile h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-3);
  line-height: 1.1;
}
.why-tile p {
  font-size: 14px;
  color: var(--bone);
  line-height: 1.55;
}

/* =========================================================
   ADDITIONS — multi-page polish (services gallery, team,
   why/compare, contact, nav active, utilities)
   ========================================================= */

/* --- Nav active state --- */
.nav a.is-current,
.nav a.is-active {
  color: var(--gold, #d4af37);
}
.nav a.is-current::after,
.nav a.is-active::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold, #d4af37);
  margin-top: 4px;
}
.text-gold { color: var(--gold, #d4af37); }

/* --- Page hero title fallback --- */
.page-hero__title { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.02em; }

/* --- Stacked service media (primary + secondary) --- */
.service-detail__media--stacked {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}
.service-detail__media--stacked .service-detail__img--primary {
  width: 100%;
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
  filter: contrast(1.02) saturate(1.03);
}
.service-detail__media--stacked .service-detail__img--secondary {
  width: 70%;
  display: block;
  margin-left: auto;
  margin-top: -64px;
  border: 3px solid var(--gold, #d4af37);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  .service-detail__media--stacked .service-detail__img--secondary {
    width: 78%;
    margin-top: -40px;
  }
}

/* --- Service gallery (mosaic grid) --- */
.service-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 32px;
}
.gallery-grid__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(0,0,0,0.08);
  background: #000;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.gallery-grid__item:hover img { transform: scale(1.04); }
.gallery-grid__item--tall { grid-row: span 2; }
.gallery-grid__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .service-gallery .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 560px) {
  .service-gallery .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-grid__item--tall { grid-row: span 1; }
}

/* --- Overview feature card (homepage 06 monitoring callout) --- */
/* Keep dark theme — just add gold accent + ribbon. Same text colors as siblings. */
.overview-card--feature {
  background: linear-gradient(180deg, var(--char) 0%, var(--char) 60%, rgba(212,175,55,0.12) 100%);
  border-color: var(--gold, #d4af37);
  border-top: 3px solid var(--gold, #d4af37);
  position: relative;
  color: var(--white);
}
.overview-card--feature h3 { color: var(--white); }
.overview-card--feature p { color: var(--bone); }
.overview-card--feature .overview-card__num { color: var(--gold, #d4af37); }
.overview-card--feature .overview-card__more { color: var(--gold, #d4af37); }
.overview-card--feature::before {
  content: "STARTING $49.99 / MO";
  position: absolute;
  top: -1px; right: -1px;
  background: var(--gold, #d4af37);
  color: #000;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  text-transform: uppercase;
}
.overview-card--feature:hover {
  background: linear-gradient(180deg, var(--steel) 0%, var(--steel) 60%, rgba(212,175,55,0.18) 100%);
  border-color: var(--gold, #d4af37);
}

/* --- Team page --- */
.team-member {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.team-member:first-of-type { border-top: 0; }
.team-member__photo { width: 100%; aspect-ratio: 4/5; }
.team-member__role {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #d4af37);
  border-left: 3px solid var(--gold, #d4af37);
  padding-left: 10px;
  margin-bottom: 10px;
}
.team-member__name {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
}
.team-member__creds {
  font-style: italic;
  color: #555;
  margin: 0 0 18px;
  font-size: 0.98rem;
}
.team-member__bio p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2a2a2a;
  margin: 0 0 14px;
}
.team-member__creds-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.team-member__creds-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.95rem;
  color: #222;
}
.team-member__creds-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 2px;
  background: var(--gold, #d4af37);
}
@media (max-width: 760px) {
  .team-member { grid-template-columns: 1fr; gap: 24px; }
  .team-member__creds-list { grid-template-columns: 1fr; }
}

/* --- Values strip --- */
.values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid #000;
}
.values-strip__item { text-align: left; }
.values-strip__num {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  color: var(--gold, #d4af37);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 6px;
}
.values-strip__item h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.values-strip__item p { font-size: 0.95rem; color: #444; margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .values-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values-strip { grid-template-columns: 1fr; } }

/* --- Why-card grid --- */
.why-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 32px 28px;
  position: relative;
}
.why-card__num {
  font-family: "Oswald", sans-serif;
  color: var(--gold, #d4af37);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 10px;
}
.why-card__title {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.why-card p { color: #333; line-height: 1.6; margin: 0; }

/* --- Compare table --- */
.compare-wrap { overflow-x: auto; margin-top: 32px; border: 1px solid rgba(0,0,0,0.12); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 760px;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  vertical-align: middle;
}
.compare-table thead th {
  background: #000;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}
.compare-table thead th.compare-us { background: var(--gold, #d4af37); color: #000; }
.compare-feature { font-weight: 600; color: #000; background: #fafafa; }
.compare-us { background: rgba(212,175,55,0.06); }
.compare-yes {
  color: #1a6b34;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.compare-yes::before { content: "✓"; color: #1a6b34; font-weight: 700; }
.compare-no { color: #a02020; }
.compare-no::before { content: "✕"; color: #a02020; font-weight: 700; margin-right: 6px; }
.compare-warn { color: #8a6500; }
.compare-warn::before { content: "•"; color: #c19a26; font-weight: 700; margin-right: 6px; }
.compare-note { font-size: 0.85rem; color: #555; margin-top: 14px; font-style: italic; }

/* --- Guarantee strip (used on why.html) --- */
.guarantee-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 56px 0;
  border-top: 2px solid var(--gold, #d4af37);
  border-bottom: 2px solid var(--gold, #d4af37);
}
.guarantee-strip__item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.guarantee-strip__item:last-child { border-right: 0; }
.guarantee-strip__big {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 6px;
  color: #000;
}
.guarantee-strip__sub { font-size: 0.92rem; color: #555; }
@media (max-width: 700px) {
  .guarantee-strip { grid-template-columns: 1fr; }
  .guarantee-strip__item { border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .guarantee-strip__item:last-child { border-bottom: 0; }
}

/* --- Contact form (extra) --- */
.field--checklist { border: 0; padding: 0; margin: 0; }
.service-option__box {
  width: 18px; height: 18px;
  border: 2px solid #000;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  margin-top: 3px;
  background: #fff;
}
.service-option input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.service-option input[type="checkbox"]:checked + .service-option__box {
  background: var(--gold, #d4af37);
  border-color: var(--gold, #d4af37);
}
.service-option input[type="checkbox"]:checked + .service-option__box::after {
  content: "";
  position: absolute;
  left: 3px; top: 0px;
  width: 6px; height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.service-option__text { display: flex; flex-direction: column; }
.service-option__text strong { color: #000; font-size: 0.98rem; }
.service-option__text em { color: #555; font-style: normal; font-size: 0.85rem; margin-top: 2px; }
.service-option {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
  background: #fff;
}
.service-option:hover { border-color: var(--gold, #d4af37); }
.service-option input[type="checkbox"]:checked ~ * { /* no-op anchor */ }
.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 640px) { .service-options { grid-template-columns: 1fr; } }

/* --- Contact sidebar --- */
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 22px 24px;
}
.contact-card__head {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--gold, #d4af37);
  display: block;
  margin-bottom: 10px;
}
.contact-card__big {
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  color: #000;
  text-decoration: none;
  display: block;
  letter-spacing: 0.02em;
}
.contact-card__sub { color: #555; font-size: 0.9rem; display: block; margin-top: 4px; }
.contact-card__line { color: #222; display: block; line-height: 1.5; font-size: 0.95rem; }
.contact-card a { color: #000; text-decoration: none; }
.contact-card a:hover { color: var(--gold, #d4af37); }
.contact-card--accent { background: #000; color: #fff; }
.contact-card--accent .contact-card__head { color: var(--gold, #d4af37); }
.contact-card--accent .contact-card__line,
.contact-card--accent ul li,
.contact-card--accent ul { color: #eee; }
.contact-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.contact-card ul li { padding-left: 18px; position: relative; font-size: 0.95rem; }
.contact-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 10px; height: 2px;
  background: var(--gold, #d4af37);
}

/* ============================================================
   CONTACT PAGE — Direct Contact Panel (phone + email cards)
   ============================================================ */
.contact-direct {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-top: 3px solid var(--gold, #d4af37);
  padding: 36px 36px 32px;
}
@media (max-width: 600px) { .contact-direct { padding: 26px 22px 24px; } }

.contact-direct__head { margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.contact-direct__head .eyebrow { color: var(--gold, #d4af37); font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem; display: block; margin-bottom: 10px; font-weight: 600; }
.contact-direct__title { color: #000; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.01em; font-size: 1.75rem; line-height: 1.05; margin: 0 0 10px; }
.contact-direct__lede { color: #444; font-size: 0.94rem; line-height: 1.55; margin: 0; }

.contact-direct__grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 24px; }

.contact-direct__card {
  display: block;
  text-decoration: none;
  padding: 22px 24px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fafafa;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
  position: relative;
  overflow: hidden;
}
.contact-direct__card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold, #d4af37);
  transition: width 200ms ease;
}
.contact-direct__card:hover { border-color: var(--gold, #d4af37); background: #fff; transform: translateY(-1px); }
.contact-direct__card:hover::before { width: 6px; }

.contact-direct__card--phone { background: #000; border-color: #000; }
.contact-direct__card--phone .contact-direct__eyebrow { color: var(--gold, #d4af37); }
.contact-direct__card--phone .contact-direct__big { color: #fff; }
.contact-direct__card--phone .contact-direct__sub { color: #cfcfcf; }
.contact-direct__card--phone .contact-direct__cta { color: var(--gold, #d4af37); }
.contact-direct__card--phone:hover { background: #0a0a0a; border-color: var(--gold, #d4af37); }

.contact-direct__eyebrow { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; color: var(--gold, #d4af37); margin-bottom: 8px; font-weight: 600; }
.contact-direct__big { display: block; font-family: "Oswald", sans-serif; font-size: 2rem; letter-spacing: 0.02em; color: #000; line-height: 1.05; margin-bottom: 8px; word-break: break-word; }
.contact-direct__big--sm { font-size: 1.25rem; letter-spacing: 0.005em; }
.contact-direct__sub { display: block; color: #555; font-size: 0.88rem; line-height: 1.45; margin-bottom: 10px; }
.contact-direct__cta { display: inline-block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: #000; font-weight: 600; }

.contact-direct__promises { padding-top: 22px; border-top: 1px solid rgba(0,0,0,0.08); }
.contact-direct__promises-head { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; color: var(--gold, #d4af37); margin-bottom: 12px; font-weight: 600; }
.contact-direct__promises ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.contact-direct__promises li { padding-left: 18px; position: relative; font-size: 0.92rem; line-height: 1.5; color: #333; }
.contact-direct__promises li strong { color: #000; font-weight: 600; }
.contact-direct__promises li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 10px; height: 2px; background: var(--gold, #d4af37); }

/* ============================================================
   CONTACT PAGE — Form wrap + Field styles (light card on dark)
   ============================================================ */
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-top: 3px solid var(--gold, #d4af37);
  padding: 32px 32px 36px;
}
@media (max-width: 600px) { .contact-form-wrap { padding: 24px 20px 28px; } }

.contact-form-head { margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.contact-form-head .eyebrow { color: var(--gold, #d4af37); font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; display: block; margin-bottom: 8px; }
.contact-form-head h2 { color: #000; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.6rem; margin: 0 0 8px; }
.contact-form-lede { color: #444; font-size: 0.92rem; line-height: 1.55; margin: 0; }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form .form-row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .contact-form .form-row { grid-template-columns: 1fr; } }

.contact-form .field {
  display: block;
  margin-bottom: 14px;
}
.contact-form .field--checklist { margin-top: 8px; margin-bottom: 18px; border: 0; padding: 0; }
.contact-form .field__label {
  display: block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 7px;
}
.contact-form .field__opt { color: #777; font-weight: 400; letter-spacing: 0.06em; text-transform: none; font-family: "Inter", sans-serif; font-size: 0.78rem; margin-left: 4px; }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.18);
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 11px 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  border-radius: 0;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #999; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold, #d4af37);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.18);
}
.contact-form textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%); background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 32px; }

.form-consent { margin: 16px 0 18px; }
.form-consent .consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: #333; line-height: 1.45; cursor: pointer; }
.form-consent .consent input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold, #d4af37); flex-shrink: 0; }

.form-submit { display: flex; flex-direction: column; align-items: center; gap: 10px; padding-top: 8px; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 22px; }
.form-submit .btn--lg { padding: 16px 36px; font-size: 0.95rem; letter-spacing: 0.12em; min-width: 280px; }
.form-submit__note { font-size: 0.82rem; color: #555; text-align: center; margin: 0; }
.form-submit__note a { color: #000; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.form-submit__note a:hover { color: var(--gold, #d4af37); }

/* Contact card details (text colors) */
.contact-card p { color: #222; font-size: 0.92rem; line-height: 1.5; margin: 0 0 8px; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card p strong { color: #000; }
.contact-card .contact-card__big { margin: 4px 0 8px; }
.contact-card--accent p,
.contact-card--accent p strong { color: #eee; }
.contact-card--accent .contact-promises { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.contact-card--accent .contact-promises li { padding-left: 16px; position: relative; font-size: 0.9rem; line-height: 1.45; color: #e8e8e8; }
.contact-card--accent .contact-promises li strong { color: var(--gold, #d4af37); font-weight: 600; }
.contact-card--accent .contact-promises li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 2px; background: var(--gold, #d4af37); }

/* --- Service area grid (contact page) --- */
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
  margin-top: 28px;
}
.service-area-cell {
  background: #fff;
  padding: 18px 12px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: #000;
}
.service-area-note { font-size: 0.9rem; color: #555; margin-top: 14px; text-align: center; }
@media (max-width: 700px) { .service-area-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   ============================================================
   OVERHAUL PASS — May 24 2026
   Final visual unification + dark-theme card adjustments.
   This block intentionally lives at the end so it wins specificity.
   ============================================================
   ============================================================ */

/* ---------- Menu toggle (visible hamburger) ---------- */
.menu-toggle {
  background: transparent;
  border: 1px solid var(--iron);
  color: var(--white);
  width: 44px; height: 44px;
  display: none;
  align-items: center; justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}
.menu-toggle:hover { border-color: var(--gold, #d4af37); background: rgba(212,175,55,0.06); }
.menu-toggle svg { display: block; color: var(--white); }
.menu-toggle:hover svg { color: var(--gold, #d4af37); }
.menu-toggle[aria-expanded="true"] { background: var(--gold, #d4af37); border-color: var(--gold, #d4af37); }
.menu-toggle[aria-expanded="true"] svg { color: #000; }
@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
  .nav { display: none !important; }
  .header__actions .btn--call { display: none; }
}

/* ---------- Nav: add Home + tighter spacing + clearer active state ---------- */
.nav { gap: 24px; }
.nav a {
  position: relative;
  padding: 6px 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--bone);
  font-weight: 600;
  transition: color 180ms ease;
}
.nav a:hover { color: var(--white); }
.nav a.is-active { color: var(--gold, #d4af37); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--gold, #d4af37);
}

/* ---------- TEAM PAGE — Member cards (dark theme, premium) ---------- */
.team-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 8px;
}
.team-member {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  background: linear-gradient(180deg, var(--char) 0%, #0d0d0d 100%);
  border: 1px solid var(--iron);
  border-top: 3px solid var(--gold, #d4af37);
  padding: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .team-member { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
}
.team-member__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--iron);
  background: #000;
}
.team-member__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.95);
}
.team-member__role {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--gold, #d4af37);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-member__name {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 2rem;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.05;
}
.team-member__creds {
  color: var(--bone);
  font-size: 0.95rem;
  margin: 0 0 18px;
  font-weight: 500;
}
.team-member__bio { color: var(--bone); }
.team-member__bio p { color: var(--bone); font-size: 0.96rem; line-height: 1.65; margin: 0 0 12px; }
.team-member__bio p:last-child { margin-bottom: 0; }
.team-member__bio strong { color: var(--white); }
.team-member__creds-list {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--iron);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-member__creds-list li {
  color: var(--bone);
  font-size: 0.9rem;
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.team-member__creds-list li strong { color: var(--gold, #d4af37); font-weight: 600; }
.team-member__creds-list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 2px; background: var(--gold, #d4af37);
}

/* Values strip on dark section--ink */
.section--ink {
  background: var(--ink);
  color: var(--white);
}
.section--ink .section__title { color: var(--white); }
.values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--iron);
  border-bottom: 1px solid var(--iron);
}
.values-strip__item {
  text-align: left;
  padding: 20px 24px 20px 0;
  border-right: 1px solid var(--iron);
}
.values-strip__item:last-child { border-right: 0; padding-right: 0; }
.values-strip__num {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  color: var(--gold, #d4af37);
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.values-strip__item h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.values-strip__item p { font-size: 0.92rem; color: var(--bone); margin: 0; line-height: 1.55; }
@media (max-width: 900px) {
  .values-strip { grid-template-columns: repeat(2, 1fr); }
  .values-strip__item { padding: 16px; border: 1px solid var(--iron); }
}
@media (max-width: 520px) {
  .values-strip { grid-template-columns: 1fr; }
}

/* ---------- WHY PSI — Card grid (dark theme) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: linear-gradient(180deg, var(--char) 0%, #0d0d0d 100%);
  border: 1px solid var(--iron);
  border-top: 3px solid var(--gold, #d4af37);
  padding: 28px 24px;
  color: var(--white);
  transition: border-color 200ms ease, transform 200ms ease;
}
.why-card:hover { border-top-color: var(--gold, #d4af37); transform: translateY(-2px); }
.why-card__num {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.74rem;
  color: var(--gold, #d4af37);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  font-weight: 600;
}
.why-card__title {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.why-card p { color: var(--bone); font-size: 0.93rem; line-height: 1.6; margin: 0; }
.why-card p + p { margin-top: 10px; }

/* ---------- WHY PSI — Compare table (refined, less aggressive) ---------- */
.compare-wrap {
  background: var(--char);
  border: 1px solid var(--iron);
  padding: 0;
  overflow-x: auto;
  margin-top: 24px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  color: var(--white);
}
.compare-table thead th {
  background: #000;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid var(--iron);
}
.compare-table thead th.compare-us {
  background: var(--gold, #d4af37);
  color: #000;
}
.compare-table tbody td {
  padding: 14px;
  border-bottom: 1px solid var(--iron);
  font-size: 0.9rem;
  color: var(--bone);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-feature {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: var(--white);
  background: #0a0a0a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.compare-us {
  background: rgba(212,175,55,0.08);
  color: var(--white);
  font-weight: 600;
}
.compare-yes { color: #74c585; font-weight: 600; }
.compare-yes::before { content: "✓ "; color: #74c585; font-weight: 700; }
.compare-no { color: #e08585; }
.compare-no::before { content: "✕ "; color: #e08585; font-weight: 700; }
.compare-warn { color: #e0b85a; }
.compare-warn::before { content: "• "; color: #e0b85a; font-weight: 700; }
.compare-note { font-size: 0.82rem; color: var(--ash); margin-top: 14px; font-style: italic; padding: 0 14px 14px; }

/* ---------- CONTACT PAGE — Refine the white cards (less aggressive) ---------- */
.contact-card {
  background: linear-gradient(180deg, var(--char) 0%, #0d0d0d 100%);
  border: 1px solid var(--iron);
  border-top: 3px solid var(--gold, #d4af37);
  padding: 22px 24px;
  color: var(--white);
}
.contact-card__head {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--gold, #d4af37);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-card__big {
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  color: var(--white);
  text-decoration: none;
  display: block;
  letter-spacing: 0.02em;
  margin: 2px 0 6px;
}
.contact-card__big:hover { color: var(--gold, #d4af37); }
.contact-card__line { color: var(--bone); display: block; line-height: 1.55; font-size: 0.92rem; }
.contact-card__line strong { color: var(--white); }
.contact-card a { color: var(--gold, #d4af37); text-decoration: none; }
.contact-card p { color: var(--bone); font-size: 0.92rem; line-height: 1.5; margin: 0 0 8px; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card p strong { color: var(--white); }

/* Accent variant — keep slightly different but still dark-themed */
.contact-card--accent {
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border-color: var(--gold, #d4af37);
  border-top-color: var(--gold, #d4af37);
}
.contact-card--accent .contact-card__head { color: var(--gold, #d4af37); }
.contact-card--accent .contact-promises { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.contact-card--accent .contact-promises li {
  padding-left: 16px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--bone);
}
.contact-card--accent .contact-promises li strong { color: var(--gold, #d4af37); font-weight: 600; }
.contact-card--accent .contact-promises li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 2px; background: var(--gold, #d4af37);
}

/* Contact direct panel — also refine to dark theme (was white) */
.contact-direct {
  background: linear-gradient(180deg, var(--char) 0%, #0d0d0d 100%);
  border: 1px solid var(--iron);
  border-top: 3px solid var(--gold, #d4af37);
  padding: 36px;
  color: var(--white);
}
@media (max-width: 600px) { .contact-direct { padding: 24px; } }
.contact-direct__head { margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--iron); }
.contact-direct__head .eyebrow { color: var(--gold, #d4af37); }
.contact-direct__title { color: var(--white); }
.contact-direct__lede { color: var(--bone); }
.contact-direct__card {
  background: var(--ink);
  border: 1px solid var(--iron);
  color: var(--white);
}
.contact-direct__card:hover { background: #050505; border-color: var(--gold, #d4af37); }
.contact-direct__card--phone { background: linear-gradient(180deg, #050505 0%, #000 100%); border-color: var(--gold, #d4af37); }
.contact-direct__card--phone:hover { background: #000; border-color: var(--gold, #d4af37); }
.contact-direct__big { color: var(--white); }
.contact-direct__sub { color: var(--bone); }
.contact-direct__cta { color: var(--gold, #d4af37); }
.contact-direct__promises-head { color: var(--gold, #d4af37); }
.contact-direct__promises li { color: var(--bone); }
.contact-direct__promises li strong { color: var(--white); }

/* Service area grid on contact page — dark theme cells */
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--iron);
  border: 1px solid var(--iron);
  margin-top: 28px;
}
.service-area-cell {
  background: var(--char);
  padding: 18px 12px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease;
}
.service-area-cell:hover { background: rgba(212,175,55,0.08); color: var(--gold, #d4af37); }
.service-area-note { font-size: 0.88rem; color: var(--ash); margin-top: 14px; text-align: center; }
@media (max-width: 700px) { .service-area-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- SERVICES PAGE — Single clean image per service (no broken dual stack) ---------- */
.service-media { display: block; }
.service-media .service-media__primary,
.service-media .service-media__secondary,
.service-media__primary,
.service-media__secondary { position: static !important; transform: none !important; }
.service-media img,
.service-media__primary img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--iron);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-media__secondary { display: none !important; }
.service { gap: 48px; }

/* Service detail row layout — solid */
.service__media-wrap {
  position: relative;
  background: var(--char);
  border: 1px solid var(--iron);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service__media-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Typography: tighten sizes site-wide ---------- */
.section__title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}
.section__head .section__title { margin-top: 10px; }
.section__head { margin-bottom: 32px; }
.section__head p { color: var(--bone); font-size: 1rem; line-height: 1.55; margin-top: 14px; max-width: 680px; }

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.005em;
  line-height: 1.02;
}
.page-hero__lede { font-size: 1.02rem; line-height: 1.6; color: var(--bone); margin-top: 16px; max-width: 720px; }

.eyebrow {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--gold, #d4af37);
  font-weight: 600;
}

/* ---------- Hero homepage typography ---------- */
.hero__title { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.0; letter-spacing: 0.005em; }
.hero__lede { font-size: 1.02rem; line-height: 1.6; }

/* ---------- Trust strip refine ---------- */
.trust-strip { padding: 14px 0; }
.trust-strip__item { font-size: 0.74rem; letter-spacing: 0.14em; }

/* ---------- Overview-card: tighter spacing + clearer hierarchy ---------- */
.overview-card { min-height: 240px; }
.overview-card h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  line-height: 1.15;
  margin: 8px 0 10px;
  color: var(--white);
}
.overview-card p { color: var(--bone); font-size: 0.86rem; line-height: 1.55; margin: 0; flex: 1; }
.overview-card__num {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  color: var(--gold, #d4af37);
  letter-spacing: 0.18em;
  font-weight: 600;
}
.overview-card__more {
  margin-top: 16px;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--gold, #d4af37);
  font-weight: 600;
}

/* ---------- Section padding rhythm ---------- */
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section--ink { background: var(--ink); }
.section--cta { background: linear-gradient(180deg, #0a0a0a, #000); padding: 80px 0; }

/* ---------- Footer breathing ---------- */
.footer__top { padding-bottom: 24px; }
.footer__cols a { font-size: 0.86rem; }
.footer__cols strong { font-size: 0.78rem; letter-spacing: 0.16em; }

/* ---------- Owner frame (about section on home + team) ---------- */
.owner-frame__photo--filled { background: #000; }
.owner-frame__photo--filled img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Guarantee strip (why page) ---------- */
.guarantee-strip {
  background: var(--char);
  border-top: 1px solid var(--gold, #d4af37);
  border-bottom: 1px solid var(--gold, #d4af37);
  margin: 40px 0;
  padding: 0;
}
.guarantee-strip__item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--iron);
}
.guarantee-strip__item:last-child { border-right: 0; }
.guarantee-strip__head,
.guarantee-strip__big {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.guarantee-strip__sub { font-size: 0.9rem; color: var(--bone); }

/* ---------- Form success message (when form submits with placeholder action) ---------- */
.form-success {
  padding: 28px;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--gold, #d4af37);
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}
.form-success strong { color: var(--gold, #d4af37); display: block; margin-bottom: 6px; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== About — solo layout (no portrait) ===== */
.about.about--solo {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.about.about--solo .about__copy { max-width: none; }
.about.about--solo .about__callouts {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 720px) {
  .about.about--solo .about__callouts {
    grid-template-columns: repeat(2, 1fr);
  }
}
