/* =============================================================
   123 Technology - design system
   Direction: "The quiet watch." Ink navy + brass nameplate,
   warm paper for reading. Spectral (serif display),
   Hanken Grotesk (body), IBM Plex Mono (telemetry labels).
   ============================================================= */

:root {
  --ink:        #0C1A2B;   /* primary dark navy */
  --ink-2:      #112739;   /* lifted navy for layered dark sections */
  --ink-3:      #0A1521;   /* deepest navy (footer) */
  --paper:      #F5F3EE;   /* warm paper, light surface */
  --paper-card: #FBFAF6;   /* card on paper */
  --brass:      #C3A571;   /* accent */
  --brass-deep: #A98A52;   /* darker accent */
  --slate:      #51606E;   /* muted body text on light */
  --slate-2:    #6E7B87;   /* fainter */
  --mist:       #B7C2CC;   /* muted text on dark */
  --line:       #E4DED2;   /* hairline on light */
  --line-dark:  rgba(195,165,113,0.22); /* brass hairline on dark */
  --white:      #FCFBF8;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --gap: clamp(2.5rem, 7vw, 6rem);

  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: 760px; }
section { padding-block: var(--gap); }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.2; }
p { max-width: 68ch; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 1px;
  background: var(--brass-deep);
  display: inline-block;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--brass); }
.on-dark .eyebrow::before, .eyebrow.on-dark::before { background: var(--brass); }
.eyebrow.no-rule::before { display: none; }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.55; color: var(--slate); }
.on-dark .lead, .hero .lead, .pagehead .lead, .alt .lead, .cta-band .lead { color: var(--mist); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 { margin-top: 0.9rem; }
.section-head p { margin-top: 1.1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.6em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn-primary { background: var(--brass); color: var(--ink); }
.btn-primary:hover { background: var(--brass-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.on-dark .btn-ghost, .hero .btn-ghost, .pagehead .btn-ghost, .alt .btn-ghost, .cta-band .btn-ghost {
  color: var(--paper); border-color: rgba(195,165,113,0.5);
}
.on-dark .btn-ghost:hover, .hero .btn-ghost:hover, .pagehead .btn-ghost:hover, .alt .btn-ghost:hover, .cta-band .btn-ghost:hover {
  border-color: var(--brass); color: var(--white);
}

.textlink {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-weight: 600; font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.textlink:hover { gap: 0.75em; color: var(--brass-deep); }
.on-dark .textlink { color: var(--white); border-color: var(--brass); }
.on-dark .textlink:hover { color: var(--brass); }

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

/* skip link */
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper); padding: .7em 1em; z-index: 200; }
.skip:focus { left: 0.5rem; top: 0.5rem; }

/* =============================================================
   LOGO (H3 mark) - navy block, white serif "123",
   letter-spaced "TECHNOLOGY" wordmark in currentColor.
   ============================================================= */
.logo { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.on-dark .logo, .site-header.over-hero .logo { color: var(--paper); }
.logo__block {
  width: 42px; height: 42px; border-radius: 4px;
  background: linear-gradient(150deg, #18324d 0%, #0C1A2B 70%);
  border: 1px solid var(--brass);
  display: grid; place-items: center;
  flex: none;
}
.logo__block span {
  font-family: var(--serif); font-weight: 600; color: #fff;
  font-size: 1.02rem; letter-spacing: 0.02em; line-height: 1;
}
.logo__word {
  font-family: var(--sans); font-weight: 300; font-size: 0.95rem;
  letter-spacing: 0.34em; text-transform: uppercase; padding-left: 2px;
  color: inherit; white-space: nowrap;
}
.logo--sm .logo__block { width: 34px; height: 34px; }
.logo--sm .logo__block span { font-size: 0.84rem; }
.logo--sm .logo__word { font-size: 0.78rem; letter-spacing: 0.3em; }

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.over-hero { background: transparent; color: var(--paper); }
.site-header.solid {
  background: rgba(245,243,238,0.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.headbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a.navlink {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em;
  position: relative; padding-block: 0.4rem;
  color: inherit;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--brass); transition: width .3s var(--ease);
}
.nav a.navlink:hover::after, .nav a.navlink[aria-current="page"]::after { width: 100%; }
.head-right { display: flex; align-items: center; gap: 1.5rem; }
.head-tel { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.04em; color: inherit; white-space: nowrap; }
.head-tel:hover { color: var(--brass); }
.over-hero .btn-primary { background: var(--brass); color: var(--ink); }

.navtoggle { display: none; background: none; border: 0; color: inherit; padding: 0.4rem; }
.navtoggle svg { width: 26px; height: 26px; }

@media (max-width: 920px) {
  .head-tel { display: none; }
  .nav .btn { display: none; }
  .navtoggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    background: var(--ink); color: var(--paper);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.4rem; padding: 2rem var(--pad);
    transform: translateX(100%); transition: transform .45s var(--ease);
    box-shadow: -30px 0 60px rgba(0,0,0,.3);
  }
  .nav.open { transform: translateX(0); }
  .nav a.navlink { font-size: 1.3rem; font-family: var(--serif); }
  .nav .btn { display: inline-flex; margin-top: 0.5rem; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(8,16,26,.5); z-index: 99;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease);
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}

/* =============================================================
   HERO - engraved nameplate
   ============================================================= */
.hero {
  position: relative; background: var(--ink); color: var(--paper);
  padding-top: clamp(8rem, 16vh, 11rem); padding-bottom: clamp(4.5rem, 9vh, 7rem);
  overflow: hidden;
}
.hero::before { /* faint engraved keyline frame, like a brass plaque */
  content: ""; position: absolute; inset: clamp(1rem,3vw,2.2rem);
  border: 1px solid var(--line-dark); border-radius: 3px; pointer-events: none;
}
.hero::after { /* soft brass glow, top-right, very subtle */
  content: ""; position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(195,165,113,0.10) 0%, transparent 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { margin-top: 1.4rem; max-width: 16ch; }
.hero h1 em { font-style: italic; color: var(--brass); }
.hero .lead { margin-top: 1.6rem; max-width: 54ch; }
.hero-cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.status {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist);
  border: 1px solid var(--line-dark); border-radius: 100px;
  padding: 0.4em 0.95em;
}
.status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); position: relative; }
.status .dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--brass);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 70%,100% { transform: scale(3.2); opacity: 0; } }

.hero-meta {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line-dark); padding-top: 1.6rem;
}
.hero-meta div { min-width: 120px; }
.hero-meta dt { font-family: var(--serif); font-size: clamp(1.5rem,2.4vw,2.1rem); color: var(--white); }
.hero-meta dd { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist); margin-top: 0.35rem; }

/* hero entrance */
.reveal-hero > * { opacity: 0; transform: translateY(16px); animation: rise .9s var(--ease) forwards; }
.reveal-hero > *:nth-child(1) { animation-delay: .05s; }
.reveal-hero > *:nth-child(2) { animation-delay: .15s; }
.reveal-hero > *:nth-child(3) { animation-delay: .25s; }
.reveal-hero > *:nth-child(4) { animation-delay: .35s; }
.reveal-hero > *:nth-child(5) { animation-delay: .45s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal-hero > * { opacity: 1; transform: none; animation: none; } }

/* =============================================================
   PAGE HEAD (interior pages) - compact ink banner
   ============================================================= */
.pagehead { background: var(--ink); color: var(--paper); padding-top: clamp(7.5rem, 14vh, 10rem); padding-bottom: clamp(3rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.pagehead::after { content:""; position:absolute; top:-30%; right:-5%; width:46vw; height:46vw; max-width:560px; max-height:560px; background: radial-gradient(circle, rgba(195,165,113,0.09) 0%, transparent 62%); pointer-events:none; }
.pagehead .wrap { position: relative; z-index: 2; }
.pagehead h1 { margin-top: 1.1rem; max-width: 20ch; font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.pagehead .lead { margin-top: 1.3rem; max-width: 60ch; }
.crumbs { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); display: flex; gap: 0.6em; flex-wrap: wrap; }
.crumbs a:hover { color: var(--brass); }
.crumbs span { color: var(--brass); }

/* =============================================================
   SHARED SECTIONS
   ============================================================= */
.alt { background: var(--ink); color: var(--paper); }
.alt h1,.alt h2,.alt h3 { color: var(--paper); }

/* two-column intro */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; gap: 2rem; } }
.split .col-note { font-family: var(--serif); font-size: clamp(1.25rem,2vw,1.6rem); line-height: 1.4; }
.split p + p { margin-top: 1.1rem; }

/* card grid (services / verticals) */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px){ .grid.cols-3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }
.cell { background: var(--paper-card); padding: clamp(1.6rem, 2.6vw, 2.3rem); position: relative; transition: background .35s var(--ease); }
a.cell:hover { background: #fff; }
.cell .num { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; color: var(--brass-deep); }
.cell h3 { margin: 0.9rem 0 0.6rem; color: var(--ink); }
.cell p { font-size: 0.97rem; color: var(--slate); max-width: 40ch; }
a.cell .go { margin-top: 1.1rem; font-size: 0.85rem; font-weight: 600; color: var(--brass-deep); display: inline-flex; align-items: center; gap: 0.4em; transition: gap .3s var(--ease); }
a.cell:hover .go { gap: 0.7em; }

/* process timeline */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 1rem; }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 420px){ .steps { grid-template-columns: 1fr; } }
.step { padding-right: 1.5rem; position: relative; }
.step::before { content:""; position:absolute; top: 0.55rem; left: 0; right: 1.5rem; height: 1px; background: var(--line-dark); }
.step .mk { display: inline-flex; align-items: center; justify-content: center; width: 1.1rem; height: 1.1rem; border-radius: 50%; border: 1px solid var(--brass); color: var(--brass); font-family: var(--mono); font-size: 0.6rem; background: var(--ink); position: relative; z-index: 1; }
.step h3 { color: var(--paper); margin: 1.1rem 0 0.5rem; font-size: 1.25rem; }
.step p { color: var(--mist); font-size: 0.92rem; max-width: 32ch; }

/* feature list with ticks */
.ticks { display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.ticks.two { grid-template-columns: 1fr 1fr; gap: 1.1rem 2.5rem; }
@media (max-width: 640px){ .ticks.two { grid-template-columns: 1fr; } }
.tick { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.tick svg { width: 1.25rem; height: 1.25rem; margin-top: 0.2rem; flex: none; color: var(--brass-deep); }
.alt .tick svg, .on-dark .tick svg { color: var(--brass); }
.tick h4 { font-family: var(--sans); font-weight: 600; font-size: 1rem; }
.tick p { font-size: 0.94rem; color: var(--slate); margin-top: 0.2rem; max-width: 46ch; }
.alt .tick p, .on-dark .tick p { color: var(--mist); }

/* testimonials */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.25rem,2.5vw,2rem); }
@media (max-width: 880px){ .quotes { grid-template-columns: 1fr; max-width: 640px; } }
.quote { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 4px; padding: clamp(1.6rem,2.4vw,2.1rem); display: flex; flex-direction: column; }
.quote .mark { font-family: var(--serif); font-size: 3rem; line-height: 0.5; color: var(--brass); height: 1.4rem; }
.quote p { font-family: var(--serif); font-size: 1.1rem; line-height: 1.5; color: var(--paper); margin-bottom: 1.4rem; flex: 1; }
.quote cite { font-style: normal; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; font-family: var(--serif); font-size: clamp(1.1rem,1.7vw,1.35rem); transition: color .25s var(--ease); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass-deep); }
.faq summary .pm { flex: none; width: 1.4rem; height: 1.4rem; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content:""; position:absolute; background: var(--brass-deep); transition: transform .3s var(--ease); }
.faq summary .pm::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq summary .pm::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq details[open] summary .pm::after { transform: translateX(-50%) scaleY(0); }
.faq details p { color: var(--slate); padding-bottom: 1.4rem; max-width: 80ch; }

/* CTA band */
.cta-band { background: var(--ink); color: var(--paper); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; bottom:-30%; left:50%; transform: translateX(-50%); width: 70vw; height: 40vw; max-width:800px; max-height:420px; background: radial-gradient(ellipse, rgba(195,165,113,0.10) 0%, transparent 65%); pointer-events:none; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { margin: 0.8rem auto 0; max-width: 18ch; }
.cta-band p { margin: 1.1rem auto 0; }
.cta-band .hero-cta { justify-content: center; }

/* prose (legal / about body) */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem,2.4vw,2rem); margin-top: 2.6rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.8rem; }
.prose p { margin-top: 1rem; color: var(--ink); }
.prose ul { margin-top: 1rem; display: grid; gap: 0.6rem; }
.prose ul li { padding-left: 1.4rem; position: relative; color: var(--ink); max-width: 70ch; }
.prose ul li::before { content:""; position:absolute; left:0; top:0.65em; width: 0.5rem; height: 1px; background: var(--brass-deep); }
.prose a { color: var(--brass-deep); border-bottom: 1px solid var(--brass); }
.prose .muted { color: var(--slate); font-size: 0.95rem; }

/* contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.45rem; margin-bottom: 1.2rem; }
.field label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 3px;
  padding: 0.8em 0.9em; width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brass); box-shadow: 0 0 0 3px rgba(195,165,113,.18); outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--slate-2); margin-top: 0.4rem; }
.contact-detail { display: grid; gap: 1.6rem; }
.contact-detail .row { display: grid; gap: 0.3rem; }
.contact-detail .k { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-deep); }
.contact-detail .v { font-size: 1.05rem; }
.contact-detail a.v:hover { color: var(--brass-deep); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--ink-3); color: var(--mist); padding-block: clamp(3.5rem,6vw,5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); }
@media (max-width: 860px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 2.2rem; } }
@media (max-width: 460px){ .footer-top { grid-template-columns: 1fr; } }
.footer-top .logo { color: var(--paper); margin-bottom: 1.1rem; }
.foot-about { font-size: 0.92rem; max-width: 34ch; color: var(--mist); }
.foot-col h4 { font-family: var(--mono); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.1rem; }
.foot-col ul { display: grid; gap: 0.65rem; }
.foot-col a, .foot-col li { font-size: 0.92rem; color: var(--mist); }
.foot-col a:hover { color: var(--paper); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: clamp(2.5rem,5vw,3.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line-dark); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--mist); }
.foot-bottom a:hover { color: var(--brass); }
.foot-bottom .legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.hidden { display: none !important; }

/* pull quote on paper (interior pages) */
.pull { max-width: 860px; }
.pull blockquote { font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.36; color: var(--ink); position: relative; }
.pull blockquote .q { color: var(--brass); margin-right: 0.1em; }
.pull cite { display: block; margin-top: 1.3rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass-deep); font-style: normal; }

/* related links */
.related { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; margin-top: 1.5rem; }
@media (max-width: 700px){ .related { grid-template-columns: 1fr; } }
.related a { background: var(--paper-card); padding: 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.3rem; transition: background .3s var(--ease); }
.related a:hover { background: #fff; }
.related a .rk { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-deep); }
.related a .rt { font-family: var(--serif); font-size: 1.15rem; }

/* areas-served chips (location pages) */
.areas { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.areas li {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--ink); background: var(--paper-card);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 0.5em 1.05em;
}

/* =============================================================
   COOKIE CONSENT BANNER (discreet, bottom-left)
   ============================================================= */
.btn-sm { padding: 0.6em 1.15em; font-size: 0.85rem; }
.cookie-banner {
  position: fixed; z-index: 120; bottom: 1.1rem; left: 50%;
  display: flex; align-items: center; gap: 1rem;
  max-width: min(92vw, 34rem); background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 10px; box-shadow: 0 8px 28px rgba(8,16,26,0.12);
  padding: 0.7rem 0.8rem 0.7rem 1.15rem;
  transform: translate(-50%, 14px); opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.cookie-banner.show { transform: translate(-50%, 0); opacity: 1; }
.cookie-banner__text { font-size: 0.8rem; line-height: 1.45; color: var(--slate); margin: 0; flex: 1; min-width: 0; }
.cookie-banner__text a { color: var(--brass-deep); border-bottom: 1px solid var(--brass); white-space: nowrap; }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex: none; }
.cookie-banner__actions .btn { padding: 0.5em 0.95em; font-size: 0.8rem; }
@media (max-width: 560px){ .cookie-banner { flex-direction: column; align-items: stretch; gap: 0.7rem; left: 0.9rem; right: 0.9rem; bottom: 0.9rem; max-width: none; transform: translateY(14px); } .cookie-banner.show { transform: translateY(0); } .cookie-banner__actions .btn { flex: 1; justify-content: center; } }
@media (prefers-reduced-motion: reduce){ .cookie-banner { transition: none; } }

/* =============================================================
   ACCREDITATION BAND (Cyber Essentials Plus)
   ============================================================= */
.cert { background: var(--paper); border-top: 1px solid var(--line); }
.cert__inner { display: flex; justify-content: center; padding-block: clamp(2rem, 4vw, 2.75rem); }
.cert__badge { display: inline-flex; align-items: center; gap: 1.05rem; color: var(--ink); transition: color .3s var(--ease); }
.cert__shield { width: 46px; height: 46px; flex: none; color: var(--brass-deep); transition: color .3s var(--ease); }
.cert__badge:hover .cert__shield { color: var(--brass); }
.cert__title { font-family: var(--serif); font-size: 1.25rem; line-height: 1.1; display: block; }
.cert__sub { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); display: block; margin-top: 0.35rem; }
.cert__badge:hover .cert__sub { color: var(--brass-deep); }
@media (max-width: 480px){ .cert__inner { padding-inline: var(--pad); } .cert__title { font-size: 1.1rem; } }
