/* ==========================================================================
   Easy Solution & Services — corporate site
   Identity: installer-paper ground + McIntosh amber, approved 2026-09-10.

   v2: the first pass was flat — one beige ground, hairline boxes throughout,
   no imagery and no depth. This version builds rhythm from alternating dark
   and paper sections, gives cards real elevation, and leads with a dark hero
   so the gold ESS wordmark sits on black.
   ========================================================================== */

@font-face { font-family:'Fraunces'; font-weight:100 900; font-style:normal; font-display:swap;
  src:url('../assets/fonts/fraunces-variable-latin.woff2') format('woff2'); }
@font-face { font-family:'Nunito'; font-weight:200 1000; font-style:normal; font-display:swap;
  src:url('../assets/fonts/nunito-variable-latin.woff2') format('woff2'); }

:root {
  /* ── exact tokens from ESS-brand-assets.pdf ── */
  --bg:        #0A0A0B;   /* page background  */
  --bg-soft:   #111114;   /* softer panels    */
  --surface:   #16161A;   /* cards / raised   */
  --brass:     #C8A97E;   /* logo, accents    */
  --brass-2:   #E3C89F;   /* lighter highlight*/
  --ink:       #F4F1EA;   /* primary text     */
  --ink-dim:   #A8A49C;   /* body / secondary */
  --muted:     #6F6B62;   /* faint labels     */
  --line:      rgba(244,241,234,.08);
  --line-firm: rgba(244,241,234,.16);

  /* semantic only, never decoration */
  --ok:   #6FA97E;
  --warn: #C87E7E;

  --lift-1: 0 1px 2px rgba(0,0,0,.30), 0 2px 10px rgba(0,0,0,.24);
  --lift-2: 0 4px 12px rgba(0,0,0,.34), 0 14px 40px rgba(0,0,0,.34);
  --lift-3: 0 8px 20px rgba(0,0,0,.40), 0 30px 70px rgba(0,0,0,.44);

  --maxw: 1220px;
  --gut:  clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body {
  margin:0; background:var(--bg); color:var(--ink);
  font-family:'Nunito', system-ui, -apple-system, sans-serif;
  font-size:16.5px; line-height:1.68;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}

img { max-width:100%; display:block; }
a { color:inherit; }

.wrap { width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gut); }

h1,h2,h3 {
  font-family:'Fraunces', Georgia, serif; font-weight:500;
  line-height:1.08; letter-spacing:-0.02em; margin:0;
  font-variation-settings:'SOFT' 20,'WONK' 0;
}
em { font-style:normal; color:var(--brass); font-variation-settings:'SOFT' 60,'WONK' 1; }

.eyebrow {
  font-family:'Nunito', sans-serif; font-size:11px; font-weight:500;
  letter-spacing:.2em; text-transform:uppercase; color:var(--brass); margin:0 0 20px;
  display:flex; align-items:center; gap:12px;
}
.eyebrow::after { content:''; flex:0 0 40px; height:1px; background:var(--brass); opacity:.5; }

.lede { font-size:clamp(17px,1.55vw,20px); color:var(--ink-dim); max-width:60ch; }

.skip { position:absolute; left:-9999px; background:var(--ink); color:var(--bg); padding:12px 20px; z-index:300; }
.skip:focus { left:0; top:0; }

.split { display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,4.5vw,68px); align-items:start; }

/* ══ NAV — dark, so the gold wordmark reads ═════════════════════════ */

.nav {
  position:sticky; top:0; z-index:200;
  background:rgba(10,10,11,.92);
  backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.nav__in { display:flex; align-items:center; gap:28px; min-height:76px; }
.nav__logo { display:flex; align-items:center; gap:13px; text-decoration:none; margin-right:auto; }
.nav__sub {
  font-family:'Nunito', sans-serif; font-size:9px; letter-spacing:.18em;
  text-transform:uppercase; color:var(--muted); padding-left:13px;
  border-left:1px solid var(--line-firm);
}
.nav__links { display:flex; align-items:center; gap:28px; }
.nav__links a {
  text-decoration:none; font-size:14.5px; font-weight:500; color:#A8A49C;
  padding:6px 0; position:relative; transition:color .2s ease;
}
.nav__links a::after {
  content:''; position:absolute; left:0; right:100%; bottom:0; height:1.5px;
  background:var(--brass); transition:right .3s cubic-bezier(.22,1,.36,1);
}
.nav__links a:hover { color:#fff; }
.nav__links a:hover::after { right:0; }
.nav__links .btn::after { display:none; }

.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:'Nunito',sans-serif; font-size:14.5px; font-weight:600;
  text-decoration:none; padding:13px 24px; border-radius:4px;
  border:1px solid transparent; cursor:pointer; white-space:nowrap;
  transition:transform .18s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.btn--primary { background:var(--brass); color:#0A0A0B; box-shadow:0 4px 14px rgba(200,169,126,.28); }
.btn--primary:hover { background:#E3C89F; transform:translateY(-1px); box-shadow:0 8px 22px rgba(200,169,126,.38); }
.btn--ghost { border-color:var(--line-firm); color:var(--ink); }
.btn--ghost:hover { border-color:var(--ink); background:var(--surface); transform:translateY(-1px); box-shadow:var(--lift-1); }
.btn--onDark { border:1px solid rgba(255,255,255,.22); color:var(--ink); }
.btn--onDark:hover { border-color:var(--brass); color:#fff; background:rgba(200,169,126,.08); }

.nav__burger { display:none; background:none; border:0; cursor:pointer; padding:8px; margin-right:-8px; }
.nav__burger span { display:block; width:22px; height:1.5px; background:var(--ink); }
.nav__burger span + span { margin-top:6px; }

/* ══ DARK SECTION SHELL ═════════════════════════════════════════════ */

.dark { position:relative; background:var(--bg); color:var(--ink); overflow:hidden; }

/* soft amber bloom + a faint grid — depth without a photograph */
.dark::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(880px 520px at 78% 12%, rgba(200,169,126,.13), transparent 62%),
    radial-gradient(600px 460px at 12% 88%, rgba(200,169,126,.12), transparent 66%);
}
.dark::after {
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.32;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
  mask-image:radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
}
.dark > .wrap { position:relative; z-index:1; }
.dark h1, .dark h2, .dark h3 { color:#F4F1EA; }
.dark .lede { color:#A8A49C; }
.dark .eyebrow { color:var(--brass); }
.dark .notes p { color:#A8A49C; }

/* ══ HERO ═══════════════════════════════════════════════════════════ */

.hero { padding:clamp(56px,7.5vw,96px) 0 clamp(48px,6vw,80px); }
.hero__grid { display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(28px,4vw,64px); align-items:center; }
.hero h1 { font-size:clamp(40px,5.6vw,70px); margin-bottom:26px; max-width:15ch; }
.hero h1 em { color:var(--brass); }
.hero__lede { margin-bottom:36px; }
.hero__cta { display:flex; flex-wrap:wrap; gap:14px; }
.hero__art { position:relative; }
.hero__art img, .hero__art svg { width:100%; height:auto; display:block; }
.hero__cap {
  font-family:'Nunito',sans-serif; font-size:10.5px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--muted); text-align:center; margin:8px 0 0;
}

/* proof strip sits inside the dark hero, as a lifted band */
.proof {
  display:grid; grid-template-columns:repeat(4,1fr);
  margin-top:clamp(44px,5.5vw,68px);
  border:1px solid rgba(255,255,255,.1); border-radius:6px;
  background:rgba(255,255,255,.03); overflow:hidden;
}
.proof__cell { padding:26px 24px; }
.proof__cell + .proof__cell { border-left:1px solid rgba(255,255,255,.08); }
.proof__n {
  font-family:'Nunito',sans-serif; font-variant-numeric:tabular-nums;
  font-size:clamp(28px,3.2vw,40px); font-weight:600; line-height:1;
  letter-spacing:-.02em; display:block; margin-bottom:10px; color:#F4F1EA;
}
.proof__cell:first-child .proof__n { color:var(--brass); }
.proof__l { font-size:12.5px; color:var(--muted); line-height:1.45; }

/* ══ SECTIONS ═══════════════════════════════════════════════════════ */

.sec { padding:clamp(64px,8.5vw,116px) 0; }
.sec--paper { background:var(--bg-soft); }
.sec__head { max-width:64ch; margin-bottom:clamp(38px,4.5vw,60px); }
.sec__head h2 { font-size:clamp(30px,3.9vw,48px); margin-bottom:20px; }
.sec__head--mid { margin-inline:auto; text-align:center; }
.sec__head--mid .eyebrow { justify-content:center; }
.sec__head--mid .eyebrow::before { content:''; flex:0 0 40px; height:1px; background:var(--brass); opacity:.5; }
.sec__head--mid .lede { margin-inline:auto; }

/* ══ PILLAR CARDS — elevated, not hairline boxes ════════════════════ */

.pillars { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

a.pillar {
  position:relative; display:flex; flex-direction:column;
  background:var(--surface); border:1px solid var(--line); border-radius:8px;
  padding:28px 26px 30px; text-decoration:none; color:inherit;
  box-shadow:var(--lift-1); overflow:hidden;
  transition:transform .26s cubic-bezier(.22,1,.36,1), box-shadow .26s ease, border-color .26s ease;
}
a.pillar::before {
  content:''; position:absolute; left:0; right:0; top:0; height:3px;
  background:linear-gradient(90deg, var(--brass), var(--brass));
  transform:scaleX(0); transform-origin:left;
  transition:transform .3s cubic-bezier(.22,1,.36,1);
}
a.pillar:hover { transform:translateY(-4px); box-shadow:var(--lift-3); border-color:var(--line-firm); }
a.pillar:hover::before { transform:scaleX(1); }
a.pillar:focus-visible { outline:2px solid var(--brass); outline-offset:3px; }

.pillar__top { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.pillar__ic {
  width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
  background:var(--bg-soft); color:var(--brass);
  border:1px solid rgba(200,169,126,.35);
  transition:background .26s ease, color .26s ease;
}
a.pillar:hover .pillar__ic { background:var(--brass); color:#0A0A0B; }
.pillar__n {
  font-family:'Nunito',sans-serif; font-variant-numeric:tabular-nums;
  font-size:12px; font-weight:600; letter-spacing:.1em; color:var(--line-firm);
}
.pillar h3 { font-size:21px; margin-bottom:14px; }

.pillar__list { list-style:none; margin:0; padding:0; flex:1; font-size:13px; line-height:1.9; color:var(--muted); }
.pillar__list li { position:relative; padding-left:15px; }
.pillar__list li::before {
  content:''; position:absolute; left:0; top:11px; width:5px; height:5px;
  border-radius:50%; background:var(--line-firm);
}
.pillar__foot {
  margin-top:22px; padding-top:16px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.pillar__count {
  font-family:'Nunito',sans-serif; font-size:10.5px;
  letter-spacing:.1em; text-transform:uppercase; color:var(--muted);
}
.pillar__go {
  font-size:18px; color:var(--brass); line-height:1;
  transform:translateX(-4px); opacity:0; transition:opacity .26s ease, transform .26s ease;
}
a.pillar:hover .pillar__go { opacity:1; transform:none; }
@media (hover:none) { .pillar__go { opacity:1; transform:none; } }

/* ══ COMPARISON — on dark, high contrast ════════════════════════════ */

.compare { border:1px solid rgba(255,255,255,.12); border-radius:8px; overflow:hidden; }
.compare__row { display:grid; grid-template-columns:1fr 1fr; }
.compare__row + .compare__row { border-top:1px solid rgba(255,255,255,.08); }
.compare__c { padding:18px 22px; font-size:14.5px; line-height:1.6; color:#A8A49C; }
.compare__c + .compare__c { border-left:1px solid rgba(255,255,255,.08); }
.compare__c--ess { background:rgba(200,169,126,.07); color:#F4F1EA; }
.compare__hd {
  font-family:'Nunito',sans-serif; font-size:10.5px; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase;
  background:rgba(255,255,255,.05); color:var(--muted);
}
.compare__row:first-child .compare__c--ess { background:rgba(200,169,126,.16); color:var(--brass); }

.notes p { margin:0 0 16px; }
.notes h3 { font-size:23px; margin-bottom:16px; }

/* ══ SECTORS ════════════════════════════════════════════════════════ */

.sectors { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.sector {
  position:relative; background:var(--surface); border:1px solid var(--line);
  border-radius:8px; padding:30px 26px; box-shadow:var(--lift-1); overflow:hidden;
  transition:transform .26s cubic-bezier(.22,1,.36,1), box-shadow .26s ease;
}
.sector::after {
  content:''; position:absolute; right:-40px; bottom:-40px; width:130px; height:130px;
  border-radius:50%; background:radial-gradient(circle, rgba(200,169,126,.13), transparent 70%);
  transition:transform .4s ease;
}
.sector:hover { transform:translateY(-4px); box-shadow:var(--lift-2); }
.sector:hover::after { transform:scale(1.5); }
.sector__k {
  font-family:'Nunito',sans-serif; font-size:10.5px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--brass); margin:0 0 12px;
}
.sector h3 { font-size:20px; margin-bottom:12px; }
.sector p { margin:0; font-size:14px; color:var(--muted); line-height:1.65; position:relative; z-index:1; }

/* ══ CONTACT ════════════════════════════════════════════════════════ */

.contact { display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(30px,4.5vw,64px); }
.formcard {
  background:var(--surface); border:1px solid var(--line); border-radius:10px;
  padding:clamp(26px,3vw,38px); box-shadow:var(--lift-2);
}
.frow { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { margin-bottom:16px; }
.field label {
  display:block; font-family:'Nunito',sans-serif; font-size:10.5px;
  letter-spacing:.12em; text-transform:uppercase; color:var(--ink-dim); margin-bottom:8px;
}
.field input, .field select, .field textarea {
  width:100%; padding:13px 15px; font-family:'Nunito',sans-serif; font-size:15px;
  color:var(--ink); background:var(--bg); border:1px solid var(--line-firm);
  border-radius:5px; transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color:var(--brass); background:#fff;
  box-shadow:0 0 0 3px rgba(200,169,126,.18);
}
.field textarea { min-height:112px; resize:vertical; }
.req { color:var(--brass); }

.pin { margin-bottom:28px; }
.pin__k {
  font-family:'Nunito',sans-serif; font-size:10.5px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--brass); margin:0 0 8px;
}
.pin__v { font-size:15px; line-height:1.65; color:var(--ink-dim); margin:0; }
.pin__v a { color:var(--ink); text-decoration:none; border-bottom:1px solid var(--line-firm); }
.pin__v a:hover { border-color:var(--brass); }
.pin__v--big { font-family:'Fraunces',serif; font-size:26px; color:var(--ink); line-height:1.3; }

.formnote { font-size:12.5px; color:var(--muted); margin:14px 0 0; }
.formstat { margin-top:14px; font-size:14px; display:none; }
.formstat.is-ok  { display:block; color:var(--ok); }
.formstat.is-err { display:block; color:var(--warn); }

/* ══ FOOTER ═════════════════════════════════════════════════════════ */

.foot { background:var(--bg); color:var(--muted); padding:60px 0 40px; }
.foot__in { display:flex; flex-wrap:wrap; gap:34px; justify-content:space-between; align-items:flex-start; }
.foot__col p { margin:0 0 8px; font-size:13.5px; color:var(--muted); }
.foot__col strong { color:#F4F1EA; font-weight:600; display:block; margin-bottom:10px; font-size:13.5px; }
.foot__col a { color:#A8A49C; text-decoration:none; }
.foot__col a:hover { color:var(--brass); }
.foot__legal {
  font-family:'Nunito',sans-serif; font-size:10.5px; letter-spacing:.08em;
  margin-top:38px; padding-top:24px; border-top:1px solid rgba(255,255,255,.09);
  display:flex; flex-wrap:wrap; gap:8px 24px; color:#6F6B62;
}
.foot__x {
  display:inline-flex; align-items:center; gap:9px; text-decoration:none;
  font-size:13.5px; color:var(--ink);
  border:1px solid rgba(255,255,255,.18); padding:11px 17px; border-radius:5px;
  transition:border-color .22s ease, background .22s ease, color .22s ease;
}
.foot__x:hover { border-color:var(--brass); background:rgba(200,169,126,.08); color:#fff; }

/* ══ PILLAR PAGES ═══════════════════════════════════════════════════ */

.crumb { font-family:'Nunito',sans-serif; font-size:11px; letter-spacing:.06em; color:var(--muted); margin-bottom:24px; }
.crumb a { color:var(--muted); text-decoration:none; }
.crumb a:hover { color:var(--brass); }
.crumb span[aria-hidden] { margin:0 7px; opacity:.5; }

.phero { padding:clamp(44px,5.5vw,74px) 0 clamp(44px,5.5vw,72px); }
.phero h1 { font-size:clamp(36px,5.2vw,62px); margin-bottom:16px; max-width:16ch; }
.phero__tag {
  font-family:'Fraunces',serif; font-size:clamp(18px,2vw,23px); color:var(--brass);
  margin:0 0 24px; font-variation-settings:'SOFT' 60,'WONK' 1;
}

.toc {
  margin-top:38px; border:1px solid rgba(255,255,255,.12); border-radius:8px;
  background:rgba(255,255,255,.03); padding:24px 28px;
}
.toc__h { font-family:'Nunito',sans-serif; font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--brass); margin:0 0 14px; }
.toc__l { margin:0; padding-left:20px; columns:2; column-gap:44px; font-size:14px; line-height:2; }
.toc__l li { break-inside:avoid; color:var(--muted); }
.toc__l a { color:#A8A49C; text-decoration:none; border-bottom:1px solid transparent; }
.toc__l a:hover { color:#fff; border-color:var(--brass); }

.syslist { padding:clamp(20px,3vw,40px) 0; }
.sys { display:grid; grid-template-columns:104px 1fr; gap:0 36px; padding:clamp(36px,4.5vw,58px) 0; scroll-margin-top:96px; }
.sys + .sys { border-top:1px solid var(--line); }
.sys__n {
  font-family:'Nunito',sans-serif; font-variant-numeric:tabular-nums;
  font-size:13px; font-weight:600; letter-spacing:.06em; color:var(--brass);
  margin:8px 0 0; position:sticky; top:100px;
}
.sys__main { max-width:72ch; }
.sys__main h2 { font-size:clamp(24px,2.9vw,34px); margin-bottom:16px; }
.sys__lede {
  font-size:clamp(16px,1.5vw,18.5px); color:var(--ink); font-weight:500;
  margin:0 0 24px; padding-left:18px; border-left:2px solid var(--brass);
}
.sys__main p { color:var(--ink-dim); margin:0 0 16px; }
.sys__deliver {
  margin-top:28px; padding:24px 26px; border-radius:8px;
  background:var(--surface); border:1px solid var(--line); box-shadow:var(--lift-1);
}
.sys__dh { font-family:'Nunito',sans-serif; font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--brass); margin:0 0 14px !important; }
.sys__deliver ul { margin:0; padding-left:19px; }
.sys__deliver li { font-size:14.5px; color:var(--ink-dim); line-height:1.7; margin-bottom:6px; }

.pcta { }
.pnav { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.pnav__i {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  border-radius:7px; padding:18px; text-decoration:none;
  display:flex; flex-direction:column; gap:9px;
  transition:background .22s ease, border-color .22s ease, transform .22s ease;
}
.pnav__i:hover { background:rgba(200,169,126,.09); border-color:var(--brass); transform:translateY(-2px); }
.pnav__n { font-family:'Nunito',sans-serif; font-size:10.5px; font-weight:600; letter-spacing:.1em; color:var(--brass); }
.pnav__t { font-family:'Fraunces',serif; font-size:16px; color:#F4F1EA; line-height:1.25; }

/* ══ RESPONSIVE ═════════════════════════════════════════════════════ */

@media (max-width:1080px) {
  .pillars { grid-template-columns:repeat(2,1fr); }
  .sectors { grid-template-columns:repeat(2,1fr); }
  .pnav    { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px) {
  .hero__grid { grid-template-columns:1fr; }
  .hero__art { max-width:520px; margin-inline:auto; order:-1; }
  .contact { grid-template-columns:1fr; }
  .split   { grid-template-columns:1fr; }
}
@media (max-width:760px) {
  .nav__links {
    position:fixed; inset:76px 0 auto; flex-direction:column; align-items:stretch; gap:0;
    background:var(--bg); border-bottom:1px solid rgba(255,255,255,.1);
    padding:8px var(--gut) 24px; transform:translateY(-125%);
    transition:transform .32s cubic-bezier(.22,1,.36,1);
  }
  .nav__links.is-open { transform:translateY(0); }
  .nav__links a { padding:16px 0; border-bottom:1px solid rgba(255,255,255,.08); font-size:16px; }
  .nav__links .btn { margin-top:18px; }
  .nav__burger { display:block; }
  .proof { grid-template-columns:repeat(2,1fr); }
  .proof__cell:nth-child(3), .proof__cell:nth-child(4) { border-top:1px solid rgba(255,255,255,.08); }
  .proof__cell:nth-child(3) { border-left:none; }
  .sys { grid-template-columns:1fr; gap:8px; }
  .sys__n { position:static; margin-bottom:2px; }
  .toc__l { columns:1; }
  .frow { grid-template-columns:1fr; gap:0; }
}
@media (max-width:540px) {
  .pillars, .sectors, .pnav { grid-template-columns:1fr; }
  .compare__row { grid-template-columns:1fr; }
  .compare__c + .compare__c { border-left:none; border-top:1px solid rgba(255,255,255,.08); }
  .hero__cta .btn { width:100%; }
}

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

/* ==========================================================================
   Coverage map
   Outline and pins share one projection (built in build/gen_map.py), so a pin
   sits at its true lat/lon rather than being eyeballed onto a background.
   The inset is the SAME path data at a different viewBox — the two views
   cannot drift apart.
   ========================================================================== */

.mapgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.mapcard {
  margin: 0; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 20px 22px 16px;
}
.mapcard__hd {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.mapcard__ft {
  margin: 10px 0 0; text-align: center;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #46433E;
}
.mapsvg { width: 100%; height: 560px; display: block; }
.mapsvg--inset { height: 560px; }

.land { fill: #16161A; stroke: rgba(244,241,234,.2); stroke-width: 1.1; stroke-linejoin: round; }
.mapsvg--inset .land { stroke: rgba(244,241,234,.3); stroke-width: 1.2; }

/* signal arcs — the network made visible */
.arc { fill: none; stroke: var(--brass); stroke-opacity: .26; stroke-width: 1.1; }
.arc--ne { stroke-opacity: .2; stroke-width: .7; }
.mote { fill: var(--brass-2); }
.mote--ne { fill: var(--brass-2); }

.pin__halo { fill: var(--brass); fill-opacity: .13; }
.pin__dot  { fill: var(--brass); stroke: var(--bg); stroke-width: 1.2; }
.mapsvg--inset .pin__dot { stroke-width: .8; }
.pin__lbl { font-family: 'Nunito', sans-serif; }
.pin__lbl--maj { fill: var(--ink); font-size: 15px; }
.pin__lbl--hub { fill: var(--ink); font-size: 8.5px; font-weight: 700; }
.pin__lbl--min { fill: var(--ink-dim); font-size: 7px; }

.ne-ring       { fill: none; stroke: var(--brass); stroke-opacity: .55; stroke-dasharray: 4 4; }
.ne-ring__fill { fill: var(--brass); fill-opacity: .1; }
.ne-ring__lbl  { fill: var(--brass); font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; }

.hub circle { fill: var(--brass); }
.hub__ring  { fill: none !important; stroke: var(--brass); stroke-opacity: .6; }

/* city ledger */
.cities {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 30px; border-top: 1px solid var(--line-firm);
}
.cty {
  padding: 14px 14px;
  border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
}
.cty__n { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.cty__s { display: block; margin-top: 3px; font-size: 11px; color: var(--muted); }

@media (max-width: 1080px) {
  .mapgrid { grid-template-columns: 1fr; }
  .cities  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .mapsvg, .mapsvg--inset { height: 420px; }
  .cities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pin__lbl--maj { font-size: 19px; }
}

/* Motion is decoration here — the map reads fine static. */
@media (prefers-reduced-motion: reduce) {
  .mote { display: none; }
  .arc  { stroke-opacity: .34; }
}

/* Hero map — the national view lives here now, so it must sit comfortably
   inside the first screen rather than pushing the fold down. */
.mapsvg--hero { height: clamp(380px, 46vw, 560px); }
.mapsvg--hero .pin__lbl--maj { font-size: 17px; }
.mapsvg--hero .land { stroke: rgba(244,241,234,.24); }

.mapcard--wide { max-width: 100%; }
.mapcard--wide .mapsvg--inset { height: clamp(420px, 44vw, 620px); }

@media (max-width: 900px) {
  .mapsvg--hero { height: 420px; }
  .mapsvg--hero .pin__lbl--maj { font-size: 22px; }
}

/* The one thing a visitor must not mis-read off the map: it is a record of
   work done, not a boundary on where we will go. */
.notbound {
  margin: 0 0 26px;
  padding: 18px 22px;
  border-left: 2px solid var(--brass);
  background: rgba(200,169,126,.06);
  border-radius: 0 6px 6px 0;
  font-size: 15.5px; line-height: 1.6; color: var(--ink-dim);
  max-width: 78ch;
}
.notbound strong { color: var(--brass); font-weight: 700; }

/* Dubai: an in-progress international site, drawn leaving the frame rather
   than squashing India to fit the Gulf in. Dashed + hollow pin so it reads
   as distinct from the 22 delivered, handed-over sites. */
.arc--intl { stroke-dasharray: 5 5; stroke-opacity: .38; }
.mote--intl { fill: var(--brass-2); }
.pin__dot--intl { fill: var(--bg); stroke: var(--brass); stroke-width: 2; }
.pin__lbl--intl { fill: var(--brass); font-size: 15px; font-weight: 700; }
.pin__lbl--intlsub { fill: var(--muted); font-size: 10.5px; }
@media (max-width: 900px) {
  .pin__lbl--intl { font-size: 19px; }
  .pin__lbl--intlsub { font-size: 13px; }
}

/* Track-record register — typographic, so it reads as a different mode from
   the hero map rather than repeating it. */
.regions { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--line-firm); }
.reg { padding: 26px 26px 26px 0; border-right: 1px solid var(--line); }
.reg:last-child { border-right: 0; padding-right: 0; }
.reg--wide .reg__l { columns: 2; column-gap: 26px; }
.reg__h {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin: 0 0 16px; padding-right: 26px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass);
}
.reg:last-child .reg__h { padding-right: 0; }
.reg__n { font-family: 'Fraunces', serif; font-size: 24px; letter-spacing: 0; color: var(--ink); }
.reg__l { list-style: none; margin: 0; padding: 0; }
.reg__c { break-inside: avoid; padding: 7px 0; border-bottom: 1px solid var(--line); }
.reg__city { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.reg__state { display: block; margin-top: 1px; font-size: 11.5px; color: var(--muted); }
.reg--intl .reg__city { color: var(--brass); }

.creed {
  margin: 44px 0 0; padding-top: 26px; border-top: 1px solid var(--line);
  font-family: 'Fraunces', Georgia, serif; font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.45; color: var(--ink); max-width: 46ch;
}
.creed span { color: var(--muted); }

@media (max-width: 1080px) { .regions { grid-template-columns: 1fr 1fr; } .reg { border-right: 0; padding-right: 0; } }
@media (max-width: 620px)  { .regions { grid-template-columns: 1fr; } .reg--wide .reg__l { columns: 1; } }

/* ==========================================================================
   Depth pass — "lit rack"
   The brand's three grounds (#0A0A0B / #111114 / #16161A) sit within six
   points of each other, so used flat they read as one dead value. These rules
   keep those tokens but put LIGHT on them: a warm source top-right, metallic
   top-edge highlights, film grain so the black isn't a digital void, and a
   real tonal step between sections.
   ========================================================================== */

/* 1 — grain. Stops large black areas looking like an empty div. */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 2 — a directional warm source rather than a symmetrical wash */
.dark::before {
  background:
    radial-gradient(1100px 620px at 88% -6%, rgba(200,169,126,.20), transparent 58%),
    radial-gradient(760px 520px at 6% 104%, rgba(200,169,126,.09), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.028), transparent 22%);
}

/* 3 — tonal steps between sections, so the page has a rhythm of value */
.hero            { background: #08080A; }
.sec--paper      { background: #101014; }
#coverage        { background: #0C0C0F; }
#approach        { background: #08080A; }
#about           { background: #0C0C0F; }

/* 4 — a lit horizon where sections meet */
.sec + .sec, #coverage, #approach, #about, #capabilities, #sectors, #contact {
  position: relative;
}
.sec::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(200,169,126,.34) 28%, rgba(200,169,126,.34) 72%, transparent);
}

/* 5 — surfaces catch light on their top edge, the way brushed metal does */
a.pillar, .sector, .formcard, .mapcard, .proof {
  background-image: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,0) 90px);
  border-color: rgba(244,241,234,.11);
}
a.pillar::after, .sector::after, .formcard::after {
  content: ''; position: absolute; left: 12px; right: 12px; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,241,234,.22), transparent);
  pointer-events: none;
}
.formcard { position: relative; }
a.pillar:hover { border-color: rgba(200,169,126,.4); }

/* 6 — the accent circle reads as a lit component, not a flat disc */
.pillar__ic {
  background: radial-gradient(circle at 34% 28%, rgba(200,169,126,.34), rgba(200,169,126,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 2px 10px rgba(0,0,0,.4);
}

/* 7 — big numbers glow faintly, like a meter */
.proof__cell:first-child .proof__n,
.reg__n { text-shadow: 0 0 26px rgba(200,169,126,.32); }

/* 8 — deepen the hero so the map floats out of it */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(900px 560px at 72% 42%, rgba(200,169,126,.07), transparent 66%);
}
.hero > .wrap { position: relative; z-index: 1; }

/* Proof tiles are links — each number has somewhere to go. */
a.proof__cell {
  position: relative; display: block; text-decoration: none; color: inherit;
  transition: background .22s ease;
}
a.proof__cell:hover { background: rgba(200,169,126,.07); }
a.proof__cell:focus-visible { outline: 2px solid var(--brass); outline-offset: -2px; }
.proof__go {
  position: absolute; right: 22px; top: 26px;
  font-size: 15px; color: var(--brass); line-height: 1;
  opacity: 0; transform: translateX(-5px);
  transition: opacity .22s ease, transform .22s ease;
}
a.proof__cell:hover .proof__go,
a.proof__cell:focus-visible .proof__go { opacity: 1; transform: none; }
a.proof__cell:hover .proof__n { color: var(--brass); }
@media (hover: none) { .proof__go { opacity: .7; transform: none; } }

/* Full capability index — every one of the 42, named and linked */
.idx { padding: clamp(24px,3vw,44px) 0 0; }
.idx__grp { padding: clamp(30px,3.6vw,48px) 0; }
.idx__grp + .idx__grp { border-top: 1px solid var(--line); }
.idx__hd {
  display: grid; grid-template-columns: 54px 1fr auto auto;
  align-items: baseline; gap: 0 18px; margin-bottom: 20px;
}
.idx__n { font-family: 'Fraunces', serif; font-size: 22px; color: var(--brass); margin: 0; }
.idx__hd h2 { font-size: clamp(22px,2.5vw,30px); }
.idx__c { margin: 0; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.idx__more { font-size: 13px; color: var(--brass); text-decoration: none; white-space: nowrap; }
.idx__more:hover { color: var(--brass-2); }

.idx__l { list-style: none; margin: 0; padding: 0 0 0 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.idx__row { border-top: 1px solid var(--line); }
.idx__row a {
  display: grid; grid-template-columns: 34px 1fr; gap: 2px 10px;
  padding: 13px 8px 13px 0; text-decoration: none; transition: background .2s ease, padding .2s ease;
}
.idx__row a:hover { background: rgba(200,169,126,.06); padding-left: 8px; }
.idx__row a:focus-visible { outline: 2px solid var(--brass); outline-offset: -2px; }
.idx__k { font-family: 'Fraunces', serif; font-size: 12px; color: var(--muted); padding-top: 3px; }
.idx__t { font-size: 15px; font-weight: 700; color: var(--ink); }
.idx__d { grid-column: 2; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.idx__row a:hover .idx__t { color: var(--brass); }

@media (max-width: 1000px) {
  .idx__l { grid-template-columns: 1fr; padding-left: 0; }
  .idx__hd { grid-template-columns: 40px 1fr; }
  .idx__c, .idx__more { grid-column: 2; }
}

/* Spec rows — the reader knows the category; they want what we hand over. */
.sys__spec { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.sys__spec li {
  position: relative; padding: 9px 0 9px 20px;
  font-size: 14.5px; line-height: 1.55; color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
}
.sys__spec li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 8px; height: 1px; background: var(--brass); opacity: .7;
}
.sys { padding: clamp(22px,2.6vw,32px) 0; }
.sys__main h2 { font-size: clamp(19px,2vw,24px); margin-bottom: 12px; }
.sys__n { font-size: 12px; }

/* ==========================================================================
   Pillar tiles — make them actually float
   On a dark ground a card only reads as "above" the page when three things
   are true: it is lighter than what's behind it, it casts a soft shadow, and
   light catches its top edge. Previously it had a hard border and almost no
   shadow, so it read as a drawn rectangle instead.
   ========================================================================== */

#capabilities { background: #08080A; }          /* drop the ground so tiles lift off it */

a.pillar {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,0) 120px),
    linear-gradient(168deg, #1C1C23 0%, #16161B 46%, #121217 100%);
  box-shadow:
    0 1px 1px rgba(0,0,0,.5),
    0 10px 24px rgba(0,0,0,.42),
    0 28px 60px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.07);
  transition:
    transform .34s cubic-bezier(.22,1,.36,1),
    box-shadow .34s cubic-bezier(.22,1,.36,1),
    border-color .34s ease;
}

/* the top-edge highlight sits inside the radius */
a.pillar::after {
  left: 18px; right: 18px;
  background: linear-gradient(90deg, transparent, rgba(244,241,234,.3), transparent);
}

a.pillar:hover,
a.pillar:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(200,169,126,.34);
  box-shadow:
    0 2px 2px rgba(0,0,0,.5),
    0 18px 36px rgba(0,0,0,.5),
    0 46px 90px rgba(0,0,0,.5),
    0 0 46px rgba(200,169,126,.10),
    inset 0 1px 0 rgba(255,255,255,.1);
}

/* the brass wipe reads better as a glow than a hard bar at this radius */
a.pillar::before { height: 2px; border-radius: 14px 14px 0 0; }

.pillars { gap: 24px; }

@media (prefers-reduced-motion: reduce) {
  a.pillar:hover, a.pillar:focus-visible { transform: none; }
}

/* sectors and the form card get the same treatment so the page is consistent */
.sector, .formcard {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0) 110px),
    linear-gradient(168deg, #1C1C23 0%, #16161B 50%, #121217 100%);
  box-shadow: 0 1px 1px rgba(0,0,0,.5), 0 10px 24px rgba(0,0,0,.4), 0 26px 56px rgba(0,0,0,.4);
}
.sector:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 2px rgba(0,0,0,.5), 0 18px 34px rgba(0,0,0,.48), 0 42px 82px rgba(0,0,0,.46);
}

/* Contact — call and WhatsApp only. No form, no inbox to spam. */
.reach { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.reach__card {
  display: block; padding: 30px 28px 26px; text-decoration: none; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0) 110px),
    linear-gradient(168deg, #1C1C23 0%, #16161B 50%, #121217 100%);
  box-shadow: 0 1px 1px rgba(0,0,0,.5), 0 10px 24px rgba(0,0,0,.4), 0 26px 56px rgba(0,0,0,.4);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.reach__card:hover, .reach__card:focus-visible {
  transform: translateY(-6px); border-color: rgba(200,169,126,.34);
  box-shadow: 0 2px 2px rgba(0,0,0,.5), 0 18px 34px rgba(0,0,0,.5), 0 44px 86px rgba(0,0,0,.48), 0 0 42px rgba(200,169,126,.1);
}
.reach__ic {
  display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 50%;
  margin-bottom: 20px; color: var(--brass);
  background: radial-gradient(circle at 34% 28%, rgba(200,169,126,.32), rgba(200,169,126,.07));
  border: 1px solid rgba(200,169,126,.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.reach__card--wa .reach__ic { color: #7FD08A; border-color: rgba(127,208,138,.34);
  background: radial-gradient(circle at 34% 28%, rgba(127,208,138,.26), rgba(127,208,138,.06)); }
.reach__k { display: block; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.reach__v { display: block; font-family: 'Fraunces', serif; font-size: clamp(22px,2.4vw,29px); color: var(--ink); line-height: 1.15; }
.reach__card:hover .reach__v { color: var(--brass); }
.reach__n { display: block; margin-top: 12px; font-size: 13px; line-height: 1.55; color: var(--muted); }

.reach__foot {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 30px;
  margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line);
}
.reach__foot .pin { margin: 0; }

@media (max-width: 900px) { .reach, .reach__foot { grid-template-columns: 1fr; } }

/* FIX — `.nav__links a` (0-1-1) outranked `.btn--primary` (0-1-0), so the CTA
   in the header inherited the grey link colour: 1.12:1 against brass, i.e.
   effectively invisible. Raise specificity rather than reach for !important. */
.nav__links a.btn--primary { color: #0A0A0B; }
.nav__links a.btn--primary:hover { color: #0A0A0B; }
.nav__links a.btn--onDark { color: var(--ink); }

/* Hero claim as scannable points — nobody reads a 55-word paragraph above the fold */
.hero__points { list-style: none; margin: 0 0 36px; padding: 0; max-width: 54ch; }
.hero__points li {
  position: relative; padding: 0 0 0 26px; margin-bottom: 13px;
  font-size: clamp(16px,1.5vw,18px); line-height: 1.6; color: var(--ink-dim);
}
.hero__points li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 12px; height: 1px; background: var(--brass);
}
.hero__points strong { color: var(--ink); font-weight: 700; }

/* ==========================================================================
   Touch targets — Apple and Google both ask for 44px minimum. Four elements
   were under it on phones; the burger at 33px was the one that mattered,
   since it's tapped on every visit.
   ========================================================================== */
@media (max-width: 900px) {
  .nav__burger {
    min-width: 44px; min-height: 44px;
    display: none; place-items: center;
  }
  .nav__logo { min-height: 44px; display: flex; align-items: center; }

  /* footer links sit inside running text, so grow them vertically only —
     padding, not min-height, keeps the line rhythm intact */
  .foot__col a, .foot__x { display: inline-flex; align-items: center; min-height: 44px; }
  .foot__col p a { padding: 11px 0; }
}
@media (max-width: 760px) {
  .nav__burger { display: grid; }
}

/* ==========================================================================
   MOBILE PASS — phones first
   The desktop hero puts the map beside the claim. Stacked, `order:-1` was
   pushing the map ABOVE the headline, so the first thing a phone visitor saw
   was a map of India with no idea whose it was. Claim first, always.
   ========================================================================== */

@media (max-width: 900px) {
  /* text before art — the whole point of the hero */
  .hero__art { order: 0; margin-top: 30px; max-width: 100%; }
  .hero__grid { gap: 8px; }

  /* the map supports the claim here, it doesn't lead */
  .mapsvg--hero { height: 300px; }
  .mapsvg--hero .pin__lbl--maj { font-size: 21px; }
  .mapsvg--hero .pin__lbl--intl { font-size: 21px; }
  .mapsvg--hero .pin__lbl--intlsub { font-size: 15px; }
  .mapsvg--hero .ne-ring__lbl { font-size: 20px; }
  .hero__cap { font-size: 9.5px; letter-spacing: .1em; }

  .hero { padding: 38px 0 44px; }
  .hero h1 { font-size: clamp(34px, 9vw, 46px); max-width: 100%; margin-bottom: 20px; }
}

@media (max-width: 760px) {
  /* "| SYSTEMS INTEGRATION" wrapped to two lines and crowded the burger */
  .nav__sub { display: none; }
  .nav__in { min-height: 64px; gap: 14px; }
  .nav__links { inset: 64px 0 auto; }

  /* the eyebrow rule dangled on its own line once the text wrapped */
  .eyebrow { flex-wrap: wrap; gap: 8px; font-size: 10px; letter-spacing: .16em; }
  .eyebrow::after { display: none; }
  .sec__head--mid .eyebrow::before { display: none; }

  .sec { padding: 52px 0; }
  .sec__head { margin-bottom: 30px; }
  .sec__head h2 { font-size: clamp(26px, 7.5vw, 34px); }
  .lede { font-size: 16.5px; }

  /* tiles get more room, less inner padding */
  .pillars, .sectors, .reach { gap: 16px; }
  a.pillar, .sector, .reach__card { padding: 24px 20px; }
  .pillar__list { font-size: 14px; line-height: 1.75; }

  .proof__cell { padding: 20px 18px; }
  .proof__n { font-size: 32px; }
  .proof__l { font-size: 12px; }

  .creed { font-size: 19px; margin-top: 32px; }
  .reg__c { padding: 9px 0; }
  .reg__city { font-size: 15px; }

  /* spec rows on the pillar pages */
  .sys__spec li { font-size: 15px; padding: 11px 0 11px 20px; }
  .sys__main h2 { font-size: 21px; }
  .idx__t { font-size: 15.5px; }
  .idx__row a { padding: 15px 8px 15px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 33px; line-height: 1.1; }
  .mapsvg--hero { height: 260px; }
  .mapsvg--hero .pin__lbl--maj { font-size: 25px; }
  .hero__points li { font-size: 16px; }
  .proof { grid-template-columns: 1fr 1fr; }
  .reach__v { font-size: 22px; }
}

/* iOS: stop Safari inflating text in landscape, and respect the notch */
html { -webkit-text-size-adjust: 100%; }
@supports (padding: max(0px)) {
  .wrap {
    padding-left: max(var(--gut), env(safe-area-inset-left));
    padding-right: max(var(--gut), env(safe-area-inset-right));
  }
}

/* ==========================================================================
   City register on phones
   Stacked one-per-row with the state on its own line, the 22 cities ran to
   1,918px — roughly three screens of scrolling. Someone scanning for their
   own city does not need the state spelled out underneath it, so: two
   columns, name only, tight rows. Same information, a quarter of the height.
   ========================================================================== */
@media (max-width: 760px) {
  .regions { gap: 0; }
  .reg { padding: 18px 0 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .reg:last-child { border-bottom: 0; }

  .reg__h { margin-bottom: 10px; padding-right: 0; font-size: 10px; }
  .reg__n { font-size: 19px; }

  .reg__l { columns: 2; column-gap: 20px; }
  .reg--wide .reg__l { columns: 2; }
  .reg__c { padding: 6px 0; break-inside: avoid; border-bottom: 1px solid rgba(244,241,234,.05); }
  .reg__city { font-size: 14px; line-height: 1.35; }

  /* the state is context, not what anyone is scanning for */
  .reg__state { display: none; }
  .reg--intl .reg__state { display: block; font-size: 10.5px; margin-top: 2px; }
}

@media (max-width: 400px) {
  .reg__city { font-size: 13.5px; }
  .reg__l { column-gap: 14px; }
}

/* Collapsible city groups — native <details>, open by default on desktop */
details.reg > summary { cursor: default; list-style: none; }
details.reg > summary::-webkit-details-marker { display: none; }

@media (max-width: 760px) {
  details.reg > summary {
    cursor: pointer; position: relative; padding: 14px 34px 14px 0;
    min-height: 44px; align-items: center; user-select: none;
  }
  /* chevron */
  details.reg > summary::after {
    content: ''; position: absolute; right: 6px; top: 50%;
    width: 8px; height: 8px; margin-top: -5px;
    border-right: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass);
    transform: rotate(45deg); transition: transform .24s ease;
  }
  details.reg[open] > summary::after { transform: rotate(-135deg); margin-top: -2px; }
  details.reg > summary:active { background: rgba(200,169,126,.06); }
  details.reg[open] > .reg__l { padding-bottom: 14px; }
  .reg { padding: 0; }
}

/* ==========================================================================
   Collapsible city register — every width
   Shipped closed. The four counts (15 / 3 / 4 / 1) carry the message; the
   full list is there for anyone who wants to check their own city. Native
   <details>, so it works with JavaScript disabled and the cities stay in the
   DOM for crawlers.
   ========================================================================== */
.regions { grid-template-columns: 1fr; gap: 0; }

details.reg {
  padding: 0; border-right: 0;
  border-bottom: 1px solid var(--line);
}
details.reg:first-child { border-top: 1px solid var(--line); }

details.reg > summary {
  cursor: pointer; position: relative; list-style: none;
  display: flex; align-items: center; justify-content: flex-start; gap: 16px;
  padding: 20px 40px 20px 0; min-height: 44px;
  transition: color .2s ease;
}
details.reg > summary::-webkit-details-marker { display: none; }
details.reg > summary:hover { color: var(--brass-2); }
details.reg > summary span:first-child {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass);
}
details.reg .reg__n {
  font-family: 'Fraunces', serif; font-size: 26px; letter-spacing: 0; color: var(--ink);
  margin-left: auto; margin-right: 8px;
}
details.reg > summary::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 9px; height: 9px; margin-top: -6px;
  border-right: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass);
  transform: rotate(45deg); transition: transform .26s cubic-bezier(.22,1,.36,1);
}
details.reg[open] > summary::after { transform: rotate(-135deg); margin-top: -2px; }

details.reg .reg__l {
  columns: 4; column-gap: 34px;
  padding: 0 0 24px; margin: 0;
}
details.reg .reg__c { break-inside: avoid; padding: 7px 0; border-bottom: 1px solid rgba(244,241,234,.05); }
details.reg .reg__city { font-size: 14.5px; }
details.reg .reg__state { font-size: 11.5px; }

@media (max-width: 1000px) { details.reg .reg__l { columns: 3; } }
@media (max-width: 760px) {
  details.reg > summary { padding: 16px 34px 16px 0; }
  details.reg > summary span:first-child { font-size: 11px; }
  details.reg .reg__n { font-size: 21px; }
  details.reg .reg__l { columns: 2; column-gap: 20px; padding-bottom: 16px; }
  details.reg .reg__state { display: none; }
  details.reg--intl .reg__state { display: block; }
}
@media (max-width: 400px) { details.reg .reg__l { columns: 2; column-gap: 14px; } }
