/* =========================================================================
   HM SECURITY — Design System
   Style: Trust & Authority  |  Palette: Deep Navy + Gold
   ========================================================================= */

/* ----- Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ----- Design Tokens ----- */
:root {
  /* Brand */
  --navy-950: #050f1e;
  --navy-900: #071426;
  --navy-850: #0a1a2f;
  --navy-800: #0d2038;
  --navy-700: #123054;
  --navy-600: #1c4172;
  --steel-400: #6b829f;
  --steel-300: #9fb0c6;

  --gold: #c8a24b;
  --gold-bright: #e2bd63;
  --gold-soft: rgba(200, 162, 75, 0.14);
  --cta-glow: rgba(200, 162, 75, 0.32);

  /* Neutrals */
  --white: #ffffff;
  --paper: #f5f7fa;
  --paper-2: #eef2f7;
  --ink-900: #0f1b2d;
  --ink-700: #35465c;
  --ink-500: #5f7185;
  --line: #dce3ec;

  /* Semantic */
  --bg: var(--paper);
  --text: var(--ink-900);
  --muted: var(--ink-500);

  /* Type */
  --font-head: 'Barlow Semi Condensed', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(7, 20, 38, 0.08), 0 1px 2px rgba(7, 20, 38, 0.06);
  --shadow-md: 0 10px 30px rgba(7, 20, 38, 0.12);
  --shadow-lg: 0 24px 60px rgba(7, 20, 38, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --header-h: 76px;
}

/* ----- Colour themes (switchable via data-theme on <html>) ----- */
html[data-theme="blue"] {
  --navy-950: #070b12; --navy-900: #0c121c; --navy-850: #111826; --navy-800: #172032; --navy-700: #213047; --navy-600: #2f455f;
  --gold: #3d8bfd; --gold-bright: #63a4ff; --gold-soft: rgba(61,139,253,0.16); --cta-glow: rgba(61,139,253,0.34);
}
html[data-theme="red"] {
  --navy-950: #0c0d10; --navy-900: #131418; --navy-850: #1a1c22; --navy-800: #22252c; --navy-700: #2f333c; --navy-600: #434955;
  --gold: #e5484d; --gold-bright: #f2686c; --gold-soft: rgba(229,72,77,0.16); --cta-glow: rgba(229,72,77,0.34);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ----- Utilities ----- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow--center::after { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin: 14px 0 0;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.lead { color: var(--muted); font-size: 1.075rem; max-width: 62ch; }
.center .lead { margin-inline: auto; }
.gold { color: var(--gold); }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--gold); color: var(--navy-900); padding: 10px 18px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; letter-spacing: 0.02em;
  padding: 14px 26px; border-radius: var(--radius); border: 2px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  min-height: 48px; text-transform: uppercase; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--gold); color: var(--navy-900); box-shadow: 0 8px 22px var(--cta-glow); }
.btn--primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--dark { background: var(--navy-800); color: var(--white); }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(7, 20, 38, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled { background: var(--navy-900); box-shadow: var(--shadow-md); }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { height: 48px; width: auto; flex-shrink: 0; display: block; }
img.brand__mark { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.site-footer .brand__mark { height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; letter-spacing: 0.04em;
  color: var(--white); text-transform: uppercase;
}
.brand__name b { color: var(--white); }
.brand__tag { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: 1rem; color: rgba(255, 255, 255, 0.86);
  padding: 10px 15px; border-radius: var(--radius); position: relative; transition: color 0.2s;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.nav__links a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--gold); }

/* Services hover dropdown */
.nav__has-sub { position: relative; display: inline-flex; align-items: center; }
.nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 260px; padding: 10px;
  background: var(--navy-900); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.nav__has-sub:hover .nav__sub, .nav__has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: var(--radius); color: rgba(255,255,255,0.86); font-size: 0.94rem; letter-spacing: 0; text-transform: none; font-weight: 500; }
.nav__sub a::after { display: none; }
.nav__sub a:hover { background: rgba(255,255,255,0.07); color: var(--gold); }
.nav__sub a svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: flex; align-items: center; gap: 8px; color: var(--white); font-family: var(--font-head); font-weight: 600; }
.nav__phone svg { width: 18px; height: 18px; color: var(--gold); }
.nav__phone span { font-size: 0.7rem; display: block; color: var(--steel-300); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.nav__phone strong { font-size: 1.05rem; letter-spacing: 0.02em; }

.nav__toggle {
  display: none; width: 46px; height: 46px; background: transparent; border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius); flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  padding: calc(var(--header-h) + 30px) 0 54px;
  background: linear-gradient(165deg, var(--navy-850) 0%, var(--navy-950) 100%);
}
.hero__badge-loc-sm { display: none; }
.hero::before {
  content: ""; position: absolute; top: -30%; right: -14%; width: 68%; height: 140%; z-index: 0;
  background: radial-gradient(closest-side, var(--gold-soft), transparent 72%); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.6;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 46px 46px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 72%); mask-image: linear-gradient(180deg, #000, transparent 72%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 500; color: var(--steel-300);
}
.hero__badge b { color: var(--white); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #35d07f; box-shadow: 0 0 0 4px rgba(53,208,127,0.2); }
.hero__slogan { display: block; font-family: var(--font-head); font-weight: 700; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; font-size: 1rem; margin-top: 16px; }
.hero h1 { font-size: clamp(1.95rem, 4.1vw, 3.4rem); text-transform: uppercase; letter-spacing: -0.01em; }
.hero h1 .gold { display: block; }
.hero__sub { font-size: clamp(1.02rem, 1.55vw, 1.2rem); color: rgba(232,238,246,0.9); margin: 22px 0 30px; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 28px; }
.hero__point { display: flex; align-items: center; gap: 8px; color: var(--steel-300); font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.02em; }
.hero__point svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; }

/* hero visual */
.hero__visual { position: relative; }
.hero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.12); aspect-ratio: 4 / 4.3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(5,15,30,0.55)); }
.hero__rating {
  position: absolute; top: 22px; right: -14px; z-index: 3; display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-900); border-radius: 100px; padding: 9px 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.02em; box-shadow: var(--shadow-lg);
}
.hero__rating .stars { display: inline-flex; gap: 2px; }
.hero__rating svg { width: 15px; height: 15px; }
.hero__float {
  position: absolute; left: -20px; bottom: 30px; z-index: 3; display: flex; align-items: center; gap: 14px;
  background: rgba(10,26,47,0.86); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg); padding: 15px 20px; box-shadow: var(--shadow-lg);
}
.hero__float .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid rgba(200,162,75,0.4); flex-shrink: 0; }
.hero__float .ic svg { width: 24px; height: 24px; color: var(--gold); }
.hero__float .t { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 1.02rem; line-height: 1.1; }
.hero__float .s { font-size: 0.8rem; color: var(--steel-300); margin-top: 2px; }

/* stats band under hero */
.hero__stats { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 44px; margin-top: 52px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.14); }
.hero__stat .num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--white); line-height: 1; }
.hero__stat .num .gold { display: inline; }
.hero__stat .label { font-size: 0.86rem; color: var(--steel-300); margin-top: 6px; letter-spacing: 0.04em; }

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 42px; }
  .hero__visual { max-width: 540px; }
  .hero::before { width: 110%; }
}
@media (max-width: 560px) {
  .hero { padding-top: calc(var(--header-h) + 20px); }
  .hero__badge { align-items: center; }
  .hero__badge-loc { display: none; }
  .hero__badge-loc-sm { display: inline; }
  .hero__float { left: 10px; padding: 12px 14px; gap: 11px; }
  .hero__float .ic { width: 40px; height: 40px; }
  .hero__rating { right: 8px; top: 12px; }
  .hero__stats { gap: 22px 30px; margin-top: 40px; }
}

/* =========================================================================
   TRUST BAR
   ========================================================================= */
.trustbar { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.06); padding: 26px 0; }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.trustbar__item { display: flex; align-items: center; gap: 11px; color: var(--steel-300); font-family: var(--font-head); font-weight: 500; letter-spacing: 0.04em; }
.trustbar__item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.trustbar__item b { color: var(--white); }

/* =========================================================================
   SECTION HELPERS
   ========================================================================= */
.section--dark { background: var(--navy-900); color: var(--white); }
.section--dark .lead { color: var(--steel-300); }
.section--navy { background: linear-gradient(160deg, var(--navy-850), var(--navy-950)); color: var(--white); }
.section--navy .lead { color: var(--steel-300); }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; }

/* =========================================================================
   SERVICES GRID
   ========================================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px; }
.svc-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 400px;
  display: flex; flex-direction: column; justify-content: flex-end; color: var(--white);
  background: var(--navy-800); box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-card__img { position: absolute; inset: 0; z-index: 0; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, var(--navy-950) 8%, rgba(7,20,38,0.78) 40%, rgba(7,20,38,0.15) 100%);
}
.svc-card__body { position: relative; z-index: 2; padding: 30px 28px 32px; }
.svc-card__icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px;
  background: var(--gold-soft); border: 1px solid rgba(200,162,75,0.4); margin-bottom: 18px;
}
.svc-card__icon svg { width: 26px; height: 26px; color: var(--gold); }
.svc-card h3 { font-size: 1.5rem; text-transform: uppercase; }
.svc-card p { color: rgba(232,238,246,0.82); margin: 10px 0 16px; font-size: 0.96rem; }
.svc-card__link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.04em; }
.svc-card__link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.svc-duration { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); background: var(--gold-soft); border: 1px solid rgba(200,162,75,0.4); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.svc-duration svg { width: 15px; height: 15px; }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card:hover .svc-card__link svg { transform: translateX(5px); }

/* =========================================================================
   FEATURE / WHY-US SPLIT
   ========================================================================= */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split__badge {
  position: absolute; bottom: -26px; right: -10px; background: var(--gold); color: var(--navy-900);
  padding: 20px 26px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 220px;
}
.split__badge .n { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1; }
.split__badge .t { font-weight: 600; font-size: 0.92rem; margin-top: 4px; }

.feature-list { display: grid; gap: 22px; margin-top: 30px; }
.feature-item { display: flex; gap: 16px; }
.feature-item__icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  background: var(--gold-soft); border: 1px solid rgba(200,162,75,0.35);
}
.feature-item__icon svg { width: 23px; height: 23px; color: var(--gold); }
.section--dark .feature-item__icon, .section--navy .feature-item__icon { background: var(--gold-soft); }
.feature-item h4 { font-family: var(--font-head); font-size: 1.24rem; text-transform: uppercase; letter-spacing: 0.01em; }
.feature-item p { margin: 5px 0 0; color: var(--muted); font-size: 0.97rem; }
.section--dark .feature-item p, .section--navy .feature-item p { color: var(--steel-300); }

/* =========================================================================
   STATS STRIP
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; padding: 10px; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--gold); line-height: 1; }
.stat .label { color: var(--steel-300); margin-top: 10px; font-size: 0.95rem; letter-spacing: 0.03em; }

/* =========================================================================
   INDUSTRIES
   ========================================================================= */
.ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.ind-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 260px;
  display: flex; align-items: flex-end; color: var(--white); box-shadow: var(--shadow-md);
}
.ind-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); z-index: 0; }
.ind-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, var(--navy-950) 5%, rgba(7,20,38,0.15) 85%); }
.ind-card__label { position: relative; z-index: 2; padding: 22px 24px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.ind-card__label h4 { font-family: var(--font-head); font-size: 1.28rem; text-transform: uppercase; letter-spacing: 0.02em; }
.ind-card__label svg { width: 20px; height: 20px; color: var(--gold); opacity: 0; transform: translateX(-6px); transition: 0.3s var(--ease); }
.ind-card:hover img { transform: scale(1.07); }
.ind-card:hover .ind-card__label svg { opacity: 1; transform: translateX(0); }

/* =========================================================================
   PROCESS STEPS
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 32px 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.section--dark .step, .section--navy .step { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.step__n { font-family: var(--font-head); font-weight: 800; font-size: 3rem; color: var(--gold); line-height: 1; opacity: 0.9; }
.step h4 { font-family: var(--font-head); font-size: 1.3rem; margin-top: 12px; text-transform: uppercase; }
.section--dark .step h4, .section--navy .step h4 { color: var(--white); }
.step p { margin: 8px 0 0; color: var(--muted); font-size: 0.96rem; }
.section--dark .step p, .section--navy .step p { color: var(--steel-300); }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.section--navy .quote, .section--dark .quote { background: rgba(255,255,255,0.045); border-color: rgba(255,255,255,0.1); }
.quote__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.quote__stars svg { width: 20px; height: 20px; }
.quote__text { font-size: 1.06rem; line-height: 1.6; flex: 1; }
.section--navy .quote__text, .section--dark .quote__text { color: #eaf0f7; }
.quote__author { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.section--navy .quote__author, .section--dark .quote__author { border-color: rgba(255,255,255,0.12); }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; border: 1px solid rgba(200,162,75,0.4); }
.quote__name { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.section--navy .quote__name, .section--dark .quote__name { color: var(--white); }
.quote__role { font-size: 0.86rem; color: var(--muted); }
.section--navy .quote__role, .section--dark .quote__role { color: var(--steel-400); }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band { position: relative; overflow: hidden; background: var(--navy-900); color: var(--white); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, var(--navy-950) 20%, color-mix(in srgb, var(--navy-950) 55%, transparent)); }
.cta-band__inner { position: relative; z-index: 2; text-align: center; padding: 84px 0; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.3rem); text-transform: uppercase; }
.cta-band p { color: var(--steel-300); font-size: 1.12rem; max-width: 56ch; margin: 18px auto 32px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* =========================================================================
   PAGE HERO (inner pages)
   ========================================================================= */
.page-hero { position: relative; padding: calc(var(--header-h) + 70px) 0 74px; color: var(--white); background: var(--navy-900); 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.4; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, var(--navy-950) 20%, rgba(7,20,38,0.62)); }
.page-hero__inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); text-transform: uppercase; margin-top: 14px; }
.page-hero p { color: var(--steel-300); font-size: 1.14rem; margin-top: 18px; max-width: 60ch; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--steel-400); font-family: var(--font-head); letter-spacing: 0.03em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 14px; height: 14px; }

/* =========================================================================
   DETAILED SERVICE ROWS
   ========================================================================= */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 30px 0; }
.svc-row--rev .svc-row__media { order: 2; }
.svc-row__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.svc-row__tag { font-family: var(--font-head); font-weight: 700; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.86rem; }
.svc-row h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); text-transform: uppercase; margin: 10px 0 14px; }
.svc-row__points { display: grid; gap: 12px; margin-top: 22px; }
.svc-row__point { display: flex; gap: 12px; align-items: flex-start; }
.svc-row__point svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.svc-row__point span { color: var(--ink-700); }
.svc-anchor { scroll-margin-top: calc(var(--header-h) + 20px); }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* =========================================================================
   ABOUT — OWNERS / VALUES
   ========================================================================= */
.owners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.owner {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm); display: flex; gap: 22px; align-items: center;
}
.owner__avatar {
  width: 92px; height: 92px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); color: var(--gold);
  font-family: var(--font-head); font-weight: 800; font-size: 2rem; border: 3px solid var(--gold);
}
.owner h3 { font-size: 1.5rem; text-transform: uppercase; }
.owner .role { color: var(--gold); font-family: var(--font-head); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.9rem; }
.owner p { color: var(--muted); margin: 10px 0 0; font-size: 0.95rem; }

.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value { padding: 30px 26px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }
.value__icon { width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid rgba(200,162,75,0.4); margin-bottom: 18px; }
.value__icon svg { width: 27px; height: 27px; color: var(--gold); }
.value h4 { font-family: var(--font-head); font-size: 1.34rem; text-transform: uppercase; color: var(--white); }
.value p { color: var(--steel-300); margin: 8px 0 0; font-size: 0.96rem; }

/* =========================================================================
   BLOG
   ========================================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.post-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__cat {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--gold); color: var(--navy-900);
  font-family: var(--font-head); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.post-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.84rem; margin-bottom: 12px; }
.post-card__meta svg { width: 15px; height: 15px; color: var(--gold); }
.post-card h3 { font-size: 1.32rem; text-transform: none; letter-spacing: -0.01em; line-height: 1.2; }
.post-card h3 a:hover { color: var(--gold); }
.post-card p { color: var(--muted); margin: 10px 0 18px; font-size: 0.96rem; flex: 1; }
.post-card__link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: 0.86rem; letter-spacing: 0.04em; }
.post-card__link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.post-card__link:hover svg { transform: translateX(5px); }

/* Single article */
.article { max-width: 780px; margin-inline: auto; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; color: var(--muted); font-size: 0.9rem; margin: 18px 0 26px; }
.article__meta .cat { background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(200,162,75,0.4); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.78rem; padding: 4px 11px; border-radius: 100px; }
.article__meta svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.article__cover { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 34px; aspect-ratio: 16/8; }
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article__body { font-size: 1.08rem; line-height: 1.75; color: var(--ink-700); }
.article__body h2 { font-size: 1.7rem; color: var(--ink-900); margin: 36px 0 14px; text-transform: none; letter-spacing: -0.01em; }
.article__body h3 { font-size: 1.28rem; color: var(--ink-900); margin: 28px 0 10px; text-transform: none; }
.article__body p { margin: 0 0 18px; }
.article__body ul { margin: 0 0 18px; padding-left: 4px; display: grid; gap: 10px; }
.article__body li { display: flex; gap: 12px; align-items: flex-start; }
.article__body li svg { width: 21px; height: 21px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.article__body strong { color: var(--ink-900); }
.article__cta { margin-top: 40px; padding: 30px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center; }
.article__cta h3 { font-family: var(--font-head); font-size: 1.5rem; text-transform: uppercase; margin-bottom: 8px; }
.article__cta p { color: var(--muted); margin-bottom: 20px; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 24px 26px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card__icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: var(--navy-900); flex-shrink: 0; }
.contact-card__icon svg { width: 25px; height: 25px; color: var(--gold); }
.contact-card .k { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; color: var(--muted); }
.contact-card .v { font-size: 1.18rem; font-weight: 600; color: var(--ink-900); margin-top: 2px; }
.contact-card .v:hover { color: var(--gold); }
.contact-card small { color: var(--muted); }

.form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.03em; }
.field label .req { color: #d9534f; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; color: var(--ink-900); background: var(--paper); transition: border 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); background: var(--white); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.86rem; color: var(--muted); margin-top: 6px; }
.form-status { margin-top: 14px; padding: 13px 16px; border-radius: var(--radius); font-weight: 500; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e7f6ee; color: #1c7a46; border: 1px solid #b7e2c8; }

/* Map / service-area */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 340px; border: 0; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--navy-950); color: var(--steel-300); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); transition: 0.25s var(--ease); }
.footer-social a:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h5 { font-family: var(--font-head); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.02rem; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.96rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.96rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 0.88rem; }
.footer-bottom a:hover { color: var(--gold); }

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .split, .svc-row, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-row--rev .svc-row__media, .split--rev .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .nav__phone span { display: none; }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 14px; transform: translateY(-120%); transition: transform 0.35s var(--ease);
    box-shadow: var(--shadow-lg); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 15px 16px; font-size: 1.08rem; border-radius: var(--radius); }
  .nav__links a::after { display: none; }
  .nav__links a:hover, .nav__links a.active { background: rgba(255,255,255,0.06); }
  .nav__has-sub { display: block; }
  .nav__sub { position: static; opacity: 1; visibility: visible; transform: none; min-width: 0; box-shadow: none; border: none; background: transparent; padding: 0 0 6px 14px; }
  .nav__sub a { padding: 11px 14px; font-size: 1rem; }
  .nav__toggle { display: flex; }
  .nav__phone { display: none; }
  .owners { grid-template-columns: 1fr; }
  .owner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .section { padding: 66px 0; }
  .container { padding-inline: 18px; }
  .brand__mark { height: 40px; }
  .brand__name { font-size: 1.12rem; }
  .brand__tag { font-size: 0.55rem; letter-spacing: 0.22em; }
  .nav__cta { gap: 10px; }
  .nav__cta .btn--primary { display: none; } /* hero + menu provide the CTA on phones */
  .stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 26px; }
  .hero__stat .num { font-size: 2rem; }
  .split__badge { position: static; margin-top: 18px; max-width: none; }
}

/* =========================================================================
   THEME SWITCHER (floating)
   ========================================================================= */
.theme-switch { position: fixed; right: 20px; bottom: 20px; z-index: 300; font-family: var(--font-head); }
.theme-switch__toggle {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  background: var(--navy-900); color: var(--gold); display: grid; place-items: center;
  box-shadow: var(--shadow-lg); transition: transform 0.2s var(--ease);
}
.theme-switch__toggle svg { width: 24px; height: 24px; }
.theme-switch__toggle:hover { transform: translateY(-2px) rotate(15deg); }
.theme-switch__panel {
  position: absolute; right: 0; bottom: 64px; width: 210px; padding: 14px;
  background: var(--navy-900); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: none; flex-direction: column; gap: 8px;
}
.theme-switch.open .theme-switch__panel { display: flex; }
.theme-switch__title { color: var(--steel-300); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
.theme-switch__opt {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  background: rgba(255,255,255,0.05); color: #e8eef6; border: 1.5px solid rgba(255,255,255,0.12);
  padding: 9px 12px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; transition: border-color 0.2s, background 0.2s;
}
.theme-switch__opt:hover { background: rgba(255,255,255,0.1); }
.theme-switch__opt[aria-pressed="true"] { border-color: #fff; background: rgba(255,255,255,0.14); }
.theme-switch__opt .sw { width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(255,255,255,0.15); }
.sw-gold { background: linear-gradient(135deg,#0a1a2f 50%,#c8a24b 50%); }
.sw-blue { background: linear-gradient(135deg,#111826 50%,#3d8bfd 50%); }
.sw-red  { background: linear-gradient(135deg,#1a1c22 50%,#e5484d 50%); }
@media (max-width: 560px) { .theme-switch { right: 14px; bottom: 14px; } .theme-switch__toggle { width: 46px; height: 46px; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
