/* ==========================================================================
   TRITAN SECURITY — Stylesheet
   Design language: "Perimeter" — corner-bracket viewfinder framing + a single
   gold scan-line motif referencing CCTV monitoring, on a disciplined
   navy/gold/white palette. Display type is condensed + uppercase (authority,
   signage). Stats/labels use a monospace "readout" face like a security
   panel. Built mobile-first, semantic, no framework.
   ========================================================================== */

/* -------------------------------- Tokens -------------------------------- */
:root{
  /* Brand core (fixed by brief) */
  --navy: #0B1F3A;
  --gold: #D4AF37;
  --white: #FFFFFF;

  /* Extended palette derived from brand core */
  --navy-2: #122C52;      /* lighter navy, gradients / hover surfaces */
  --navy-deep: #060F1F;   /* darkest navy, hero base / footer */
  --gold-light: #F2D879;  /* hover / highlight gold */
  --gold-dim: #9A7B22;    /* muted gold for on-white small text */
  --off: #F6F7F9;         /* section alternation background */
  --ink: #101826;         /* body copy on white (near-black navy) */
  --ink-soft: #55606F;    /* muted body copy */
  --line: rgba(11,31,58,0.10);
  --line-strong: rgba(11,31,58,0.18);

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --container: 1240px;
  --container-narrow: 820px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 26px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4rem, 9vw, 8rem);

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
  --dur: .6s;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(6,15,31,.06);
  --shadow-md: 0 12px 32px rgba(6,15,31,.10);
  --shadow-lg: 0 24px 60px rgba(6,15,31,.18);
  --shadow-gold: 0 10px 30px rgba(212,175,55,.25);
}

/* -------------------------------- Reset ---------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
*{ margin:0; padding:0; }
html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font:inherit; cursor:pointer; background:none; border:none; color:inherit; }
input, textarea, select{ font:inherit; color:inherit; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.1;
  font-weight: 600;
  color: var(--navy);
}
svg{ display:block; }

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link{
  position:absolute; left:1rem; top:-60px;
  background: var(--navy); color:var(--white);
  padding:.75rem 1.25rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 999; transition: top .25s var(--ease);
  font-family: var(--font-mono); font-size:.85rem;
}
.skip-link:focus{ top:0; }

/* -------------------------------- Layout --------------------------------- */
.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow{ max-width: var(--container-narrow); }
main{ display:block; }
.section{ padding-block: var(--section-pad); position: relative; }
.section--off{ background: var(--off); }
.section--navy{ background: var(--navy); color: rgba(255,255,255,.86); }
.section--navy h2, .section--navy h3{ color: var(--white); }
.section--tight{ padding-block: clamp(3rem,6vw,5rem); }

/* Eyebrow / kicker — mono "readout" label used above section headings */
.eyebrow{
  display:inline-flex; align-items:center; gap:.6rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.section--navy .eyebrow{ color: var(--gold); }
.eyebrow::before{
  content:"";
  width: 22px; height: 1px;
  background: currentColor;
  display:inline-block;
}

.section-head{
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--center{ margin-inline:auto; text-align:center; }
.section-head h2{
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: .9rem;
}
.section-head p{
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 56ch;
}
.section--navy .section-head p{ color: rgba(255,255,255,.68); }
.section-head--center p{ margin-inline:auto; }

/* -------------------------------- Buttons --------------------------------- */
.btn{
  --btn-bg: var(--gold);
  --btn-fg: var(--navy-deep);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: var(--font-display);
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-gold);
}
.btn::before{
  content:"";
  position:absolute; inset:0;
  background: var(--gold-light);
  transform: translateX(-102%);
  transition: transform .45s var(--ease);
  z-index:-1;
}
.btn:hover::before, .btn:focus-visible::before{ transform: translateX(0); }
.btn:hover, .btn:focus-visible{ transform: translateY(-2px); box-shadow: 0 16px 34px rgba(212,175,55,.35); }
.btn:active{ transform: translateY(0px) scale(.98); }
.btn svg{ width:16px; height:16px; transition: transform .35s var(--ease); }
.btn:hover svg{ transform: translateX(3px); }

.btn--ghost{
  --btn-bg: transparent;
  --btn-fg: var(--white);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.35);
}
.btn--ghost::before{ background: rgba(255,255,255,.12); }
.btn--ghost:hover, .btn--ghost:focus-visible{ box-shadow: 0 10px 26px rgba(0,0,0,.25); border-color: rgba(255,255,255,.6); }

.btn--outline-navy{
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  box-shadow:none;
  border: 1px solid var(--line-strong);
}
.btn--outline-navy::before{ background: var(--navy); }
.btn--outline-navy:hover{ --btn-fg: var(--white); box-shadow: var(--shadow-md); }

.btn--sm{ padding: .7rem 1.35rem; font-size:.8rem; }
.btn--block{ width:100%; justify-content:center; }

/* -------------------------------- Navigation ------------------------------ */
.site-header{
  position: fixed; inset-inline:0; top:0; z-index: 200;
  padding-block: 1.35rem;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; }
.site-header.is-scrolled{
  background: rgba(11,31,58,.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding-block: .8rem;
  box-shadow: 0 10px 30px rgba(6,15,31,.25);
}
/* interior pages have a solid dark bar always (not transparent hero) */
.site-header.is-solid{
  background: var(--navy-deep);
}

.brand{ display:flex; align-items:center; gap:.75rem; z-index:2; }
.brand img{ height: 42px; width:auto; transition: height .35s var(--ease); }
.site-header.is-scrolled .brand img{ height: 36px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-text strong{
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing:.04em;
  text-transform: uppercase;
}
.brand-text span{
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing:.24em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links{ display:flex; align-items:center; gap: 2.1rem; }
.nav-links a{
  position:relative;
  font-family: var(--font-display);
  font-size: .86rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding-block: .3rem;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a[aria-current="page"]{ color: var(--white); }
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-links a[aria-current="page"]::after{ right:0; }

.nav-cta{ display:flex; align-items:center; gap:1rem; }
.nav-cta .btn{ padding:.7rem 1.4rem; font-size:.78rem; }
.nav-call{
  display:flex; align-items:center; gap:.5rem;
  font-family: var(--font-mono); font-size:.82rem; color:var(--white);
}
.nav-call svg{ width:16px; height:16px; color:var(--gold); }

.nav-toggle{
  display:none; z-index:2;
  width: 42px; height:42px; border-radius:50%;
  align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.25);
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:""; display:block; width:18px; height:2px; background:var(--white);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span{ margin: 4px 0; }
.nav-toggle[aria-expanded="true"]{ }

@media (max-width: 900px){
  .nav-links, .nav-call{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn--sm{ display:none; }

  .mobile-nav{
    position: fixed; inset:0; z-index:150;
    background: var(--navy-deep);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2rem;
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
  }
  .mobile-nav.is-open{ transform: translateY(0); }
  .mobile-nav a{
    font-family: var(--font-display); text-transform:uppercase; letter-spacing:.05em;
    font-size: 1.5rem; color: var(--white);
  }
  .mobile-nav a[aria-current="page"]{ color: var(--gold); }
  .mobile-nav .btn{ margin-top:1rem; }
}
@media (min-width: 901px){ .mobile-nav{ display:none; } }

/* -------------------------------- Hero ------------------------------------ */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex; align-items:center;
  background: radial-gradient(ellipse 120% 80% at 20% 0%, var(--navy-2) 0%, var(--navy-deep) 55%, #04070d 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 6rem;
}
.hero::before{ /* fine grid texture, like a HUD */
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(212,175,55,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 40%, black 10%, transparent 75%);
  pointer-events:none;
}
.hero-scanline{
  position:absolute; left:0; right:0; height: 140px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,.16), transparent);
  animation: scan 7s linear infinite;
  pointer-events:none;
}
@keyframes scan{
  0%{ transform: translateY(-160px); }
  100%{ transform: translateY(100vh); }
}

.hero-floats{ position:absolute; inset:0; pointer-events:none; z-index:0; }
.hero-floats span{
  position:absolute;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}
.hero-floats span:nth-child(1){ width:180px; height:180px; top:14%; right:10%; animation-delay:0s;}
.hero-floats span:nth-child(2){ width:90px; height:90px; top:60%; right:22%; animation-delay:1.6s;}
.hero-floats span:nth-child(3){ width:280px; height:280px; bottom:-90px; right:-60px; animation-delay:.8s; border-color: rgba(212,175,55,.14);}
.hero-floats span:nth-child(4){ width:14px; height:14px; top:32%; right:38%; background:rgba(212,175,55,.5); animation-delay:2.4s;}
@keyframes float{
  0%,100%{ transform: translateY(0) translateX(0); }
  50%{ transform: translateY(-22px) translateX(10px); }
}

.hero-frame{ /* corner-bracket viewfinder — signature motif */
  position:absolute; inset: clamp(1rem,4vw,3rem);
  pointer-events:none; z-index:1;
}
.hero-frame i{
  position:absolute; width: 46px; height:46px;
  border-color: rgba(212,175,55,.55);
  border-style: solid; border-width:0;
}
.hero-frame i:nth-child(1){ top:0; left:0; border-top-width:2px; border-left-width:2px; }
.hero-frame i:nth-child(2){ top:0; right:0; border-top-width:2px; border-right-width:2px; }
.hero-frame i:nth-child(3){ bottom:0; left:0; border-bottom-width:2px; border-left-width:2px; }
.hero-frame i:nth-child(4){ bottom:0; right:0; border-bottom-width:2px; border-right-width:2px; }

.hero .container{ position:relative; z-index:2; }
.hero-grid{
  display:flex; flex-direction:column; align-items:center;
  text-align:center;
  gap: clamp(1.75rem,4vw,2.5rem);
  padding-bottom: clamp(2rem,5vw,3.5rem);
}
.hero-copy{
  display:flex; flex-direction:column; align-items:center;
  max-width: 80rem; margin:0 auto;
}
.hero-status{
  display:inline-flex; align-items:center; gap:.6rem;
  font-family: var(--font-mono); font-size:.75rem; letter-spacing:.18em; text-transform:uppercase;
  color: var(--gold); margin-bottom:1.6rem;
  padding: .5rem .9rem; border:1px solid rgba(212,175,55,.35); border-radius:999px;
  background: rgba(212,175,55,.06);
  opacity:0; transform: translateY(10px) scale(.94);
  animation: statusPop .7s var(--ease) forwards;
}
@keyframes statusPop{
  to{ opacity:1; transform: translateY(0) scale(1); }
}
.hero-status .dot{
  width:7px; height:7px; border-radius:50%; background: #37D67A;
  box-shadow: 0 0 0 0 rgba(55,214,122,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(55,214,122,.55); }
  70%{ box-shadow: 0 0 0 8px rgba(55,214,122,0); }
  100%{ box-shadow: 0 0 0 0 rgba(55,214,122,0); }
}

.hero h1{
  align-self: stretch;
  width: 100%;
  font-size: clamp(3rem, 9.5vw, 8rem);
  color: var(--white);
  overflow:hidden;
  text-align:center;
}
.hero h1 .line{ display:block; overflow:hidden; }
.hero h1 .line span{
  display:block;
  transform: translateY(110%);
  animation: lineUp .9s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span{ animation-delay: .15s; }
.hero h1 .line:nth-child(2) span{
  animation-delay: .32s; color: var(--gold);
  animation-name: lineUp, goldGlow;
  animation-duration: .9s, 2.6s;
  animation-timing-function: var(--ease), ease-in-out;
  animation-delay: .32s, 1.5s;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards, none;
}
.hero h1 .line:nth-child(3) span{ animation-delay: .49s; }
@keyframes lineUp{ to{ transform: translateY(0); } }
@keyframes goldGlow{
  0%,100%{ text-shadow: 0 0 12px rgba(212,175,55,.2); }
  50%{ text-shadow: 0 0 26px rgba(212,175,55,.55); }
}

.hero-lede{
  font-size: 1.15rem; color: rgba(255,255,255,.7);
  max-width: 46ch; margin: 1.4rem auto 0;
  text-align:center;
  opacity:0; animation: fadeUp .8s var(--ease) .7s forwards;
}
.hero-actions{
  display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; margin-top: 2.2rem;
  opacity:0; animation: fadeUp .8s var(--ease) .85s forwards;
}
@keyframes fadeUp{ from{ opacity:0; transform: translateY(16px);} to{ opacity:1; transform:translateY(0);} }

.hero-card{
  width:100%; max-width: 56rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin: .5rem auto 0;
  backdrop-filter: blur(10px);
  opacity:0; animation: fadeUp .8s var(--ease) 1s forwards;
}
.hero-card ul{
  display:flex; flex-direction:row; flex-wrap:wrap;
  justify-content:center; gap:1.5rem 2.25rem;
}
.hero-card li{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap:.6rem; max-width:220px;
}
.hero-card .ico{
  flex:none; width:38px; height:38px; border-radius:50%;
  background: rgba(212,175,55,.12); border:1px solid rgba(212,175,55,.35);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
}
.hero-card .ico svg{ width:18px; height:18px; }
.hero-card strong{ display:block; font-family:var(--font-display); text-transform:uppercase; letter-spacing:.03em; font-size:.95rem; color:var(--white); }
.hero-card small{ color: rgba(255,255,255,.6); font-size:.83rem; }

@media (max-width: 640px){
  .hero-card ul{ gap:1.25rem; }
  .hero-card li{ max-width: none; }
}

/* -------------------------------- Hero gallery (full-bleed background) ---- */
.hero-gallery{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  overflow:hidden;
}
.hero-gallery::after{ /* scrim so copy stays legible over the photography */
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(4,7,13,.94) 0%, rgba(4,7,13,.82) 32%, rgba(4,7,13,.55) 60%, rgba(4,7,13,.32) 100%),
    linear-gradient(0deg, rgba(4,7,13,.55), transparent 40%);
  z-index:1;
}
.hg-item{
  position:absolute; inset:0;
  width:100%; height:100%;
  opacity:0;
  animation: hgCrossfade var(--hg-cycle,26s) ease-in-out infinite;
  animation-delay: var(--hg-delay,0s);
}
.hg-item img{
  width:100%; height:100%; object-fit:cover; display:block;
  mix-blend-mode: screen;
  opacity:.28;
  filter: saturate(1.05);
  animation: hgZoom var(--hg-zdur,30s) ease-in-out infinite;
  animation-delay: var(--hg-delay,0s);
}
.hg-1{ --hg-delay:0s; }
.hg-2{ --hg-delay:6.5s; }
.hg-3{ --hg-delay:13s; }
.hg-4{ --hg-delay:19.5s; }

@keyframes hgCrossfade{
  0%{ opacity:0; }
  6%{ opacity:1; }
  25%{ opacity:1; }
  34%{ opacity:0; }
  100%{ opacity:0; }
}
@keyframes hgZoom{
  0%{ transform: scale(1) translateX(0); }
  50%{ transform: scale(1.14) translateX(-1.5%); }
  100%{ transform: scale(1.06) translateX(0); }
}

@media (max-width:640px){
  .hg-item img{ opacity:.4; }
}

/* -------------------------------- Intro / split ---------------------------- */
.split{
  display:grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(2.5rem,6vw,5rem);
  align-items:center;
}
.split.reverse{ grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); }
.split.reverse .split-media{ order:2; }
@media (max-width: 900px){
  .split, .split.reverse{ grid-template-columns: 1fr; }
  .split.reverse .split-media{ order:0; }
}
.split-media{ position:relative; }
.media-frame{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.media-frame img{ width:100%; height:100%; object-fit:cover; }
.media-frame::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(6,15,31,0) 45%, rgba(6,15,31,.55) 100%);
}

/* Graphic (illustration) variant — used where a photo would be, keeps the
   whole site in one consistent vector language instead of stock imagery. */
.media-frame.graphic{
  background: radial-gradient(120% 100% at 15% 0%, var(--navy-2), var(--navy-deep) 60%);
  display:flex; align-items:center; justify-content:center;
}
.media-frame.graphic::after{ content:none; }
.media-frame.graphic .rings{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
}
.media-frame.graphic .rings i{
  position:absolute; border:1px solid rgba(212,175,55,.18); border-radius:50%;
}
.media-frame.graphic .rings i:nth-child(1){ width:56%; aspect-ratio:1; }
.media-frame.graphic .rings i:nth-child(2){ width:76%; aspect-ratio:1; border-color: rgba(212,175,55,.12); }
.media-frame.graphic .rings i:nth-child(3){ width:96%; aspect-ratio:1; border-color: rgba(212,175,55,.08); }
.media-frame.graphic .g-icon{
  position:relative; z-index:2; width:34%; color: var(--gold);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
}
.media-frame.graphic .g-icon svg{ width:100%; height:auto; }
.media-frame.graphic .g-grid{
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(212,175,55,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 75%);
}

/* Initials avatar — used instead of stock team photography */
.avatar-graphic{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background: radial-gradient(120% 120% at 30% 0%, var(--navy-2), var(--navy-deep) 70%);
  font-family: var(--font-display); color: var(--gold);
  font-size: clamp(2.2rem,6vw,3rem); letter-spacing:.05em;
  position:relative; overflow:hidden;
}
.avatar-graphic::before{
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(212,175,55,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.avatar-graphic span{ position:relative; z-index:1; }
.media-badge{
  position:absolute; left:-1.4rem; bottom:-1.4rem; z-index:3;
  background: var(--navy); color:var(--white);
  border-radius: var(--radius); padding: 1.3rem 1.6rem;
  box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:1rem;
  border: 1px solid rgba(212,175,55,.3);
}
.media-badge .num{ font-family:var(--font-mono); font-size:2rem; color:var(--gold); font-weight:700; }
.media-badge small{ display:block; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.65); max-width:12ch; }

.split-body h2{ font-size: clamp(1.9rem,4vw,2.7rem); margin-bottom:1.1rem; }
.split-body p{ color: var(--ink-soft); margin-bottom:1.1rem; max-width:56ch; }
.check-list{ display:grid; gap:.9rem; margin-top:1.6rem; }
.check-list li{ display:flex; gap:.8rem; align-items:flex-start; font-size:.98rem; color:var(--ink); }
.check-list svg{ flex:none; width:20px; height:20px; color:var(--gold); margin-top:.15rem; }

/* -------------------------------- Why choose (feature grid) ----------------- */
.feature-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 1.6rem;
}
@media (max-width:1100px){ .feature-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .feature-grid{ grid-template-columns: 1fr; } }
.feature{
  padding: 2rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.feature:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature .f-ico{
  width:52px; height:52px; border-radius:50%;
  background: var(--navy); color:var(--gold);
  display:flex; align-items:center; justify-content:center; margin-bottom:1.3rem;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.feature:hover .f-ico{ background: var(--gold); color: var(--navy); transform: rotate(-8deg) scale(1.05); }
.feature .f-ico svg{ width:24px; height:24px; }
.feature h3{ font-size:1.12rem; margin-bottom:.6rem; }
.feature p{ color: var(--ink-soft); font-size:.94rem; }

/* -------------------------------- Services grid ----------------------------- */
.service-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem;
}
@media (max-width:960px){ .service-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:620px){ .service-grid{ grid-template-columns: 1fr;} }

.service-card{
  position:relative;
  padding: 2.3rem 2rem 2rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: rgba(255,255,255,.78);
  overflow:hidden;
  min-height: 300px;
  display:flex; flex-direction:column;
  isolation:isolate;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service-card::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background: radial-gradient(120% 100% at 100% 0%, var(--navy-2), var(--navy) 55%);
}
.service-card::after{ /* corner bracket accent, echoes hero-frame */
  content:""; position:absolute; top:1.1rem; right:1.1rem; width:26px; height:26px;
  border-top:2px solid rgba(212,175,55,.4); border-right:2px solid rgba(212,175,55,.4);
  transition: all .4s var(--ease);
}
.service-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::after{ top:.8rem; right:.8rem; border-color: var(--gold); }
.service-card .s-index{ font-family: var(--font-mono); font-size:.72rem; letter-spacing:.2em; color: var(--gold); margin-bottom:1.3rem; }
.service-card .s-ico{
  width:56px; height:56px; border-radius:50%;
  background: rgba(212,175,55,.1); border:1px solid rgba(212,175,55,.35); color:var(--gold);
  display:flex; align-items:center; justify-content:center; margin-bottom:1.4rem;
}
.service-card .s-ico svg{ width:26px; height:26px; }
.service-card h3{ color:var(--white); font-size:1.2rem; margin-bottom:.7rem; }
.service-card p{ font-size:.92rem; flex:1; }
.service-card .s-link{
  margin-top:1.4rem; display:inline-flex; align-items:center; gap:.5rem;
  font-family: var(--font-display); font-size:.82rem; letter-spacing:.05em; text-transform:uppercase; color: var(--gold);
}
.service-card .s-link svg{ width:14px; height:14px; transition: transform .3s var(--ease); }
.service-card:hover .s-link svg{ transform: translateX(4px); }

/* stagger via JS-added class .in-view with nth delays */
.stagger > *{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.stagger.in-view > *{ opacity:1; transform:none; }
.stagger.in-view > *:nth-child(1){ transition-delay:.02s; }
.stagger.in-view > *:nth-child(2){ transition-delay:.10s; }
.stagger.in-view > *:nth-child(3){ transition-delay:.18s; }
.stagger.in-view > *:nth-child(4){ transition-delay:.26s; }
.stagger.in-view > *:nth-child(5){ transition-delay:.34s; }
.stagger.in-view > *:nth-child(6){ transition-delay:.42s; }
.stagger.in-view > *:nth-child(7){ transition-delay:.50s; }

/* generic scroll reveal */
.reveal{ opacity:0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity:1; transform:none; }

/* -------------------------------- Stats/counter ----------------------------- */
.stats-strip{
  display:grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
@media (max-width:760px){ .stats-strip{ grid-template-columns: repeat(2,1fr); } }
.stat{
  text-align:center; padding: 1.6rem 1rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stats-strip .stat:last-child{ border-right:none; }
@media (max-width:760px){ .stat:nth-child(2n){ border-right:none; } .stat{ border-bottom:1px solid rgba(255,255,255,.12);} .stat:nth-last-child(-n+2){border-bottom:none;} }
.stat .num{
  font-family: var(--font-mono); font-weight:700;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--gold);
  display:flex; align-items:baseline; justify-content:center; gap:.15rem;
}
.stat .lbl{ margin-top:.6rem; font-size:.85rem; letter-spacing:.05em; text-transform:uppercase; color: rgba(255,255,255,.65); }

/* -------------------------------- Timeline ---------------------------------- */
.timeline{
  position:relative;
  display:grid; gap: 2.4rem;
  counter-reset: step;
}
.timeline::before{
  content:""; position:absolute; left:29px; top:14px; bottom:14px; width:1px;
  background: repeating-linear-gradient(180deg, var(--line-strong) 0 8px, transparent 8px 16px);
}
@media (min-width: 860px){
  .timeline{ grid-template-columns: repeat(4,1fr); gap:1.6rem; }
  .timeline::before{ left:0; right:0; top:29px; bottom:auto; height:1px; width:auto;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px); }
}
.step{ position:relative; display:flex; gap:1.4rem; }
@media (min-width:860px){ .step{ flex-direction:column; gap:1.2rem; } }
.step .s-num{
  counter-increment: step;
  flex:none; width:58px; height:58px; border-radius:50%;
  background: var(--navy); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-weight:700; font-size:1.1rem;
  border: 1px solid var(--gold); position:relative; z-index:1;
}
.step h3{ font-size:1.05rem; margin-bottom:.5rem; }
.step p{ color:var(--ink-soft); font-size:.92rem; }

/* -------------------------------- Industries --------------------------------- */
.industry-row{
  display:grid; grid-template-columns: repeat(6,1fr); gap:1rem;
}
@media (max-width:960px){ .industry-row{ grid-template-columns: repeat(3,1fr); } }
@media (max-width:560px){ .industry-row{ grid-template-columns: repeat(2,1fr); } }
.industry{
  display:flex; flex-direction:column; align-items:center; gap:.9rem; text-align:center;
  padding: 1.6rem 1rem; border-radius: var(--radius);
  border:1px solid var(--line);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.industry:hover{ transform: translateY(-4px); border-color: var(--gold); background: var(--off); }
.industry .i-ico{
  width:46px; height:46px; border-radius:50%; background:var(--off); color:var(--navy);
  display:flex; align-items:center; justify-content:center;
}
.industry:hover .i-ico{ background: var(--navy); color: var(--gold); }
.industry .i-ico svg{ width:22px; height:22px; }
.industry span{ font-size:.85rem; font-weight:600; color:var(--navy); }

/* -------------------------------- Testimonials -------------------------------- */
.testi-track{
  display:grid; grid-template-columns: repeat(3,1fr); gap:1.6rem;
}
@media (max-width:960px){ .testi-track{ grid-template-columns: 1fr 1fr; } }
@media (max-width:640px){ .testi-track{ grid-template-columns: 1fr; } }
.testi{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; display:flex; flex-direction:column; gap:1.2rem;
  box-shadow: var(--shadow-sm);
}
.testi .stars{ display:flex; gap:.25rem; color:var(--gold); }
.testi .stars svg{ width:16px; height:16px; }
.testi p{ color: var(--ink); font-size:1rem; font-style:italic; }
.testi .who{ display:flex; align-items:center; gap:.9rem; margin-top:auto; }
.testi .avatar{
  width:44px; height:44px; border-radius:50%;
  background: var(--navy); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:600;
}
.testi .who strong{ display:block; font-size:.92rem; color:var(--navy); }
.testi .who span{ font-size:.8rem; color: var(--ink-soft); }

/* -------------------------------- CTA banner ----------------------------------- */
.cta-banner{
  position:relative; overflow:hidden;
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem,6vw,4.5rem);
  display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap;
  color: var(--white);
}
.cta-banner::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 85% 20%, rgba(212,175,55,.16), transparent 45%),
    linear-gradient(rgba(212,175,55,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.05) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}
.cta-banner > *{ position:relative; z-index:1; }
.cta-banner h2{ color:var(--white); font-size: clamp(1.7rem,3.6vw,2.4rem); max-width:20ch; }
.cta-banner .cta-actions{ display:flex; gap:1rem; flex-wrap:wrap; }

/* -------------------------------- Contact preview / form ------------------------ */
.contact-grid{
  display:grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: clamp(2rem,5vw,3.5rem);
}
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-cards{ display:grid; gap:1.1rem; align-content:start; }
.contact-card{
  display:flex; gap:1rem; align-items:flex-start;
  padding:1.5rem; border-radius: var(--radius); border:1px solid var(--line);
  background:var(--white);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-card:hover{ border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-card .c-ico{
  flex:none; width:44px; height:44px; border-radius:50%; background:var(--navy); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
}
.contact-card .c-ico svg{ width:20px; height:20px; }
.contact-card strong{ display:block; color:var(--navy); font-size:.98rem; margin-bottom:.2rem; }
.contact-card p, .contact-card a{ color:var(--ink-soft); font-size:.92rem; }
.contact-card a:hover{ color: var(--navy); text-decoration:underline; }

.form-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem,4vw,2.8rem); box-shadow: var(--shadow-md);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:1.2rem; }
.field label{
  display:block; font-family:var(--font-display); font-size:.78rem; letter-spacing:.06em;
  text-transform:uppercase; color: var(--navy); margin-bottom:.5rem;
}
.field input, .field select, .field textarea{
  width:100%; padding: .85rem 1rem;
  border:1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--off);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--gold); background:var(--white);
  box-shadow: 0 0 0 4px rgba(212,175,55,.15);
}
.field textarea{ resize:vertical; min-height:120px; }
.field small.err{ display:none; color:#B23A3A; font-size:.78rem; margin-top:.4rem; }
.field.has-error input, .field.has-error select, .field.has-error textarea{ border-color:#B23A3A; }
.field.has-error small.err{ display:block; }
.form-note{ font-size:.82rem; color:var(--ink-soft); margin-top:.8rem; }
.form-success{
  display:none; align-items:center; gap:1rem; padding:1.4rem; border-radius: var(--radius);
  background: rgba(55,214,122,.1); border:1px solid rgba(55,214,122,.4); color:#1c7a45; margin-bottom:1.4rem;
}
.form-success.is-visible{ display:flex; }
.form-success svg{ width:26px; height:26px; flex:none; }

/* -------------------------------- Map -------------------------------------------- */
.map-wrap{
  border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); aspect-ratio: 16/8; margin-top: clamp(2.5rem,5vw,4rem);
}
.map-wrap iframe{ width:100%; height:100%; border:0; filter: grayscale(.15); }

/* -------------------------------- Footer ------------------------------------------ */
.site-footer{
  background: var(--navy-deep); color: rgba(255,255,255,.65);
  padding-block: clamp(3.5rem,6vw,5.5rem) 2rem;
  position:relative;
}
.site-footer::before{
  content:""; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.5), transparent);
}
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width:900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand img{ height:52px; margin-bottom:1.2rem; }
.footer-brand p{ font-size:.92rem; max-width:32ch; margin-bottom:1.4rem; }
.footer-social{ display:flex; gap:.8rem; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center; transition: all .3s var(--ease);
}
.footer-social a:hover{ background:var(--gold); border-color:var(--gold); color:var(--navy-deep); transform:translateY(-3px); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h4{ color:var(--white); font-size:.95rem; margin-bottom:1.2rem; letter-spacing:.04em; }
.footer-col ul{ display:grid; gap:.75rem; }
.footer-col a{ font-size:.92rem; transition: color .25s var(--ease), padding .25s var(--ease); }
.footer-col a:hover{ color:var(--gold); padding-left:.3rem; }
.footer-col .fc-item{ display:flex; gap:.7rem; align-items:flex-start; font-size:.92rem; }
.footer-col .fc-item svg{ width:16px; height:16px; flex:none; margin-top:.2rem; color:var(--gold); }
.footer-bottom{
  padding-top: 2rem; display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap;
  font-size:.82rem;
}
.footer-bottom .legal-links{ display:flex; gap:1.4rem; }
.footer-bottom .legal-links a:hover{ color:var(--gold); }

/* -------------------------------- Back to top ------------------------------------- */
.back-to-top{
  position:fixed; right:1.6rem; bottom:1.6rem; z-index:180;
  width:50px; height:50px; border-radius:50%;
  background: var(--navy); color:var(--gold); border:1px solid rgba(212,175,55,.4);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  opacity:0; visibility:hidden; transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--gold); color:var(--navy); }
.back-to-top svg{ width:20px; height:20px; }

/* -------------------------------- Page loader --------------------------------------- */
.loader{
  position:fixed; inset:0; z-index:999;
  background: var(--navy-deep);
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:1.4rem;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader img{ height:64px; opacity:0; animation: loaderFade .8s var(--ease) forwards; }
.loader .bar{ width:160px; height:2px; background: rgba(255,255,255,.12); overflow:hidden; border-radius:2px; }
.loader .bar::after{
  content:""; display:block; height:100%; width:40%; background: var(--gold);
  animation: loaderBar 1.1s ease-in-out infinite;
}
@keyframes loaderFade{ to{ opacity:1; } }
@keyframes loaderBar{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(340%); }
}
.loader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
body.is-loading{ overflow:hidden; }

/* -------------------------------- Page hero (interior pages) ------------------------- */
.page-hero{
  position:relative; background: var(--navy-deep); color:var(--white);
  padding-top: clamp(9rem,16vw,11rem); padding-bottom: clamp(4rem,8vw,6rem);
  overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(212,175,55,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 60% 100% at 15% 20%, black 10%, transparent 70%);
}
.page-hero .container{ text-align:center; }
.breadcrumb{
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  font-family: var(--font-mono); font-size:.78rem; letter-spacing:.1em; text-transform:uppercase;
  color: rgba(255,255,255,.55); margin-bottom:1.4rem; position:relative; z-index:1;
  opacity:0; animation: fadeUp .7s var(--ease) forwards;
}
.breadcrumb a:hover{ color:var(--gold); }
.page-hero h1{
  position:relative; z-index:1; color:var(--white); font-size: clamp(2.2rem,5vw,3.6rem);
  max-width: 18ch; margin-left:auto; margin-right:auto;
  opacity:0; animation: fadeUp .8s var(--ease) .15s forwards;
}
.page-hero p{
  position:relative; z-index:1; color: rgba(255,255,255,.68); max-width:60ch;
  margin: 1.1rem auto 0; font-size:1.08rem;
  opacity:0; animation: fadeUp .8s var(--ease) .32s forwards;
}

/* Page-hero gallery — full-bleed background, 2 images crossfading */
.page-hero-gallery{ position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.page-hero-gallery::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(4,7,13,.94) 0%, rgba(4,7,13,.78) 38%, rgba(4,7,13,.45) 70%, rgba(4,7,13,.28) 100%),
    linear-gradient(0deg, rgba(4,7,13,.5), transparent 45%);
  z-index:1;
}
.ph-item{
  position:absolute; inset:0;
  width:100%; height:100%;
  opacity:0;
  animation: phCrossfade var(--ph-cycle,20s) ease-in-out infinite;
  animation-delay: var(--ph-delay,0s);
}
.ph-item img{
  width:100%; height:100%; object-fit:cover; display:block;
  mix-blend-mode: screen;
  opacity:.25;
  animation: hgZoom var(--ph-zdur,24s) ease-in-out infinite;
  animation-delay: var(--ph-delay,0s);
}
.ph-1{ --ph-delay:0s; }
.ph-2{ --ph-delay:10s; }

@keyframes phCrossfade{
  0%{ opacity:0; }
  8%{ opacity:1; }
  46%{ opacity:1; }
  54%{ opacity:0; }
  100%{ opacity:0; }
}

@media (max-width:640px){
  .ph-item img{ opacity:.2; }
}

/* -------------------------------- Misc utility ------------------------------------- */
.text-center{ text-align:center; }
.mt-lg{ margin-top: clamp(2rem,5vw,3.5rem); }
.gold{ color:var(--gold); }
.lazy-img{ background: var(--off); }

/* Value / process cards used on About & Services pages */
.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; }
@media (max-width:900px){ .value-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .value-grid{ grid-template-columns:1fr; } }
.value-card{
  padding:2rem; border-radius:var(--radius); border:1px solid var(--line);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.value-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-5px); }
.value-card .v-num{ font-family:var(--font-mono); color:var(--gold-dim); font-size:.85rem; letter-spacing:.15em; margin-bottom:1rem; }
.value-card h3{ font-size:1.1rem; margin-bottom:.6rem; }
.value-card p{ color:var(--ink-soft); font-size:.94rem; }

/* Team */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.6rem; }
@media (max-width:960px){ .team-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .team-grid{ grid-template-columns:1fr; } }
.team-card{ text-align:center; }
.team-photo{
  border-radius: var(--radius); overflow:hidden; aspect-ratio:1/1; margin-bottom:1.1rem;
  position:relative; box-shadow: var(--shadow-sm);
}
.team-photo img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.team-card:hover .team-photo img{ transform:scale(1.06); }
.team-card strong{ display:block; color:var(--navy); font-family:var(--font-display); letter-spacing:.03em; text-transform:uppercase; }
.team-card span{ font-size:.85rem; color: var(--gold-dim); }

/* Accreditation strip */
.accred-strip{ display:flex; flex-wrap:wrap; gap:2.4rem; align-items:center; justify-content:center; }
.accred-strip .badge{
  display:flex; align-items:center; gap:.7rem; font-family:var(--font-mono); font-size:.8rem;
  letter-spacing:.08em; text-transform:uppercase; color: var(--ink-soft);
}
.accred-strip .badge svg{ width:22px; height:22px; color:var(--gold-dim); }

/* Service detail list (services.html) */
.service-detail{
  display:grid; grid-template-columns: 60px 1fr; gap:1.6rem;
  padding-block: clamp(2.4rem,4vw,3.2rem);
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child{ border-bottom:none; }
.service-detail .sd-ico{
  width:60px; height:60px; border-radius:50%; background:var(--navy); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
}
.service-detail .sd-ico svg{ width:28px; height:28px; }
.service-detail h3{ font-size:1.35rem; margin-bottom:.6rem; }
.service-detail p{ color:var(--ink-soft); margin-bottom:1rem; max-width:70ch; }
.tag-row{ display:flex; flex-wrap:wrap; gap:.6rem; }
.tag{
  font-family: var(--font-mono); font-size:.76rem; letter-spacing:.04em;
  padding:.4rem .8rem; border-radius:999px; background:var(--off); color:var(--navy);
  border:1px solid var(--line);
}
@media (max-width:640px){
  .service-detail{ grid-template-columns:1fr; }
}

/* FAQ accordion */
.faq{ border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding: 1.5rem .2rem; text-align:left; font-family:var(--font-display); text-transform:uppercase;
  letter-spacing:.03em; font-size:1rem; color:var(--navy);
}
.faq-q svg{ width:18px; height:18px; color:var(--gold); transition: transform .35s var(--ease); flex:none; }
.faq-item.is-open .faq-q svg{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a p{ padding: 0 .2rem 1.5rem; color:var(--ink-soft); max-width:70ch; }

/* Quote request modal-ish inline panel used across pages via JS scroll target */
::selection{ background: var(--gold); color: var(--navy-deep); }