/* ==========================================================================
   Legal Advice Pakistan — Advocates & Corporate Consultants
   Design system: "statutory register"
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */
:root {
  /* Ground */
  --navy-ink:    #0A1729;
  --navy-deep:   #12283F;
  --navy-mid:    #1B3A57;
  --navy-line:   #24405C;

  /* Brass */
  --brass:       #A8863F;
  --brass-lift:  #C9A85C;
  --brass-deep:  #8A6D2E;
  --brass-wash:  #F2EDE1;

  /* Paper — cool neutrals biased toward the navy */
  --paper:       #FFFFFF;
  --paper-2:     #F4F6F8;
  --paper-3:     #E9EDF1;
  --rule:        #D8DFE6;
  --rule-soft:   #E7ECF1;

  /* Text */
  --ink:         #0A1729;
  --body:        #46566A;
  --muted:       #6E7E8D;
  --on-dark:     #E8EDF3;
  --on-dark-dim: #A9BACB;

  /* Type */
  --serif: "Newsreader", "Times New Roman", Georgia, serif;
  --sans:  "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Rhythm */
  --gutter:  clamp(1.25rem, 4vw, 2.75rem);
  --maxw:    1220px;
  --band:    clamp(4.5rem, 3rem + 6vw, 8.5rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-1: 0 1px 2px rgba(10, 23, 41, .04), 0 8px 24px rgba(10, 23, 41, .05);
  --shadow-2: 0 2px 4px rgba(10, 23, 41, .05), 0 18px 48px rgba(10, 23, 41, .10);
}

/* ---------------------------------------------------------------- 2. Reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, canvas { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.012em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection { background: var(--brass); color: #fff; }

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -140%);
  z-index: 200;
  background: var(--navy-ink); color: #fff;
  padding: .75rem 1.5rem;
  font: 500 .8125rem/1 var(--sans);
  text-decoration: none;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ------------------------------------------------------------- 3. Layout */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 940px; }

.band { padding-block: var(--band); }
.band--paper  { background: var(--paper); }
.band--paper2 { background: var(--paper-2); }
.band--navy   { background: var(--navy-ink); color: var(--on-dark-dim); }
.band--navy h1, .band--navy h2, .band--navy h3, .band--navy h4 { color: #fff; }
.band--tight  { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }

.rule-top { border-top: 1px solid var(--rule); }

/* ---------------------------------------------------------- 4. Typography */
.display {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 1.45rem + 4vw, 4.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.022em;
}

.h2 {
  font-size: clamp(1.9rem, 1.35rem + 2.2vw, 2.9rem);
  font-weight: 400;
  line-height: 1.1;
}

.h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.45vw, 1.4rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.008em;
}

.lede {
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.1875rem);
  line-height: 1.7;
  color: var(--body);
  max-width: 62ch;
}
.band--navy .lede { color: var(--on-dark-dim); }

.prose { max-width: 66ch; }
.prose p + p { margin-top: 1.15em; }

/* Section reference label — mono, letterspaced, hairline rule */
.ref {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 1.5rem;
}
.ref::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
  max-width: 7rem;
}
.band--navy .ref { color: var(--brass-lift); }
.band--navy .ref::after,
.band--navy .ref--center::before { background: var(--navy-line); }

.ref--center { justify-content: center; }
.ref--center::before {
  content: "";
  flex: 1 1 auto; height: 1px; background: var(--rule); max-width: 7rem;
}

.section-head { margin-bottom: clamp(2.5rem, 1.8rem + 2.4vw, 4rem); }
.section-head .lede { margin-top: 1.25rem; }
.section-head--center { text-align: center; }
.section-head--center .lede { margin-inline: auto; }

/* --------------------------------------------------------------- 5. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  padding: .9375rem 1.75rem;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .015em;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease),
              box-shadow .22s var(--ease);
}
.btn svg { width: 1rem; height: 1rem; flex: none; }

.btn--primary { background: var(--brass); color: #fff; border-color: var(--brass); }
.btn--primary:hover {
  background: var(--brass-deep); border-color: var(--brass-deep);
  transform: translateY(-1px); box-shadow: 0 6px 18px rgba(138, 109, 46, .28);
}

.btn--navy { background: var(--navy-ink); color: #fff; border-color: var(--navy-ink); }
.btn--navy:hover {
  background: var(--navy-deep); border-color: var(--navy-deep);
  transform: translateY(-1px); box-shadow: var(--shadow-1);
}

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper-2); }

.btn--ghost-light {
  background: transparent; color: #fff; border-color: rgba(201, 168, 92, .45);
}
.btn--ghost-light:hover { border-color: var(--brass-lift); background: rgba(201, 168, 92, .1); }

.btn--wa { background: #128C7E; color: #fff; border-color: #128C7E; }
.btn--wa:hover {
  background: #0E6F63; border-color: #0E6F63;
  transform: translateY(-1px); box-shadow: 0 6px 18px rgba(18, 140, 126, .3);
}

.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .875rem; }

/* Inline uppercase link with a brass underline that draws in */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass-deep);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--brass), var(--brass));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .3s var(--ease), color .22s var(--ease);
}
.tlink:hover { background-size: 100% 1px; color: var(--brass); }
.tlink svg { width: .7rem; height: .7rem; transition: transform .22s var(--ease); }
.tlink:hover svg { transform: translateX(3px); }

/* ---------------------------------------------------------------- 6. Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease),
              box-shadow .3s var(--ease);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 84px;
  transition: height .3s var(--ease);
}

.site-header.is-solid,
.site-header.is-light {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--rule);
}
.site-header.is-solid { box-shadow: 0 1px 18px rgba(10, 23, 41, .06); }
.site-header.is-solid .wrap { height: 72px; }

/* Brand lockup */
.brand {
  display: flex;
  align-items: center;
  gap: .8125rem;
  text-decoration: none;
  margin-right: auto;
  flex: none;
}
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__mark .m-frame { stroke: var(--brass-lift); }
.brand__mark .m-glyph { fill: #fff; }
.is-solid .brand__mark .m-frame, .is-light .brand__mark .m-frame { stroke: var(--brass); }
.is-solid .brand__mark .m-glyph, .is-light .brand__mark .m-glyph { fill: var(--navy-ink); }

.brand__text { display: flex; flex-direction: column; gap: 2px; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.brand__sub {
  font-family: var(--mono);
  font-size: .5625rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--brass-lift);
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.is-solid .brand__name, .is-light .brand__name { color: var(--navy-ink); }
.is-solid .brand__sub,  .is-light .brand__sub  { color: var(--brass-deep); }

/* Primary nav */
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  position: relative;
  padding: .5rem .875rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, .82);
  border-radius: 2px;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: .875rem; right: .875rem; bottom: .125rem;
  height: 1px;
  background: var(--brass-lift);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: #fff; }

.is-solid .nav a, .is-light .nav a { color: var(--body); }
.is-solid .nav a:hover, .is-light .nav a:hover,
.is-solid .nav a[aria-current="page"], .is-light .nav a[aria-current="page"] { color: var(--navy-ink); }
.is-solid .nav a::after, .is-light .nav a::after { background: var(--brass); }

.header-cta { flex: none; margin-left: .75rem; padding: .75rem 1.375rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 2px;
  cursor: pointer;
  flex: none;
}
.is-solid .nav-toggle, .is-light .nav-toggle { border-color: var(--rule); }
.nav-toggle__bars { display: block; width: 18px; height: 12px; position: relative; }
.nav-toggle__bars span {
  position: absolute; left: 0; right: 0; height: 1.5px;
  background: #fff;
  transition: transform .28s var(--ease), opacity .18s var(--ease), background-color .3s var(--ease);
}
.is-solid .nav-toggle__bars span, .is-light .nav-toggle__bars span { background: var(--navy-ink); }
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5.25px; }
.nav-toggle__bars span:nth-child(3) { top: 10.5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 86vw);
  z-index: 110;
  background: var(--navy-ink);
  padding: 6.5rem var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .38s var(--ease), visibility .38s;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer a {
  padding: 1rem 0;
  font-family: var(--serif);
  font-size: 1.375rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--navy-line);
  transition: color .2s var(--ease), padding-left .24s var(--ease);
}
.drawer a:hover, .drawer a[aria-current="page"] { color: var(--brass-lift); padding-left: .5rem; }
.drawer .btn { margin-top: 1.75rem; }
.drawer__contact {
  margin-top: auto;
  padding-top: 2rem;
  font-family: var(--mono);
  font-size: .75rem;
  line-height: 2;
  color: var(--on-dark-dim);
}
.drawer__contact a { font: inherit; border: 0; padding: 0; display: block; color: var(--on-dark-dim); }
.drawer__contact a:hover { color: var(--brass-lift); padding-left: 0; }

.scrim {
  position: fixed; inset: 0; z-index: 105;
  background: rgba(10, 23, 41, .55);
  opacity: 0; visibility: hidden;
  transition: opacity .38s var(--ease), visibility .38s;
}
.scrim.is-open { opacity: 1; visibility: visible; }

body.nav-open { overflow: hidden; }

/* ------------------------------------------------------------------ 7. Hero */
.hero {
  position: relative;
  background: var(--navy-ink);
  color: var(--on-dark-dim);
  padding-block: clamp(9rem, 6rem + 12vw, 13.5rem) clamp(4rem, 3rem + 5vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__guilloche {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  opacity: .55;
}
.hero::after {
  /* Vignette so type always wins over the engraving */
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 12% 30%, rgba(10, 23, 41, .96) 0%, rgba(10, 23, 41, .72) 45%, rgba(10, 23, 41, .35) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 60rem; }
.hero .display { color: #fff; margin-bottom: 1.75rem; }
.hero .lede { max-width: 55ch; margin-bottom: 2.5rem; font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem); }
.hero .btn-row { gap: 1rem; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-lift);
  margin-bottom: 1.75rem;
}
.hero__eyebrow::before {
  content: ""; width: 2rem; height: 1px; background: var(--brass); flex: none;
}

/* Practice-area strip under the hero */
.pillars {
  position: relative;
  margin-top: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--navy-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillars li {
  padding: .25rem 1.5rem;
  border-left: 1px solid var(--navy-line);
}
.pillars li:first-child { padding-left: 0; border-left: 0; }
.pillars span {
  display: block;
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-lift);
  margin-bottom: .5rem;
}
.pillars strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}

/* Page hero (interior pages) */
.pagehero {
  background: var(--navy-ink);
  color: var(--on-dark-dim);
  padding-block: clamp(8.5rem, 6rem + 10vw, 11rem) clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.pagehero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--navy-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: .32;
  mask-image: radial-gradient(120% 100% at 80% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 100% at 80% 0%, #000 0%, transparent 72%);
  pointer-events: none;
}
.pagehero .wrap { position: relative; }
.pagehero h1 {
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.6rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
}
.pagehero .lede { margin-top: 1.25rem; }

.crumbs {
  display: flex; align-items: center; gap: .625rem;
  font-family: var(--mono);
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  margin-bottom: 1.5rem;
}
.crumbs a { text-decoration: none; color: var(--brass-lift); }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.crumbs span { color: var(--navy-line); }

/* ------------------------------------------------------------------ 8. About */

/* Record strip — client-supplied figures, set in tabular numerals */
.record {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(3rem, 2rem + 3vw, 5rem);
}
.record li {
  padding: clamp(1.75rem, 1.4rem + 1vw, 2.5rem) 1.5rem;
  border-left: 1px solid var(--rule);
}
.record li:first-child { border-left: 0; padding-left: 0; }
.record__fig {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 1.7rem + 2.2vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: .6875rem;
}
.record__fig em { font-style: normal; color: var(--brass); }
.record__lbl {
  display: block;
  font-family: var(--mono);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.55;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 1.5rem + 5vw, 5.5rem);
  align-items: start;
}

.creds { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.creds li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--rule);
}
.creds dt, .creds .creds__k {
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-deep);
  padding-top: .3rem;
}
.creds .creds__v { font-size: .9375rem; line-height: 1.6; color: var(--body); }
.creds .creds__v strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .25rem;
}

/* Seal / emblem panel */
.emblem {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--navy-ink);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.emblem::before {
  content: "";
  position: absolute; inset: 1rem;
  border: 1px solid rgba(201, 168, 92, .3);
  pointer-events: none;
}
.emblem::after {
  content: "";
  position: absolute; inset: 1.375rem;
  border: 1px solid rgba(201, 168, 92, .14);
  pointer-events: none;
}
.emblem svg { width: min(62%, 260px); height: auto; position: relative; }
.emblem__caption {
  position: absolute;
  left: 0; right: 0; bottom: 2.5rem;
  text-align: center;
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass-lift);
}

/* --------------------------------------------------------------- 9. Services */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--paper);
}
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: clamp(1.75rem, 1.4rem + 1vw, 2.375rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  transition: background-color .28s var(--ease), transform .28s var(--ease),
              box-shadow .28s var(--ease);
}
.svc::before {
  content: "";
  position: absolute; inset: -1px auto auto -1px;
  height: 2px; width: 0;
  background: var(--brass);
  transition: width .38s var(--ease);
}
.svc:hover {
  background: var(--paper);
  z-index: 2;
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.svc:hover::before { width: calc(100% + 2px); }

.svc__icon { width: 30px; height: 30px; color: var(--brass); margin-bottom: .375rem; }
.svc__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none;
  stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.svc h3 { color: var(--ink); }
.svc p { font-size: .9375rem; line-height: 1.65; color: var(--body); }
.svc .tlink { margin-top: auto; padding-top: .75rem; align-self: flex-start; }

/* Compact list variant used on the services page for the long tail */
.svc-list { border-top: 1px solid var(--rule); }
.svc-list__item {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 20rem) minmax(0, 1fr);
  gap: clamp(1rem, .5rem + 2vw, 2.5rem);
  align-items: baseline;
  padding: clamp(1.5rem, 1.2rem + .8vw, 2rem) 0;
  border-bottom: 1px solid var(--rule);
  transition: background-color .24s var(--ease);
  position: relative;
}
.svc-list__item::before {
  content: "";
  position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--brass);
  transition: width .4s var(--ease);
}
.svc-list__item:hover::before { width: 100%; }
.svc-list__ref {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .1em;
  color: var(--muted); padding-top: .35rem;
  font-variant-numeric: tabular-nums;
}
.svc-list__item h3 { color: var(--ink); }
.svc-list__item p { font-size: .9375rem; line-height: 1.7; }

/* Two-column variant (no reference column) */
.svc-list--plain .svc-list__item { grid-template-columns: minmax(0, 21rem) minmax(0, 1fr); }

/* Heading link that only shows its rule on hover */
.plainlink {
  text-decoration: none;
  color: inherit;
  background-image: linear-gradient(var(--brass), var(--brass));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size .32s var(--ease), color .22s var(--ease);
}
.svc-list__item:hover .plainlink { background-size: 100% 1px; color: var(--brass-deep); }
.plainlink:focus-visible { background-size: 100% 1px; }

/* ------------------------------------------------------- 10. Corporate / SECP */
.corp-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 1.5rem + 5vw, 5rem);
  align-items: start;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0;
  border-top: 1px solid var(--navy-line);
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1.0625rem .5rem 1.0625rem 0;
  border-bottom: 1px solid var(--navy-line);
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--on-dark);
  transition: color .22s var(--ease), padding-left .28s var(--ease);
}
.checklist li:hover { color: #fff; padding-left: .375rem; }
.checklist li svg {
  width: 15px; height: 15px; flex: none; margin-top: .3125rem;
  stroke: var(--brass-lift); fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}

/* --------------------------------------------------------------- 11. Packages */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.25rem, .75rem + 1.5vw, 2rem);
  align-items: stretch;
}

.pkg {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: clamp(1.875rem, 1.5rem + 1.2vw, 2.5rem);
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease),
              transform .28s var(--ease);
}
.pkg:hover { border-color: var(--brass); box-shadow: var(--shadow-2); transform: translateY(-3px); }

.pkg__tier {
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.pkg__for {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: .625rem;
  line-height: 1.2;
}
.pkg__price {
  display: flex;
  align-items: baseline;
  gap: .375rem;
  margin: 1.5rem 0 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.pkg__amount {
  font-family: var(--mono);
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pkg__per { font-size: .8125rem; color: var(--muted); letter-spacing: .02em; }

.pkg__list { display: grid; gap: .875rem; padding: 1.75rem 0 2rem; flex: 1; }
.pkg__list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9375rem; line-height: 1.55; color: var(--body);
}
.pkg__list svg {
  width: 14px; height: 14px; flex: none; margin-top: .3125rem;
  stroke: var(--brass); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Featured (Gold) */
.pkg--featured {
  background: var(--navy-ink);
  border-color: var(--navy-ink);
  position: relative;
  box-shadow: var(--shadow-2);
}
.pkg--featured::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-lift) 50%, var(--brass) 100%);
}
.pkg--featured:hover { border-color: var(--brass); transform: translateY(-3px); }
.pkg--featured .pkg__tier { color: var(--brass-lift); }
.pkg--featured .pkg__for  { color: #fff; }
.pkg--featured .pkg__amount { color: #fff; }
.pkg--featured .pkg__per { color: var(--on-dark-dim); }
.pkg--featured .pkg__price { border-bottom-color: var(--navy-line); }
.pkg--featured .pkg__list li { color: var(--on-dark); }
.pkg--featured .pkg__list svg { stroke: var(--brass-lift); }

.pkg__flag {
  position: absolute;
  top: 3px; right: 0;
  background: var(--brass);
  color: #fff;
  font-family: var(--mono);
  font-size: .5625rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .375rem .75rem;
}

.pkg-note {
  margin-top: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  padding: 1.375rem 1.5rem;
  border: 1px solid var(--rule);
  border-left: 2px solid var(--brass);
  background: var(--paper);
  font-size: .875rem;
  line-height: 1.7;
  color: var(--body);
  border-radius: 2px;
}
.pkg-note strong { color: var(--ink); font-weight: 600; }

/* ---------------------------------------------------------------- 12. Clients */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.client {
  background: var(--paper);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .375rem;
  min-height: 118px;
  justify-content: center;
  transition: background-color .24s var(--ease);
}
.client:hover { background: var(--paper-2); }
.client__name {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.client__type {
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.client--empty { background: var(--paper-2); }
.client--empty .client__name {
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}

.placeholder-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px dashed var(--brass);
  background: var(--brass-wash);
  border-radius: 2px;
  font-size: .875rem;
  line-height: 1.7;
  color: #6B5424;
}
.placeholder-note strong { color: #4A3A19; }

/* ----------------------------------------------------------------- 13. CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--navy-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .3;
  mask-image: radial-gradient(90% 120% at 100% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(90% 120% at 100% 50%, #000 0%, transparent 70%);
}
.cta-band .wrap { position: relative; }
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
}
.cta-inner h2 { max-width: 24ch; }
.cta-inner p { margin-top: 1rem; max-width: 46ch; color: var(--on-dark-dim); }

/* ---------------------------------------------------------------- 14. Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 1.5rem + 5vw, 5rem);
  align-items: start;
}

.cinfo { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.cinfo__row {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 1.125rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.cinfo__icon { color: var(--brass); padding-top: .1875rem; }
.cinfo__icon svg {
  width: 20px; height: 20px; stroke: currentColor; fill: none;
  stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round;
}
.cinfo__k {
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3125rem;
}
.cinfo__v { font-size: 1rem; line-height: 1.55; color: var(--ink); }
.cinfo__v a { text-decoration: none; border-bottom: 1px solid var(--rule); transition: border-color .2s var(--ease), color .2s var(--ease); }
.cinfo__v a:hover { color: var(--brass-deep); border-bottom-color: var(--brass); }

/* Form */
.form { display: grid; gap: 1.125rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }
.field { display: grid; gap: .4375rem; }
.field label {
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--brass); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8125rem .9375rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-size: .9375rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%2374848F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9375rem center; padding-right: 2.5rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #BFC9D4; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(168, 134, 63, .13);
}
.field input::placeholder, .field textarea::placeholder { color: #A6B1BD; }

.form__consent {
  display: flex; gap: .75rem; align-items: flex-start;
  font-size: .8125rem; line-height: 1.6; color: var(--muted);
}
.form__consent input { width: 16px; height: 16px; margin-top: .1875rem; accent-color: var(--brass); flex: none; }

.form__status {
  display: none;
  padding: .9375rem 1.125rem;
  border-radius: 2px;
  font-size: .875rem;
  line-height: 1.6;
}
.form__status.is-visible { display: block; }
.form__status.is-ok   { background: #EFF6F1; border: 1px solid #BFDCC8; color: #245C39; }
.form__status.is-err  { background: #FCF0EF; border: 1px solid #E7C3C0; color: #8A342E; }

/* Map panel */
.mapcard {
  position: relative;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  background: var(--paper-2);
}
.mapcard__canvas { display: block; width: 100%; height: 260px; }
.mapcard__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}
.mapcard__addr { font-size: .875rem; line-height: 1.5; color: var(--ink); max-width: 34ch; }
.mapcard__addr span {
  display: block;
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}

/* ------------------------------------------------------- 14b. Page modules */

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.form__disclaimer { font-size: .75rem; line-height: 1.6; color: var(--muted); }

/* Numbered process — the four stages genuinely run in order */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  counter-reset: step;
}
.step {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: clamp(1.75rem, 1.4rem + 1vw, 2.25rem) clamp(1.25rem, 1rem + 1vw, 2rem) clamp(1.75rem, 1.4rem + 1vw, 2.25rem) 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.step:last-child { border-right: 0; }
.step__n {
  font-family: var(--mono);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--brass);
  padding-top: .25rem;
  font-variant-numeric: tabular-nums;
}
.step h3 { color: var(--ink); margin-bottom: .5rem; }
.step p { font-size: .9375rem; line-height: 1.7; }

/* Services page — anchor index */
.svc-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.svc-index li { border-bottom: 1px solid var(--rule); }
.svc-index a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9375rem 1.25rem .9375rem 0;
  font-size: .9375rem;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s var(--ease), padding-left .24s var(--ease);
}
.svc-index a svg { width: .7rem; height: .7rem; color: var(--brass); flex: none; opacity: 0; transition: opacity .22s var(--ease), transform .22s var(--ease); }
.svc-index a:hover { color: var(--brass-deep); padding-left: .375rem; }
.svc-index a:hover svg { opacity: 1; transform: translateX(2px); }

/* Services page — detail entries */
.svcdetail-list { border-top: 1px solid var(--rule); }
.svcdetail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1.25rem + 3vw, 4.5rem);
  padding: clamp(2.5rem, 2rem + 2vw, 4rem) 0;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 96px;
}
.svcdetail__head .svc__icon { margin-bottom: 1.25rem; }
.svcdetail__head h2 { color: var(--ink); margin-bottom: 1rem; }
.svcdetail__head p { font-size: 1rem; line-height: 1.75; max-width: 46ch; }
.svcdetail__label {
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: .875rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 1.25rem;
}

.ticks { display: grid; gap: .8125rem; }
.ticks li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9375rem; line-height: 1.6; color: var(--body);
}
.ticks svg {
  width: 14px; height: 14px; flex: none; margin-top: .3125rem;
  stroke: var(--brass); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Packages page — comparison table */
.tablewrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: 2px; background: var(--paper); }
.cmp {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: .9375rem;
  font-variant-numeric: tabular-nums;
}
.cmp thead th {
  text-align: left;
  padding: 1.25rem 1.25rem 1.125rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  vertical-align: bottom;
  white-space: nowrap;
}
.cmp thead th:first-child { color: var(--muted); }
.cmp thead th span {
  display: block;
  margin-top: .4375rem;
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.cmp tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
  padding: .9375rem 1.25rem;
  border-bottom: 1px solid var(--rule-soft);
}
.cmp tbody td {
  padding: .9375rem 1.25rem;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--body);
}
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp tbody tr:hover th, .cmp tbody tr:hover td { background: var(--paper-2); }
.cmp .is-none { color: #AFB9C4; }
.cmp .is-featured { background: rgba(168, 134, 63, .055); }
.cmp thead th.is-featured { box-shadow: inset 0 3px 0 var(--brass); }
.cmp tbody tr:hover td.is-featured { background: rgba(168, 134, 63, .1); }

/* ---------------------------------------------------------------- 15. Footer */
.site-footer {
  background: var(--navy-ink);
  color: var(--on-dark-dim);
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 5.5rem) 0;
  font-size: .9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.footer-brand .brand { margin-right: 0; margin-bottom: 1.25rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { font-size: .9375rem; line-height: 1.75; max-width: 40ch; color: var(--on-dark-dim); }
.footer-brand .btn { margin-top: 1.75rem; }

.fcol h4 {
  font-family: var(--mono);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-lift);
  margin-bottom: 1.25rem;
}
.fcol ul { display: grid; gap: .6875rem; }
.fcol a {
  text-decoration: none;
  font-size: .9375rem;
  color: var(--on-dark-dim);
  transition: color .2s var(--ease), padding-left .24s var(--ease);
}
.fcol a:hover { color: #fff; padding-left: .25rem; }
.fcol address { font-style: normal; line-height: 1.7; color: var(--on-dark-dim); }
.fcol address a { display: inline; }
.fcol address a:hover { padding-left: 0; }

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.625rem;
  border-top: 1px solid var(--navy-line);
  font-family: var(--mono);
  font-size: .6875rem;
  letter-spacing: .06em;
  color: #7E90A3;
}
.footer-bar a { text-decoration: none; }
.footer-bar a:hover { color: var(--brass-lift); }
.footer-bar__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* --------------------------------------------------------- 16. Floating WA */
.wa-float {
  position: fixed;
  right: clamp(1rem, .5rem + 1.5vw, 1.75rem);
  bottom: clamp(1rem, .5rem + 1.5vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .8125rem 1.125rem;
  background: #128C7E;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 6px 22px rgba(10, 23, 41, .22);
  transform: translateY(0);
  transition: background-color .22s var(--ease), transform .22s var(--ease),
              box-shadow .22s var(--ease);
}
.wa-float:hover {
  background: #0E6F63;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 23, 41, .28);
}
.wa-float svg { width: 20px; height: 20px; fill: currentColor; flex: none; }
.wa-float__label { white-space: nowrap; }

/* ------------------------------------------------------------ 17. Animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }
.reveal[data-delay="5"] { transition-delay: .35s; }

/* Hero load sequence */
.hero-in { opacity: 0; transform: translateY(14px); animation: heroIn .85s var(--ease) forwards; }
.hero-in:nth-child(1) { animation-delay: .05s; }
.hero-in:nth-child(2) { animation-delay: .14s; }
.hero-in:nth-child(3) { animation-delay: .23s; }
.hero-in:nth-child(4) { animation-delay: .32s; }
.hero-in:nth-child(5) { animation-delay: .41s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-in { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------- 18. Responsive */
@media (max-width: 1080px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .about-grid, .corp-grid, .contact-grid { grid-template-columns: 1fr; }
  .emblem { aspect-ratio: 16 / 10; max-width: 520px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillars li { padding: 1rem 1.25rem 1rem 0; }
  .svc-list:not(.svc-list--plain) .svc-list__item { grid-template-columns: 3rem 1fr; }
  .svc-list:not(.svc-list--plain) .svc-list__item p { grid-column: 2; }
  .svc-list--plain .svc-list__item { grid-template-columns: 1fr; gap: .5rem; }
  .svcdetail { grid-template-columns: 1fr; }
  .step { border-right: 0; padding-right: 0; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 80px; }
  .site-header .wrap, .site-header.is-solid .wrap { height: 68px; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: 1rem; }
  .brand__sub { font-size: .5rem; letter-spacing: .13em; }
  .pillars { grid-template-columns: 1fr; }
  .pillars li { padding: .875rem 0; }
  .form__row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .wa-float__label { display: none; }
  .wa-float { padding: .875rem; }
  .client-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .record { grid-template-columns: 1fr; }
  .record li {
    display: flex; align-items: baseline; gap: 1.125rem;
    border-left: 0; border-bottom: 1px solid var(--rule);
    padding: 1.25rem 0;
  }
  .record li:last-child { border-bottom: 0; }
  .record__fig { margin-bottom: 0; min-width: 4.75rem; font-size: 2.25rem; }
}

@media (min-width: 621px) {
  .btn { width: auto; }
}

@media print {
  .site-header, .wa-float, .drawer, .scrim, .cta-band { display: none !important; }
  body { color: #000; background: #fff; }
}
