/* ==========================================================================
   Civic West Consulting — site stylesheet
   Palette sampled directly from the corporate mark.
   ========================================================================== */

:root{
  --ink:      #071A2E;   /* deepest navy, sampled from the mark            */
  --navy:     #0C304F;   /* mid navy, the W outline                        */
  --navy-2:   #123f66;
  --gold:     #C3A156;   /* brand gold                                     */
  --gold-lt:  #E2C982;
  --gold-dk:  #9A7C36;
  --prairie:  #2E5535;   /* the green landform inside the mark             */
  --paper:    #F2F5F6;   /* cool near-white, sampled from the mark's grey  */
  --paper-2:  #E7ECEE;
  --white:    #FFFFFF;
  --rule:     #D2DADE;
  --rule-dk:  rgba(255,255,255,.16);
  --body:     #33454F;

  --shell: 1180px;
  --gut: clamp(1.25rem, 4vw, 3.25rem);

  --ff-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --ff-text: 'Spectral', Georgia, 'Times New Roman', serif;

  --step--1: clamp(.8125rem, .78rem + .17vw, .9rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.1rem);
  --step-1:  clamp(1.16rem, 1.08rem + .38vw, 1.4rem);
  --step-2:  clamp(1.4rem, 1.24rem + .78vw, 1.95rem);
  --step-3:  clamp(1.7rem, 1.4rem + 1.5vw, 2.75rem);
  --step-4:  clamp(2.1rem, 1.5rem + 2.9vw, 4.15rem);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--paper);
  color:var(--body);
  font-family:var(--ff-text);
  font-size:var(--step-0);
  font-weight:400;
  line-height:1.68;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; height:auto; display:block; }

h1,h2,h3,h4{
  font-family:var(--ff-display);
  color:var(--ink);
  line-height:1.08;
  margin:0;
  font-variation-settings:'wdth' 112;
  letter-spacing:-.015em;
  text-wrap:balance;
}
h1{ font-size:var(--step-4); font-weight:800; }
h2{ font-size:var(--step-3); font-weight:700; }
h3{ font-size:var(--step-1); font-weight:700; letter-spacing:-.005em; }
h4{ font-size:var(--step-0); font-weight:700; font-variation-settings:'wdth' 105; }

p{ margin:0 0 1.05em; max-width:68ch; }
p:last-child{ margin-bottom:0; }

a{ color:var(--navy); text-underline-offset:.18em; text-decoration-thickness:1px; }
a:hover{ color:var(--gold-dk); }

:focus-visible{
  outline:2px solid var(--gold-dk);
  outline-offset:3px;
  border-radius:2px;
}
.on-dark :focus-visible, .cw-foot :focus-visible, .cta-band :focus-visible{
  outline-color:var(--gold-lt);
}

.shell{ width:min(100% - (var(--gut) * 2), var(--shell)); margin-inline:auto; }
.skip{
  position:absolute; left:-9999px; top:0; z-index:100;
  background:var(--ink); color:var(--white); padding:.7rem 1.1rem;
  font-family:var(--ff-display); font-size:.9rem;
}
.skip:focus{ left:.5rem; top:.5rem; }

/* ---------- masthead ---------------------------------------------------- */

.brandband{ height:4px; display:flex; }
.brandband i{ flex:1; }
.brandband i:nth-child(1){ background:var(--navy); flex:5; }
.brandband i:nth-child(2){ background:var(--gold); flex:2; }
.brandband i:nth-child(3){ background:var(--prairie); flex:1; }

.cw-head{
  position:sticky; top:0; z-index:50;
  background:rgba(242,245,246,.94);
  backdrop-filter:blur(9px);
  border-bottom:1px solid var(--rule);
}
.cw-head__in{
  display:flex; align-items:center; gap:1.5rem;
  min-height:78px; padding-block:.7rem;
}
.cw-logo{ flex:0 0 auto; line-height:0; }
.cw-logo img{ width:clamp(158px, 20vw, 208px); }

.cw-nav{ margin-left:auto; display:flex; align-items:center; gap:clamp(.9rem,1.9vw,1.85rem); }
.cw-nav a{
  font-family:var(--ff-display); font-size:.92rem; font-weight:600;
  font-variation-settings:'wdth' 100;
  color:var(--ink); text-decoration:none; padding-block:.45rem;
  border-bottom:2px solid transparent;
}
.cw-nav a:hover{ color:var(--navy); border-bottom-color:var(--gold); }
.cw-nav a[aria-current="page"]{ border-bottom-color:var(--navy); }

.cw-burger{
  margin-left:auto; display:none; align-items:center; gap:.55rem;
  background:none; border:1px solid var(--rule); border-radius:2px;
  padding:.5rem .75rem; cursor:pointer;
  font-family:var(--ff-display); font-weight:600; font-size:.85rem; color:var(--ink);
}
.cw-burger svg{ width:16px; height:12px; }

/* ---------- buttons ----------------------------------------------------- */

.btn{
  display:inline-block; font-family:var(--ff-display); font-weight:700;
  font-size:.94rem; font-variation-settings:'wdth' 104;
  letter-spacing:.005em; text-decoration:none; border-radius:2px;
  padding:.82rem 1.4rem; border:1.5px solid transparent;
  transition:background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn--gold{ background:var(--gold); color:var(--ink); border-color:var(--gold); }
.btn--gold:hover{ background:var(--gold-lt); border-color:var(--gold-lt); color:var(--ink); }
.btn--navy{ background:var(--navy); color:var(--white); border-color:var(--navy); }
.btn--navy:hover{ background:var(--ink); border-color:var(--ink); color:var(--white); }
.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn--ghost:hover{ background:var(--ink); color:var(--white); }
.btn--ghost-lt{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.5); }
.btn--ghost-lt:hover{ background:var(--white); color:var(--ink); border-color:var(--white); }
.btn--sm{ padding:.6rem 1.05rem; font-size:.87rem; }

/* ---------- survey-grid motif ------------------------------------------- */

.grid-bg{ position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.grid-bg svg{ position:absolute; width:118%; height:118%; top:-9%; left:-9%; }
.grid-bg .ln{ stroke:rgba(195,161,86,.11); stroke-width:1; fill:none; }
.grid-bg .ln--b{ stroke:rgba(195,161,86,.26); stroke-width:1.4; }
.grid-bg .parcel{ fill:rgba(46,85,53,.14); }
.grid-bg .road{ stroke:rgba(226,201,130,.34); stroke-width:2.4; fill:none; stroke-linecap:round; }

.draw{ stroke-dasharray:var(--len,1400); stroke-dashoffset:var(--len,1400); animation:draw 1.5s cubic-bezier(.5,.05,.25,1) forwards; }
.draw--2{ animation-delay:.18s; }
.draw--3{ animation-delay:.36s; }
@keyframes draw{ to{ stroke-dashoffset:0; } }
.fadein{ opacity:0; animation:fadein .9s ease .55s forwards; }
@keyframes fadein{ to{ opacity:1; } }
.rise{ opacity:0; transform:translateY(14px); animation:rise .8s cubic-bezier(.2,.7,.3,1) .12s forwards; }
.rise--2{ animation-delay:.28s; }
.rise--3{ animation-delay:.44s; }
@keyframes rise{ to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion:reduce){
  .draw,.fadein,.rise{ animation:none; opacity:1; transform:none; stroke-dashoffset:0; }
}

/* ---------- hero -------------------------------------------------------- */

.hero{
  position:relative; overflow:hidden; color:var(--white);
  background:
    radial-gradient(120% 90% at 78% 8%, #17456e 0%, rgba(23,69,110,0) 58%),
    linear-gradient(168deg, #0B2842 0%, var(--ink) 62%, #050f1c 100%);
}
.hero__in{ position:relative; padding-block:clamp(3.6rem, 9vw, 7.2rem); }
.hero__kicker{
  font-family:var(--ff-text); font-style:italic; font-size:var(--step-1);
  color:var(--gold-lt); margin:0 0 1.15rem;
}
.hero h1{ color:var(--white); max-width:17ch; }
.hero__lede{
  font-size:var(--step-1); color:rgba(233,240,244,.86); margin:1.5rem 0 2.2rem;
  max-width:56ch; font-weight:300;
}
.hero__acts{ display:flex; flex-wrap:wrap; gap:.85rem; }
.hero__region{
  margin-top:clamp(2.75rem,6vw,4.5rem); padding-top:1.35rem;
  border-top:1px solid rgba(226,201,130,.34);
  display:flex; flex-wrap:wrap; gap:.5rem 2.4rem; align-items:baseline;
}
.hero__region span{
  font-family:var(--ff-display); font-weight:600; font-size:.95rem;
  font-variation-settings:'wdth' 108; color:var(--white);
}
.hero__region em{
  font-family:var(--ff-text); font-style:italic; color:rgba(226,201,130,.9); font-size:.95rem;
}

/* ---------- page masthead (interior) ------------------------------------ */

.pagehead{
  position:relative; overflow:hidden; color:var(--white);
  background:linear-gradient(150deg,#0B2842 0%, var(--ink) 70%);
}
.pagehead__in{
  position:relative; padding-block:clamp(2.9rem,6.5vw,4.9rem);
  display:grid; grid-template-columns:minmax(0,1fr) auto; gap:2.5rem; align-items:end;
}
.pagehead h1{ color:var(--white); font-size:var(--step-3); max-width:20ch; }
.pagehead .crumb{
  font-family:var(--ff-display); font-size:.84rem; font-weight:600;
  color:var(--gold-lt); margin:0 0 1rem;
}
.pagehead .crumb a{ color:var(--gold-lt); text-decoration:none; }
.pagehead .crumb a:hover{ text-decoration:underline; }
.pagehead__lede{
  font-size:var(--step-1); font-weight:300; color:rgba(233,240,244,.85);
  margin:1.15rem 0 0; max-width:60ch;
}
.pagehead__glyph{ color:var(--gold); opacity:.9; }
.pagehead__glyph svg{ width:118px; height:118px; }

/* ---------- generic sections -------------------------------------------- */

.sec{ padding-block:clamp(3.1rem, 7vw, 5.6rem); }
.sec--tight{ padding-block:clamp(2.4rem, 5vw, 3.6rem); }
.sec--paper2{ background:var(--paper-2); }
.sec--white{ background:var(--white); }
.sec--ink{ background:var(--ink); color:rgba(233,240,244,.84); position:relative; overflow:hidden; }
.sec--ink h2,.sec--ink h3{ color:var(--white); }

.sec__head{ max-width:62ch; margin-bottom:clamp(1.9rem,4vw,2.9rem); }
.sec__head p{ margin-top:.95rem; }
.rule-gold{ width:64px; height:3px; background:var(--gold); margin-bottom:1.4rem; }

/* ---------- ledger of figures ------------------------------------------- */

.ledger{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  border-top:1px solid var(--rule); border-bottom:1px solid var(--rule);
}
.ledger div{ padding:1.7rem 1.5rem 1.6rem; border-left:1px solid var(--rule); }
.ledger div:first-child{ border-left:0; padding-left:0; }
.ledger b{
  display:block; font-family:var(--ff-display); font-weight:800;
  font-variation-settings:'wdth' 116; font-size:clamp(1.85rem,3.6vw,2.65rem);
  color:var(--navy); line-height:1; font-variant-numeric:tabular-nums;
}
.ledger span{ display:block; margin-top:.55rem; font-size:.92rem; color:#5b6b76; }
.ledger--dark{ border-color:var(--rule-dk); }
.ledger--dark div{ border-left-color:var(--rule-dk); }
.ledger--dark b{ color:var(--gold-lt); }
.ledger--dark span{ color:rgba(226,236,241,.7); }

/* ---------- practice grid ----------------------------------------------- */

.practice{ display:grid; gap:1px; background:var(--rule); border:1px solid var(--rule); }
@media (min-width:640px){ .practice{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .practice{ grid-template-columns:repeat(3,1fr); } }

.pcard{
  background:var(--white); padding:1.9rem 1.7rem 1.75rem;
  display:flex; flex-direction:column; gap:.9rem; text-decoration:none;
  border-top:3px solid transparent; transition:border-color .2s ease, background-color .2s ease;
}
.pcard:hover{ border-top-color:var(--gold); background:#FBFCFC; }
.pcard:hover h3{ color:var(--navy); }
.pcard__ico{ color:var(--navy); }
.pcard__ico svg{ width:46px; height:46px; }
.pcard p{ color:var(--body); font-size:.98rem; margin:0; }
.pcard--wide{ grid-column:1 / -1; }
@media (min-width:640px){
  .pcard--wide{ flex-direction:row; align-items:center; gap:1.9rem; padding-block:1.6rem; }
  .pcard--wide .pcard__ico{ flex:0 0 auto; }
  .pcard--wide div{ flex:1 1 auto; }
  .pcard--wide h3{ margin-bottom:.35rem; }
  .pcard--wide .pcard__go{ margin-top:0; padding-top:0; flex:0 0 auto; white-space:nowrap; }
}
.pcard__go{
  margin-top:auto; padding-top:1rem; font-family:var(--ff-display);
  font-weight:700; font-size:.85rem; color:var(--gold-dk);
}

/* ---------- pull quote / principle -------------------------------------- */

.principle{
  border-left:4px solid var(--gold);
  padding:.4rem 0 .4rem clamp(1.4rem,3vw,2.6rem);
}
.principle p{
  font-size:var(--step-2); line-height:1.42; font-weight:300;
  color:var(--ink); max-width:34ch;
}
.sec--ink .principle p{ color:var(--white); }
.principle cite{
  display:block; margin-top:1.3rem; font-style:normal;
  font-family:var(--ff-display); font-weight:600; font-size:.87rem; color:var(--gold-dk);
}
.sec--ink .principle cite{ color:var(--gold-lt); }

/* ---------- two-column prose + rail ------------------------------------- */

.split{ display:grid; gap:clamp(2rem,5vw,4rem); align-items:start; }
@media (min-width:900px){
  .split{ grid-template-columns:minmax(0,1.28fr) minmax(0,1fr); }
  .split--even{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .split--rail{ grid-template-columns:minmax(0,1fr) minmax(0,.62fr); }
}

.rail{
  border-top:3px solid var(--navy); padding-top:1.4rem;
  background:var(--white); padding:1.6rem 1.5rem 1.5rem; border-radius:2px;
}
.rail h3{ font-size:var(--step-0); margin-bottom:.85rem; }
.rail ul{ margin:0; padding:0; list-style:none; }
.rail li{ padding:.5rem 0; border-bottom:1px solid var(--rule); font-size:.95rem; }
.rail li:last-child{ border-bottom:0; }

/* ---------- capability lists -------------------------------------------- */

.caps{ display:grid; gap:clamp(1.5rem,3vw,2.4rem); }
@media (min-width:760px){ .caps{ grid-template-columns:repeat(2,1fr); } }
.cap{ border-top:1px solid var(--rule); padding-top:1.25rem; }
.cap h3{ margin-bottom:.7rem; }
.cap ul{ margin:0; padding:0; list-style:none; columns:1; }
.cap li{
  position:relative; padding-left:1.05rem; font-size:.97rem; margin-bottom:.34rem;
}
.cap li::before{
  content:""; position:absolute; left:0; top:.72em;
  width:5px; height:5px; background:var(--gold);
}
.sec--ink .cap{ border-top-color:var(--rule-dk); }

/* ---------- ledger list (projects) -------------------------------------- */

.plist{ border-top:1px solid var(--rule); }
.pitem{
  display:grid; gap:.4rem 2rem; padding:1.7rem 0;
  border-bottom:1px solid var(--rule);
}
@media (min-width:820px){
  .pitem{ grid-template-columns:minmax(0,1fr) 190px; align-items:start; }
}
.pitem h3{ margin-bottom:.15rem; }
.pitem .where{
  font-family:var(--ff-display); font-size:.88rem; font-weight:600;
  color:#5b6b76; margin:0 0 .7rem;
}
.pitem p{ font-size:.97rem; margin:0; }
.pitem .val{
  font-family:var(--ff-display); font-weight:800; font-variation-settings:'wdth' 114;
  font-size:1.35rem; color:var(--navy); font-variant-numeric:tabular-nums;
  border-top:2px solid var(--gold); padding-top:.55rem; line-height:1.1;
}
.pitem .val--basis{ font-size:1.02rem; font-variation-settings:'wdth' 106; }
.pitem .val small{ display:block; font-size:.72rem; font-weight:600; color:#5b6b76; letter-spacing:.02em; }

/* ---------- people ------------------------------------------------------ */

.people{ display:grid; gap:1px; background:var(--rule); border:1px solid var(--rule); }
@media (min-width:820px){ .people{ grid-template-columns:repeat(3,1fr); } }
.person{ background:var(--white); padding:2rem 1.7rem 2.1rem; text-decoration:none; display:block; }
.person .init{
  display:block; font-family:var(--ff-display); font-weight:800; font-variation-settings:'wdth' 118;
  font-size:2.1rem; color:var(--gold); line-height:1;
  margin-bottom:1.15rem; padding-bottom:1rem; border-bottom:1px solid var(--rule);
}
.person h3{ margin-bottom:.3rem; }
.person .role{ font-family:var(--ff-display); font-size:.87rem; font-weight:600; color:#5b6b76; margin:0 0 .8rem; }
.person p{ font-size:.96rem; margin:0; }

.bio{ border-top:3px solid var(--navy); padding-top:1.9rem; margin-top:clamp(2.4rem,5vw,3.6rem); }
.bio:first-of-type{ margin-top:0; }
.bio__name{ display:flex; flex-wrap:wrap; gap:.4rem 1.4rem; align-items:baseline; margin-bottom:.4rem; }
.bio__name h2{ font-size:var(--step-2); }
.bio__role{ font-family:var(--ff-display); font-weight:600; font-size:.95rem; color:var(--gold-dk); }
.creds{ display:grid; gap:1px; background:var(--rule); border:1px solid var(--rule); margin-top:1.6rem; }
@media (min-width:560px){ .creds{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .creds{ grid-template-columns:repeat(3,1fr); } }
.creds div{ background:var(--white); padding:.95rem 1.1rem; }
/* the final cell widens to close the row, so no empty grey cells are left over */
@media (min-width:560px) and (max-width:999px){
  .creds div:last-child:nth-child(2n+1){ grid-column:span 2; }
}
@media (min-width:1000px){
  .creds div:last-child:nth-child(3n+1){ grid-column:span 3; }
  .creds div:last-child:nth-child(3n+2){ grid-column:span 2; }
}
.creds b{ display:block; font-family:var(--ff-display); font-weight:800; font-size:1rem; color:var(--navy); }
.creds span{ display:block; font-size:.88rem; color:#5b6b76; line-height:1.45; margin-top:.15rem; }

/* ---------- steps (real sequences only) --------------------------------- */

.steps{ display:grid; gap:clamp(1.4rem,3vw,2rem); counter-reset:s; }
@media (min-width:760px){ .steps{ grid-template-columns:repeat(3,1fr); } }
.step{ counter-increment:s; border-top:1px solid var(--rule); padding-top:1.2rem; }
.step::before{
  content:counter(s,decimal-leading-zero);
  font-family:var(--ff-display); font-weight:800; font-size:.92rem;
  color:var(--gold-dk); display:block; margin-bottom:.55rem;
}
.step h3{ font-size:var(--step-0); margin-bottom:.45rem; }
.step p{ font-size:.95rem; margin:0; }
.sec--ink .step{ border-top-color:var(--rule-dk); }
.sec--ink .step::before{ color:var(--gold-lt); }

/* ---------- CTA band ---------------------------------------------------- */

.cta-band{
  position:relative; overflow:hidden; color:var(--white);
  background:linear-gradient(115deg, var(--ink) 0%, #0e3352 100%);
  border-top:4px solid var(--gold);
}
.cta-band__in{
  position:relative; padding-block:clamp(2.6rem,6vw,4.1rem);
  display:grid; gap:1.9rem; align-items:center;
}
@media (min-width:860px){ .cta-band__in{ grid-template-columns:minmax(0,1fr) auto; gap:3rem; } }
.cta-band h2{ color:var(--white); font-size:var(--step-2); max-width:22ch; }
.cta-band p{ margin:.9rem 0 0; color:rgba(226,236,241,.82); max-width:56ch; }
.cta-band__acts{ display:flex; flex-wrap:wrap; gap:.8rem; }

/* ---------- forms ------------------------------------------------------- */

.form{ display:grid; gap:1.15rem; }
.f2{ display:grid; gap:1.15rem; }
@media (min-width:620px){ .f2{ grid-template-columns:repeat(2,1fr); } }
.field label{
  display:block; font-family:var(--ff-display); font-weight:600;
  font-size:.88rem; color:var(--ink); margin-bottom:.4rem;
}
.field .req{ color:var(--gold-dk); }
.field input,.field select,.field textarea{
  width:100%; font-family:var(--ff-text); font-size:1rem; color:var(--ink);
  background:var(--white); border:1px solid var(--rule); border-radius:2px;
  padding:.72rem .85rem; transition:border-color .16s ease, box-shadow .16s ease;
}
.field textarea{ min-height:168px; resize:vertical; line-height:1.6; }
.field select{ appearance:none; background-image:linear-gradient(45deg,transparent 50%,var(--navy) 50%),linear-gradient(135deg,var(--navy) 50%,transparent 50%); background-position:calc(100% - 19px) 50%, calc(100% - 13px) 50%; background-size:6px 6px; background-repeat:no-repeat; padding-right:2.6rem; }
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--navy); box-shadow:0 0 0 3px rgba(195,161,86,.28);
}
.field .hint{ font-size:.85rem; color:#5b6b76; margin:.4rem 0 0; }
.hp{ position:absolute; left:-9999px; }

.contact-card{ background:var(--ink); color:rgba(226,236,241,.85); padding:1.9rem 1.7rem; border-radius:2px; border-top:4px solid var(--gold); }
.contact-card h3{ color:var(--white); }
.contact-card a{ color:var(--gold-lt); }
.contact-card dl{ margin:1.2rem 0 0; display:grid; gap:1rem; }
.contact-card dt{ font-family:var(--ff-display); font-weight:600; font-size:.82rem; color:var(--gold-lt); margin-bottom:.15rem; }
.contact-card dd{ margin:0; font-size:.98rem; }

/* ---------- footer ------------------------------------------------------ */

.cw-foot{ background:var(--ink); color:rgba(214,226,233,.74); padding-block:clamp(2.8rem,6vw,4.2rem) 0; }
.cw-foot__grid{ display:grid; gap:2.4rem; }
@media (min-width:780px){ .cw-foot__grid{ grid-template-columns:minmax(0,1.15fr) repeat(2,minmax(0,.85fr)); } }
@media (min-width:1060px){ .cw-foot__grid{ grid-template-columns:minmax(0,1.2fr) repeat(3,minmax(0,.72fr)); } }
.plaque{ background:var(--paper); padding:1.05rem 1.2rem; border-radius:2px; display:inline-block; max-width:252px; }
.plaque img{ width:100%; }
.cw-foot h4{ color:var(--gold-lt); font-size:.86rem; font-weight:700; margin-bottom:.95rem; }
.cw-foot ul{ margin:0; padding:0; list-style:none; }
.cw-foot li{ margin-bottom:.42rem; line-height:1.45; }
.cw-foot a{ color:rgba(226,236,241,.82); text-decoration:none; font-size:.93rem;
  font-family:var(--ff-display); font-weight:500; }
.cw-foot a:hover{ color:var(--gold-lt); text-decoration:underline; }
.cw-foot__note{ font-size:.95rem; margin-top:1.2rem; max-width:38ch; }
.cw-foot__bar{
  margin-top:clamp(2.2rem,5vw,3.2rem); border-top:1px solid var(--rule-dk);
  padding-block:1.35rem; display:flex; flex-wrap:wrap; gap:.6rem 1.8rem;
  justify-content:space-between; font-size:.86rem;
}
.cw-foot__bar em{ font-style:italic; color:rgba(226,201,130,.85); }

/* ---------- mobile ------------------------------------------------------ */

@media (max-width:860px){
  .cw-burger{ display:inline-flex; }
  .cw-nav{
    display:none; position:absolute; left:0; right:0; top:100%;
    background:var(--paper); border-bottom:1px solid var(--rule);
    flex-direction:column; align-items:stretch; gap:0;
    padding:.5rem var(--gut) 1.25rem; box-shadow:0 16px 30px -22px rgba(7,26,46,.5);
  }
  .cw-nav.open{ display:flex; }
  .cw-nav a{ padding:.8rem 0; border-bottom:1px solid var(--rule); }
  .cw-nav a:hover{ border-bottom-color:var(--rule); }
  .cw-nav .btn{ margin-top:1rem; text-align:center; border-bottom:0; }
  .cw-nav .btn:hover{ border-bottom:1.5px solid var(--gold-lt); }
  .cw-head__in{ position:relative; }
  .pagehead__in{ grid-template-columns:1fr; }
  .pagehead__glyph{ order:-1; }
  .pagehead__glyph svg{ width:76px; height:76px; }
  .ledger div{ border-left:0; border-top:1px solid var(--rule); padding-left:0; }
  .ledger div:first-child{ border-top:0; }
  .ledger--dark div{ border-top-color:var(--rule-dk); }
  .hero__region{ gap:.45rem 1.3rem; }
}

@media print{
  .cw-head,.cta-band,.cw-foot,.grid-bg{ display:none; }
  body{ background:#fff; }
}
