/* styles.css */
:root{
  --bg:            #DCEEFB;
  --bg-2:          #0F2540;
  --panel:         #FFFFFF;
  --panel-2:       #EAF5FD;
  --line:          #B9D6ED;
  --accent:        #D1A20B;
  --accent-hi:     #D1A20B;
  --accent-deep:   #D1A20B;
  --ink:           #101010;
  --white:         #F5F7FA;
  --muted:         #454545;
  --muted-2:       #6E6E6E;
  --muted-on-dark: #A9C0D6;
  --radius:        14px;
  --maxw:          1120px;
  --border-w:      3px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:"Inter", system-ui, -apple-system, sans-serif;
  font-size:17px; line-height:1.55; -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ margin:0; font-family:"Sora", system-ui, sans-serif; font-weight:800; line-height:1; text-transform:uppercase; letter-spacing:-.01em; }
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; }

.eyebrow{
  font-family:"Inter", sans-serif; text-transform:uppercase; letter-spacing:.14em;
  font-weight:600; font-size:13px; color:var(--accent-hi);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:"Sora", sans-serif; font-weight:700; font-size:16px;
  padding:14px 26px; border-radius:11px; cursor:pointer;
  border:var(--border-w) solid var(--ink);
  box-shadow:4px 4px 0 var(--ink);
  transition:transform .12s ease, box-shadow .12s ease, background .16s ease;
}
.btn-primary{ background:var(--accent); color:var(--ink); }
.btn-primary:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); }
.btn-primary:active{ transform:translate(0,0); box-shadow:2px 2px 0 var(--ink); }
.btn-ghost{ background:var(--panel); color:var(--ink); }
.btn-ghost:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); background:var(--panel-2); }
.btn-ghost:active{ transform:translate(0,0); box-shadow:2px 2px 0 var(--ink); }

/* nav */
header.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.88); backdrop-filter:blur(10px);
  border-bottom:var(--border-w) solid var(--ink);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:70px; }
.brand{ display:flex; align-items:center; gap:11px; }
.brand .mark{
  width:34px; height:34px; border-radius:8px;
  background:linear-gradient(145deg,var(--accent),var(--accent-deep));
  border:1.5px solid var(--ink);
  display:grid; place-items:center; color:var(--ink); font-family:"Sora"; font-weight:700; font-size:18px;
}
.brand .name{ font-family:"Sora"; font-weight:700; font-size:21px; color:var(--ink); }
.brand .name b{ color:var(--accent-hi); font-weight:700; }
.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ font-weight:500; font-size:15px; color:var(--muted); transition:color .18s; }
.nav-links a:hover{ color:var(--ink); }
.nav-call{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--accent); color:var(--ink);
  border:1.5px solid var(--ink);
  font-family:"Sora"; font-weight:700; padding:10px 18px; border-radius:9px; font-size:14.5px;
}
.nav-toggle{ display:none; }

/* hero */
.hero{ position:relative; padding:64px 0 56px; overflow:hidden; background:var(--bg-2); color:var(--white); }
.hero-inner{ position:relative; text-align:center; max-width:760px; margin:0 auto; }
.hero h1{ font-size:clamp(38px, 8.5vw, 68px); margin:16px 0 0; color:var(--white); }
.hero h1 .g{ color:var(--accent); }
.hero .eyebrow{ color:var(--accent); }
.hero .sub{ margin:18px auto 0; max-width:560px; color:var(--muted-on-dark); font-size:clamp(15px,2vw,18px); }
.hero-cta{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:28px; }

@media (max-width:880px){
  .nav-links{
    position:absolute; top:70px; left:0; right:0;
    flex-direction:column; align-items:flex-start; gap:0;
    background:var(--panel); border-bottom:var(--border-w) solid var(--ink);
    max-height:0; overflow:hidden; transition:max-height .3s ease; padding:0 24px;
  }
  .nav-links.open{ max-height:340px; padding:8px 24px 20px; }
  .nav-links a{ padding:12px 0; width:100%; border-bottom:1px solid var(--line); }
  .nav-links .nav-call{ margin-top:12px; width:100%; justify-content:center; }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; background:none; border:0; cursor:pointer; padding:6px; }
  .nav-toggle-chevron{ font-size:18px; color:var(--ink); line-height:1; transition:transform .2s; }
  .nav-toggle.open .nav-toggle-chevron{ transform:rotate(180deg); }
}

/* services */
section.svc{ padding:64px 0; }
.svc h2, .faq h2{ font-size:clamp(30px,5vw,44px); margin-top:8px; }
.svc h2 .g, .faq h2 .g{ color:var(--accent-hi); }
.svc-desc{ color:var(--muted); margin-top:12px; max-width:520px; }
.band{ background:var(--panel-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.svc-grid{ display:grid; grid-template-columns:1fr; gap:40px; align-items:center; }
@media (min-width:900px){
  #tags .svc-grid{ grid-template-columns:1fr 1fr; gap:56px; }
}

.tag-carousel{
  position:relative; border-radius:var(--radius); overflow:hidden;
  background:var(--panel-2); border:var(--border-w) solid var(--ink); box-shadow:6px 6px 0 var(--ink);
  aspect-ratio:3/2;
}
.carousel-track{ display:flex; height:100%; transition:transform 1s cubic-bezier(.4,0,.2,1); }
.carousel-slide{ flex:0 0 100%; margin:0; position:relative; display:flex; align-items:center; justify-content:center; padding:26px; }
.carousel-slide figcaption{
  position:absolute; top:12px; left:12px; z-index:2;
  font-family:"Sora"; font-weight:700; font-size:12.5px; letter-spacing:.03em;
  color:var(--ink); background:var(--panel); border:1.5px solid var(--ink); padding:4px 10px; border-radius:8px;
}
.carousel-btn{
  position:absolute; top:50%; transform:translateY(-50%); z-index:2;
  width:36px; height:36px; border-radius:999px; border:1.5px solid var(--ink);
  background:rgba(255,255,255,.85); color:var(--ink); font-size:19px; line-height:1;
  cursor:pointer; display:grid; place-items:center; transition:background .16s, color .16s;
}
.carousel-btn:hover{ background:var(--accent); }
.carousel-btn.prev{ left:10px; }
.carousel-btn.next{ right:10px; }
.carousel-dots{ position:absolute; left:0; right:0; bottom:10px; display:flex; justify-content:center; gap:7px; z-index:2; }
.carousel-dots button{
  width:8px; height:8px; border-radius:999px; border:1.5px solid var(--ink); padding:0; cursor:pointer; background:var(--panel);
}
.carousel-dots button[aria-selected="true"]{ background:var(--accent); }
@media (prefers-reduced-motion: reduce){ .carousel-track{ transition:none; } }

/* realistic temp-tag document mockups, one per state's real layout */
.tag-doc{
  position:relative; width:100%; max-width:340px; background:#fdfdfb; color:#161616;
  border:1px solid #161616; border-radius:3px;
  font-family:"Inter", sans-serif;
  box-shadow:0 14px 28px rgba(16,20,10,.22), 0 2px 0 rgba(0,0,0,.08);
}
.tag-doc-badge{
  position:absolute; top:-10px; right:14px; z-index:3; background:var(--accent); color:#161616;
  font-family:"Sora"; font-weight:800; font-size:10px; text-transform:uppercase; letter-spacing:.06em;
  padding:4px 9px; border:1px solid #161616; border-radius:4px; transform:rotate(4deg);
}
.tag-doc-plate{ font-family:"Sora"; font-weight:800; letter-spacing:.01em; }

/* Georgia — plain thermal label: title, huge plate #, expiry, QR + seal */
.doc-ga{ padding:12px 16px 12px; text-align:center; transform:rotate(-1.2deg); }
.ga-notice{ margin:0 auto 6px; max-width:220px; font-size:6.5px; font-weight:700; line-height:1.25; }
.ga-title{ margin:0 0 6px; font-family:"Inter"; font-weight:700; font-size:10.5px; letter-spacing:.03em; text-transform:uppercase; }
.ga-plate{ display:block; font-size:clamp(24px,5.5vw,30px); margin:0 0 6px; }
.ga-expires{ display:flex; flex-direction:row; align-items:baseline; justify-content:center; gap:7px; margin-bottom:7px; }
.ga-exp-label{ font-size:8.5px; letter-spacing:.1em; text-transform:uppercase; color:#6b6b6b; }
.ga-exp-date{ font-family:"Sora"; font-weight:800; font-size:14px; }
.ga-table{
  display:grid; grid-template-columns:repeat(3,1fr); gap:2px 8px; text-align:left;
  border-top:1px solid #161616; padding-top:6px; margin-bottom:6px;
  font-size:7.5px; color:#454545;
}
.ga-table b{ color:#161616; }
.ga-footer{ display:flex; align-items:flex-end; justify-content:space-between; padding:0 6px; }
.ga-qr{
  display:block; width:30px; height:30px; border:1px solid #161616;
  background:conic-gradient(#161616 25%, transparent 0 50%, #161616 0 75%, transparent 0);
  background-size:7px 7px;
}
.ga-seal{
  display:grid; place-items:center; width:26px; height:26px; border-radius:50%;
  border:1.5px solid #161616; font-size:7px; font-weight:800; letter-spacing:.02em;
}

/* New Jersey — seal + serif heading, MVC badge, registration table, tiled watermark */
.doc-nj{ transform:rotate(1deg); }
.nj-inner{ position:relative; overflow:hidden; border-radius:2px; padding:14px 16px 16px; }
.nj-watermark{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  transform:rotate(-28deg) scale(1.4); color:rgba(16,16,16,.06);
  font-family:"Sora"; font-weight:800; font-size:13px; letter-spacing:.1em;
  white-space:nowrap; pointer-events:none;
}
.nj-top{ position:relative; display:flex; align-items:flex-start; gap:10px; }
.nj-seal{
  display:grid; place-items:center; flex:0 0 auto; width:28px; height:28px; border-radius:50%;
  background:linear-gradient(135deg,var(--ink) 50%, var(--accent) 50%); color:#fff;
  font-family:"Sora"; font-weight:800; font-size:8.5px;
}
.nj-heading{ flex:1; text-align:center; }
.nj-heading h4{ margin:0; font-family:Georgia,"Times New Roman",serif; font-weight:700; font-size:15px; text-transform:none; letter-spacing:0; }
.nj-plate{ display:block; font-size:clamp(22px,5.5vw,28px); margin:2px 0; }
.nj-exp{ margin:0; font-size:8.5px; font-weight:700; letter-spacing:.02em; }
.nj-badge{
  flex:0 0 auto; background:#0b3b6f; color:#fff; font-family:"Sora"; font-weight:800; font-size:8px;
  padding:5px 6px; border-radius:4px; letter-spacing:.04em;
}
.nj-note{ position:relative; text-align:center; font-size:6.8px; font-style:italic; color:#6b6b6b; margin:8px 0; }
.nj-table{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:10px; border-top:1px solid #161616; padding-top:8px; }
.nj-col-title{ margin:0 0 5px; font-size:7.5px; font-weight:800; text-transform:uppercase; letter-spacing:.03em; }
.nj-fields{ display:flex; flex-direction:column; gap:2px; font-size:7.8px; color:#454545; }
.nj-fields b{ color:#161616; }

/* Virginia — DMV swoosh logo, vehicle line, black exp badge, huge plate, tiny cert block */
.doc-va{ padding:14px 16px 14px; transform:rotate(-0.8deg); }
.va-top{ display:flex; align-items:flex-start; gap:10px; }
.va-logo{
  flex:0 0 auto; width:30px; height:30px; border-radius:50%;
  background:linear-gradient(120deg, var(--ink) 40%, var(--accent) 40% 60%, var(--ink) 60%);
}
.va-info{ flex:1; }
.va-info p{ margin:0; font-size:8px; line-height:1.4; color:#454545; }
.va-info .va-state{ font-family:"Sora"; font-weight:800; font-size:14px; color:#161616; margin-bottom:2px; }
.va-exp{
  flex:0 0 auto; background:#161616; color:#fff; font-family:"Sora"; font-weight:700; font-size:8.5px;
  padding:5px 7px; border-radius:3px; white-space:nowrap;
}
.va-plate{ display:block; text-align:center; font-size:clamp(30px,7vw,40px); margin:10px 0; }
.va-cert{ border-top:1px solid #161616; padding-top:8px; }
.va-cert-title{ margin:0 0 6px; font-size:7px; font-weight:800; text-transform:uppercase; letter-spacing:.02em; text-align:center; }
.va-cert-grid{ display:grid; grid-template-columns:auto 1fr; gap:2px 8px; font-size:7.5px; color:#454545; }
.va-cert-grid span:nth-child(odd){ font-weight:700; color:#161616; }

/* Texas — hex seal, guilloche-style heading, huge tag #, VIN/seller, barcode */
.doc-tx{ padding:14px 16px 16px; transform:rotate(1.3deg); }
.tx-top{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.tx-seal{
  flex:0 0 auto; width:26px; height:26px; background:#c9c9c9;
  clip-path:polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}
.tx-heading h4{ margin:0; font-family:"Inter"; font-weight:700; font-size:14px; text-transform:uppercase; }
.tx-heading p{ margin:2px 0 0; font-size:6.5px; font-weight:700; letter-spacing:.01em; }
.tx-plate{ display:block; text-align:center; font-size:clamp(30px,7.5vw,42px); margin:4px 0 6px; }
.tx-vehicle{ margin:0 0 4px; text-align:center; font-family:"Sora"; font-weight:800; font-size:13px; }
.tx-expires{ display:flex; align-items:baseline; justify-content:center; gap:8px; margin-bottom:8px; }
.tx-expires span{ font-size:11px; }
.tx-expires b{ font-family:"Sora"; font-weight:800; font-size:17px; }
.tx-vin, .tx-seller{ margin:0 0 3px; font-size:8px; }
.tx-barcode{
  position:absolute; right:16px; bottom:12px; display:block; width:70px; height:22px;
  background:repeating-linear-gradient(90deg,#161616 0 1.5px, transparent 1.5px 3px, #161616 3px 3.6px, transparent 3.6px 6px, #161616 6px 8px, transparent 8px 9.5px);
}

.tag-card{ max-width:340px; margin-top:32px; }
.tag{
  background:var(--panel); border:var(--border-w) solid var(--ink); border-radius:var(--radius);
  box-shadow:5px 5px 0 var(--ink);
  padding:28px 26px; text-align:center;
}
.tag .kicker{ font-family:"Inter"; text-transform:uppercase; letter-spacing:.14em; font-weight:700; font-size:12.5px; color:var(--accent-hi); }
.tag .price{ font-family:"Sora"; font-weight:800; font-size:56px; color:var(--ink); line-height:1; margin:8px 0 2px; }
.tag .price sup{ font-size:26px; top:-.5em; }
.tag .per{ font-family:"Inter"; text-transform:uppercase; letter-spacing:.1em; font-weight:600; color:var(--muted); font-size:12.5px; }
.tag .btn{ width:100%; margin-top:20px; }

/* FAQ */
.faq{ padding:64px 0 72px; }
.faq-list details{ border-bottom:1px solid var(--line); padding:6px 0; }
.faq-list summary{
  list-style:none; cursor:pointer; padding:16px 0; font-family:"Sora"; font-weight:600; font-size:17px;
  display:flex; justify-content:space-between; align-items:center; gap:14px;
}
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-list summary .plus{ color:var(--accent-hi); font-family:"Sora"; font-size:22px; transition:transform .2s; }
.faq-list details[open] summary .plus{ transform:rotate(45deg); }
.faq-list details p{ color:var(--muted); margin:0 0 16px; font-size:15.5px; }

/* order form */
.order{ padding:64px 0 90px; scroll-margin-top:88px; }
.order-card{
  background:var(--panel); border:var(--border-w) solid var(--ink); border-radius:18px;
  box-shadow:6px 6px 0 var(--ink);
  padding:clamp(24px,5vw,44px);
}
.order h2{ font-size:clamp(28px,5vw,40px); }
.order h2 .g{ color:var(--accent-hi); }

.seg{ display:flex; gap:10px; margin-top:24px; flex-wrap:wrap; }
.seg button{
  flex:1 1 200px; text-align:left; cursor:pointer;
  background:var(--panel); border:1.5px solid var(--line); color:var(--ink);
  border-radius:12px; padding:14px 16px;
}
.seg button .t{ font-family:"Sora"; font-weight:600; font-size:16px; }
.seg button[aria-pressed="true"]{ border:1.5px solid var(--ink); background:var(--panel-2); box-shadow:3px 3px 0 var(--ink); }

.fields{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:22px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:13.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--muted); }
.field label .opt{ text-transform:none; letter-spacing:0; font-weight:500; color:var(--muted-2); }
.field input, .field select{
  background:var(--panel); border:1.5px solid var(--line); color:var(--ink);
  border-radius:10px; padding:13px 14px; font:inherit; font-size:16px;
}
.field input:focus, .field select:focus{ outline:none; border-color:var(--accent-deep); box-shadow:0 0 0 3px rgba(16,42,67,.15); }
#stateNote{ margin-top:8px; color:var(--muted); font-size:14px; }
#stateFieldWrap{ scroll-margin-top:88px; }
#stateFields{ display:contents; }
#stateFields[hidden]{ display:none; }
body.mode-report .tag-only{ display:none; }
.field input[type="file"]{
  padding:9px 12px; cursor:pointer; font-size:14.5px;
}
/* custom state dropdown — see script.js for why this replaces the native <select> UI */
.cs-wrap{ position:relative; }
.cs-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:10px;
  background:var(--panel); border:1.5px solid var(--line); color:var(--ink);
  border-radius:10px; padding:13px 14px; font:inherit; font-size:16px; font-weight:700;
  cursor:pointer; text-align:left;
}
.cs-trigger:focus{ outline:none; border-color:var(--accent-deep); box-shadow:0 0 0 3px rgba(16,42,67,.15); }
.cs-chevron{ font-size:12px; color:var(--muted-2); transition:transform .15s; }
.cs-trigger[aria-expanded="true"] .cs-chevron{ transform:rotate(180deg); }
.cs-list{
  position:absolute; top:calc(100% + 6px); left:0; right:0; z-index:20;
  list-style:none; margin:0; padding:6px; max-height:260px; overflow-y:auto;
  background:var(--panel); border:1.5px solid var(--ink); border-radius:10px;
  box-shadow:4px 4px 0 var(--ink);
}
.cs-list[hidden]{ display:none; }
.cs-list li{
  padding:10px 12px; border-radius:7px; font-weight:700; color:var(--ink); line-height:1.3;
  cursor:pointer; display:flex; align-items:center;
}
.cs-list li:hover:not(.cs-disabled){ background:var(--panel-2); }
.cs-list li[aria-selected="true"]{ background:var(--accent); }
.cs-list li.cs-disabled{
  cursor:not-allowed;
  text-decoration-line:line-through; text-decoration-color:#C0392B; text-decoration-thickness:2px;
}
#stateSelect{ position:absolute; inset:0; width:100%; height:100%; opacity:0; pointer-events:none; border:0; padding:0; }

.addr-label{ grid-column:1/-1; font-size:13.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--muted); margin:10px 0 -6px; }

.delivery-method{ margin-top:2px; }
.dm-label{ font-size:13.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--muted); margin:0 0 10px; }
.dm-options{ display:grid; gap:10px; }
.dm-option{
  position:relative; display:grid; grid-template-columns:1fr auto; align-items:center; gap:0 14px;
  border:1.5px solid var(--line); border-radius:12px; padding:12px 16px;
  background:var(--panel); cursor:pointer; transition:border-color .12s, box-shadow .12s, background .12s;
}
.dm-option:has(input:checked){
  border:1.5px solid var(--ink); background:var(--panel-2); box-shadow:3px 3px 0 var(--ink);
}
.dm-option input{ position:absolute; opacity:0; width:100%; height:100%; margin:0; cursor:pointer; }
.dm-name{ font-family:"Sora"; font-weight:700; font-size:15.5px; grid-column:1; grid-row:1; }
.dm-time{ color:var(--muted); font-size:13.5px; grid-column:1; grid-row:2; }
.dm-price{ font-family:"Sora"; font-weight:700; font-size:15.5px; color:var(--accent-hi); grid-column:2; grid-row:1 / span 2; align-self:center; white-space:nowrap; }
.dm-total{ margin-top:14px; font-family:"Sora"; font-weight:700; font-size:18px; color:var(--ink); }
.dm-total span{ color:var(--accent-hi); }

.upsell-field{ margin-top:2px; }
.upsell-check{
  position:relative; display:flex; align-items:center; justify-content:space-between; gap:14px;
  border:1.5px solid var(--line); border-radius:12px; padding:12px 16px;
  background:var(--panel); cursor:pointer; transition:border-color .12s, box-shadow .12s, background .12s;
}
.upsell-check:has(input:checked){
  border:1.5px solid var(--ink); background:var(--panel-2); box-shadow:3px 3px 0 var(--ink);
}
.upsell-check input{ position:absolute; opacity:0; width:100%; height:100%; margin:0; cursor:pointer; }
.upsell-name{ font-family:"Sora"; font-weight:700; font-size:15.5px; }
.upsell-price{ font-family:"Sora"; font-weight:700; font-size:15.5px; color:var(--accent-hi); white-space:nowrap; }

.form-error{ color:#ff8686; margin-top:16px; font-size:14.5px; }
.form-foot{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top:22px; }
.form-foot .or{ color:var(--muted); font-size:15px; }
.form-foot .or a{ color:var(--accent-hi); font-weight:600; }
.response-promise{ margin-top:12px; color:var(--muted); font-size:14px; }
.response-promise strong{ color:var(--accent-hi); }

.sticky-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  display:none; gap:10px; padding:12px 16px;
  background:rgba(255,255,255,.94); backdrop-filter:blur(10px);
  border-top:var(--border-w) solid var(--ink);
}
.sticky-bar .btn{ flex:1; padding:12px 16px; font-size:14.5px; }
.sticky-bar.visible{ display:flex; }
@media (min-width:881px){ .sticky-bar{ display:none !important; } }
@media (max-width:880px){ body{ padding-bottom:76px; } }

@media (max-width:560px){ .fields{ grid-template-columns:1fr; } }

/* footer */
footer{ background:var(--bg-2); border-top:var(--border-w) solid var(--ink); color:var(--white); }
.foot-inner{ display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap; padding:44px 0 20px; }
.foot-brand .name{ font-family:"Sora"; font-weight:700; font-size:22px; color:var(--white); }
.foot-brand .name b{ color:var(--accent); }
.foot-brand p{ color:var(--muted-on-dark); font-size:14px; max-width:340px; margin:12px 0 0; }
.foot-cols{ display:flex; gap:48px; flex-wrap:wrap; }
.foot-cols h4{ font-family:"Sora"; text-transform:uppercase; letter-spacing:.1em; font-size:12.5px; color:var(--accent); margin:0 0 12px; }
.foot-cols a{ display:block; color:var(--muted-on-dark); font-size:15px; margin-bottom:9px; }
.foot-cols a:hover{ color:var(--white); }
.legal{ border-top:1px solid rgba(245,247,250,.15); padding:16px 0 28px; color:var(--muted-on-dark); font-size:12.5px; }
