/* ==========================================================================
   114 Solutions — Homepage Concept v2 ("Assure-style")
   Layout language modeled on assuresafety.com.sg, translated to 114's brand:
   deep navy base · red CTAs · safety-yellow accent · rounded display type
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; cursor: pointer; }

:root {
  --navy-950: #0D1631;
  --navy-900: #142042;      /* deep base (Assure's dark green role) */
  --navy-800: #1B2653;
  --navy-100: #E7EBF6;
  --red-600:  #C8102E;      /* primary CTA */
  --red-700:  #A50D26;
  --yellow:   #FFC845;      /* safety-yellow accent (Assure's lime role) */
  --cream:    #F6F7FB;      /* light section base */
  --text:     #1C2438;
  --text-mid: #4E5872;
  --on-dark:  #FFFFFF;
  --on-dark-soft: rgba(255,255,255,.78);
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-md: 0 10px 30px -10px rgba(13,22,49,.25);
  --shadow-lg: 0 24px 60px -20px rgba(13,22,49,.35);
  --font-disp: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
  --container: 1200px;
}

body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--text); background: #fff; }
h1, h2, h3 { font-family: var(--font-disp); line-height: 1.12; color: var(--navy-900); font-weight: 700; letter-spacing: -.01em; }
p { color: var(--text-mid); }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
:focus-visible { outline: 3px solid var(--red-600); outline-offset: 2px; border-radius: 6px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 0; top: 0; z-index: 999; background: var(--navy-900); color: #fff; padding: .7rem 1.2rem; }

/* ---------- Buttons: everything is a pill ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-disp); font-weight: 600; font-size: .98rem;
  padding: .8rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  min-height: 48px; transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn:active { transform: scale(.97); }
.btn--red { background: var(--red-600); color: #fff; }
.btn--red:hover { background: var(--red-700); }
.btn--yellow { background: var(--yellow); color: var(--navy-900); }
.btn--yellow:hover { filter: brightness(1.06); }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header: utility bar + floating pill nav ---------- */
.site-head { background: var(--navy-950); padding-bottom: 26px; }
.utility { display: flex; justify-content: flex-end; align-items: center; gap: 1.6rem; min-height: 44px; font-size: .84rem; }
.utility a { color: var(--on-dark-soft); font-weight: 600; letter-spacing: .03em; }
.utility a:hover { color: #fff; }
.utility .sister { color: var(--yellow); display: inline-flex; align-items: center; gap: .35rem; }
.utility svg { width: 14px; height: 14px; flex: none; }
.utility a { display: inline-flex; align-items: center; gap: .4rem; }
.utility .divider { width: 1px; height: 16px; background: rgba(255,255,255,.25); }

.pillnav {
  background: #fff; border-radius: 999px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem .65rem .55rem 1.4rem; position: relative; z-index: 20;
}
.pillnav__brand img { height: 56px; width: auto; }
.pillnav__links { display: none; align-items: center; gap: .2rem; margin-left: auto; }
.pillnav__links a {
  font-family: var(--font-disp); font-weight: 600; font-size: .95rem; color: var(--navy-900);
  padding: .55rem .85rem; border-radius: 999px; white-space: nowrap;
}
.pillnav__links a:hover { background: var(--navy-100); }
.pillnav__phone { margin-left: auto; }
@media (min-width: 1080px) { .pillnav__links { display: flex; } .pillnav__phone { margin-left: .4rem; } .nav-burger { display: none !important; } }
.nav-burger { margin-left: auto; width: 48px; height: 48px; border: 0; background: var(--navy-100); border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.nav-burger span { display: block; width: 20px; height: 2.5px; background: var(--navy-900); border-radius: 2px; position: relative; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2.5px; background: var(--navy-900); border-radius: 2px; }
.nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }
.mobile-menu { display: none; background: #fff; border-radius: var(--radius); margin-top: .6rem; box-shadow: var(--shadow-md); padding: .6rem; position: relative; z-index: 19; }
.mobile-menu.is-open { display: block; }
.mobile-menu a { display: block; font-family: var(--font-disp); font-weight: 600; color: var(--navy-900); padding: .8rem 1rem; border-radius: 12px; }
.mobile-menu a:hover { background: var(--navy-100); }

/* ---------- Hero: big statement on deep navy ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(255,200,69,.14), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(200,16,46,.18), transparent 55%),
    var(--navy-950);
  color: #fff; padding: clamp(56px, 9vw, 110px) 0 clamp(150px, 16vw, 210px); position: relative;
}
.hero__grid { display: grid; gap: 2.5rem; align-items: end; }
@media (min-width: 920px) { .hero__grid { grid-template-columns: 1.6fr .9fr; } }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6.2vw, 4.6rem); line-height: 1.06; max-width: 14ch;
}
.hero h1 .accent { position: relative; white-space: nowrap; }
.hero h1 .accent svg {
  /* hand-drawn stroke arcs over the top of the word, Assure-style */
  position: absolute; left: 4%; top: -0.18em; width: 88%; height: .2em;
  color: var(--yellow);
}
.hero__aside { color: var(--on-dark-soft); font-size: 1.06rem; }
@media (min-width: 920px) { .hero__aside { text-align: right; } }
.hero__aside a { color: var(--yellow); font-weight: 600; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.6rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; padding: .5rem 1.2rem; font-family: var(--font-disp); font-weight: 600; font-size: .85rem;
}
.hero__badge svg { width: 15px; height: 15px; color: var(--yellow); }

/* ---------- Segment cards: overlap out of the hero ---------- */
.segments { margin-top: clamp(-130px, -12vw, -90px); position: relative; z-index: 5; padding-bottom: 10px; }
.segments__grid { display: grid; gap: 1.4rem; }
@media (min-width: 880px) { .segments__grid { grid-template-columns: 1fr 1fr 1fr; } }
.seg-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-lg); background: var(--navy-800);
}
.seg-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.seg-card:hover img { transform: scale(1.05); }
.seg-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(185deg, rgba(13,22,49,0) 35%, rgba(13,22,49,.88) 100%); }
.seg-card__body { position: relative; z-index: 1; padding: 1.5rem; width: 100%; }
.seg-card__body h3 { color: #fff; font-size: 1.45rem; line-height: 1.15; margin-bottom: .9rem; }
.seg-card .btn { font-size: .82rem; padding: .55rem 1.15rem; min-height: 40px; letter-spacing: .05em; }
.seg-card__tag {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  background: rgba(255,255,255,.92); color: var(--navy-900); font-family: var(--font-disp);
  font-weight: 600; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 999px; padding: .35rem .85rem;
}

/* ---------- Section head ---------- */
.section { padding-block: clamp(64px, 9vw, 100px); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy-950); color: #fff; }
.section--navy h2 { color: #fff; }
.section--navy p { color: var(--on-dark-soft); }
.shead { max-width: 700px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.shead--center { margin-inline: auto; text-align: center; }
.shead h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: .7rem; }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-disp);
  font-weight: 600; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red-600); margin-bottom: .8rem;
}
.shead .kicker {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-disp);
  font-weight: 600; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red-600); margin-bottom: .8rem;
}
.kicker::before { content: ""; width: 22px; height: 4px; border-radius: 4px; background: var(--yellow); }

/* ---------- Pillars ---------- */
.pillars { display: grid; gap: 1.3rem; }
@media (min-width: 700px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar-card {
  background: #fff; border-radius: var(--radius); padding: 1.7rem 1.5rem;
  box-shadow: 0 2px 10px rgba(13,22,49,.06); border: 1px solid #E8ECF5;
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar-card__icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--navy-900); color: var(--yellow); margin-bottom: 1.1rem;
}
.pillar-card__icon svg { width: 26px; height: 26px; }
.pillar-card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.pillar-card p { font-size: .93rem; flex: 1; }
.pillar-card .more {
  margin-top: 1.1rem; font-family: var(--font-disp); font-weight: 600; font-size: .92rem;
  color: var(--red-600); display: inline-flex; align-items: center; gap: .4rem;
}
.pillar-card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.pillar-card:hover .more svg { transform: translateX(4px); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat { text-align: center; background: #fff; border-radius: var(--radius); padding: 1.6rem 1rem; border: 1px solid #E8ECF5; }
.stat b { display: block; font-family: var(--font-disp); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--navy-900); line-height: 1.1; }
.stat b em { font-style: normal; color: var(--red-600); }
.stat span { font-size: .9rem; color: var(--text-mid); }

/* ---------- Audit CTA band ---------- */
.cta-audit {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: var(--navy-900); color: #fff; box-shadow: var(--shadow-lg);
  display: grid; gap: 1.8rem; padding: clamp(2rem, 5vw, 3.4rem);
}
@media (min-width: 880px) { .cta-audit { grid-template-columns: 1.5fr auto; align-items: center; } }
.cta-audit::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(255,200,69,.15);
}
.cta-audit h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: .5rem; }
.cta-audit p { color: var(--on-dark-soft); max-width: 52ch; }

/* ---------- Trust logos ---------- */
.logo-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1rem; }
.logo-row div { background: #fff; border: 1px solid #E8ECF5; border-radius: var(--radius); display: grid; place-items: center; min-height: 104px; padding: 1rem; }
.logo-row img { max-height: 58px; width: auto; object-fit: contain; }

/* ---------- Enquiry form ---------- */
.enquiry { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .enquiry { grid-template-columns: 1fr 1.2fr; } }
.enquiry__info h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.enquiry__points { list-style: none; padding: 0; margin-top: 1.4rem; display: grid; gap: .9rem; }
.enquiry__points li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text-mid); }
.enquiry__points svg { width: 21px; height: 21px; flex: none; color: var(--red-600); margin-top: .1em; }
.form-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid #E8ECF5; padding: clamp(1.5rem, 3.5vw, 2.2rem);
}
.fgrid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .fgrid--2 { grid-template-columns: 1fr 1fr; } .f-full { grid-column: 1 / -1; } }
.ffield label { display: block; font-family: var(--font-disp); font-weight: 600; font-size: .88rem; color: var(--navy-900); margin-bottom: .35rem; }
.ffield input, .ffield select, .ffield textarea {
  width: 100%; padding: .78rem 1rem; min-height: 48px; border: 1.5px solid #DDE3F0;
  border-radius: 14px; background: #fff; transition: border-color .2s, box-shadow .2s;
}
.ffield textarea { min-height: 120px; resize: vertical; }
.ffield input:focus, .ffield select:focus, .ffield textarea:focus { outline: none; border-color: var(--navy-800); box-shadow: 0 0 0 3px rgba(27,38,83,.12); }

/* ---------- Credentials ---------- */
.creds { display: grid; gap: 1rem; }
@media (min-width: 700px) { .creds { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .creds { grid-template-columns: repeat(4, 1fr); } }
.cred {
  display: flex; gap: .9rem; align-items: center; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 1.1rem 1.3rem;
}
.cred svg { width: 28px; height: 28px; flex: none; color: var(--yellow); }
.cred b { display: block; font-family: var(--font-disp); font-size: .98rem; color: #fff; }
.cred span { font-size: .84rem; color: var(--on-dark-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: var(--on-dark-soft); font-size: .94rem; }
.footer__grid { display: grid; gap: 2rem; padding-block: clamp(2.6rem, 5vw, 3.6rem); }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1.2fr; } }
.footer img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer h3 { color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.footer a:hover { color: #fff; }
.footer .sisterline { margin-top: 1rem; color: var(--yellow); font-weight: 600; }
.footer__legal { border-top: 1px solid rgba(255,255,255,.14); padding-block: 1.2rem; font-size: .84rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }

/* ---------- WhatsApp float + bubble ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 56px; height: 56px;
  border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.28); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-bubble {
  position: fixed; right: 88px; bottom: 30px; z-index: 90; background: #fff; color: var(--navy-900);
  font-size: .85rem; font-weight: 600; padding: .6rem 1rem; border-radius: 14px 14px 4px 14px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 640px) { .wa-bubble { display: none; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s, transform .55s; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ==================== v2 full-site components ==================== */

/* pill nav fits 7 items */
.pillnav__links { gap: .05rem; }
.pillnav__links a { font-size: 1rem; padding: .5rem .56rem; }
.pillnav__links a[aria-current="page"] { background: var(--navy-100); }
.pillnav__cta { margin-left: .4rem; }
@media (max-width: 1239px) { .pillnav__links, .pillnav__cta { display: none !important; } }
@media (min-width: 1240px) { .pillnav__links { display: flex; } .nav-burger { display: none !important; } .pillnav__phone { display: none; } }

/* interior page band (Assure-style statement header) */
.page-band {
  background:
    radial-gradient(800px 380px at 88% -12%, rgba(255,200,69,.13), transparent 60%),
    radial-gradient(640px 380px at -8% 112%, rgba(200,16,46,.16), transparent 55%),
    var(--navy-950);
  color: #fff; padding: clamp(48px, 7vw, 84px) 0 clamp(56px, 8vw, 92px);
}
.page-band .crumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; font-size: .84rem; color: var(--on-dark-soft); margin-bottom: 1.1rem; }
.page-band .crumbs a:hover { color: #fff; }
.page-band .crumbs svg { width: 13px; height: 13px; opacity: .6; }
.page-band .crumbs [aria-current] { color: var(--yellow); font-weight: 600; }
.page-band h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.1; max-width: 20ch; }
.page-band p { color: var(--on-dark-soft); font-size: 1.08rem; max-width: 62ch; margin-top: .8rem; }
.page-band .btn { margin-top: 1.5rem; }

/* split layouts */
.split { display: grid; gap: clamp(2rem, 4.5vw, 4rem); align-items: center; }
@media (min-width: 920px) { .split { grid-template-columns: 1fr 1fr; } .split--flip > .split__media { order: 2; } }
.split__media img {
  width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover;
  object-position: var(--img-pos, center 28%);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.split__body h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: .8rem; }
.split__body p + p { margin-top: .8rem; }
.split__body .btn { margin-top: 1.4rem; }
.numbub {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: var(--yellow); font-family: var(--font-disp);
  font-weight: 700; font-size: 1.05rem; margin-bottom: .9rem;
}

/* chips + check list */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem; background: #fff;
  border: 1.5px solid #E2E7F2; border-radius: 999px; padding: .5rem 1rem;
  font-family: var(--font-disp); font-weight: 600; font-size: .86rem; color: var(--navy-900);
}
.chip svg { width: 15px; height: 15px; color: var(--red-600); }
.check-list { list-style: none; padding: 0; display: grid; gap: .8rem; margin-top: 1.1rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text-mid); }
.check-list svg { width: 21px; height: 21px; flex: none; color: var(--red-600); margin-top: .12em; }
.check-list strong { color: var(--navy-900); }

/* FAQ */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: #fff; border: 1px solid #E8ECF5; border-radius: var(--radius); overflow: hidden; }
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; list-style: none; padding: 1.05rem 1.3rem; min-height: 52px;
  font-family: var(--font-disp); font-weight: 600; color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 20px; height: 20px; flex: none; color: var(--red-600); transition: transform .25s; }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq .faq__a { padding: 0 1.3rem 1.2rem; color: var(--text-mid); font-size: .96rem; }

/* info tiles + map */
.info-tile { display: flex; gap: .95rem; align-items: flex-start; background: #fff; border: 1px solid #E8ECF5; border-radius: var(--radius); padding: 1.25rem 1.35rem; }
.info-tile svg.tico { width: 44px; height: 44px; flex: none; padding: 10px; border-radius: 13px; background: var(--navy-900); color: var(--yellow); }
.info-tile b { display: block; font-family: var(--font-disp); font-size: .98rem; color: var(--navy-900); }
.info-tile span, .info-tile a { font-size: .93rem; color: var(--text-mid); }
.info-tile a:hover { color: var(--red-600); }
.map-embed { border: 0; width: 100%; height: 100%; min-height: 360px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* project cards */
.projects-grid { display: grid; gap: 1.3rem; }
@media (min-width: 720px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .projects-grid { grid-template-columns: 1fr 1fr 1fr; } }
.project-card { background: #fff; border: 1px solid #E8ECF5; border-radius: var(--radius); padding: 1.4rem; display: flex; flex-direction: column; gap: .9rem; transition: transform .2s, box-shadow .2s; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-card__logo { display: grid; place-items: center; background: var(--cream); border-radius: 14px; min-height: 96px; padding: .9rem 1rem; }
.project-card__logo img { max-height: 64px; max-width: 200px; width: auto; object-fit: contain; }
.project-card h3 { font-size: 1.05rem; }
.project-card ul { list-style: none; padding: 0; display: grid; gap: .45rem; }
.project-card li { display: flex; gap: .5rem; font-size: .92rem; color: var(--text-mid); }
.project-card li svg { width: 15px; height: 15px; flex: none; color: var(--red-600); margin-top: .25em; }

/* forms (mail handler) */
.form-alert { border-radius: 12px; padding: .85rem 1.1rem; margin-bottom: 1rem; font-size: .93rem; font-weight: 600; border: 1px solid transparent; }
.form-alert--ok { background: #E7F6EC; border-color: #B7E4C7; color: #1E7A44; }
.form-alert--err { background: #FBE9EC; border-color: #F1C0C8; color: var(--red-700); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.fnote { font-size: .85rem; color: var(--text-mid); margin-top: .4rem; }
.fnote a { color: var(--red-600); font-weight: 600; }

/* legal pages */
.legal h2 { font-size: 1.25rem; margin: 1.6rem 0 .5rem; }
.legal p { max-width: 75ch; }

/* footer quick-links grid */
.footer__grid--4 { grid-template-columns: 1fr; }
@media (min-width: 900px) { .footer__grid--4 { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
