/* ─────────────────────────────────────────
   Adlesa, Shared styles
   Base · Nav · Buttons · Footer · Utilities
   ───────────────────────────────────────── */

:root {
  --bg: oklch(0.985 0.006 300);
  --bg-soft: oklch(0.965 0.018 285);
  --bg-softer: oklch(0.95 0.025 285);
  --surface: #ffffff;
  --ink: oklch(0.20 0.04 285);
  --ink2: oklch(0.46 0.03 285);
  --ink3: oklch(0.62 0.02 285);
  --brand: oklch(0.55 0.22 280);
  --brand2: oklch(0.65 0.22 280);
  --brand-soft: oklch(0.94 0.04 280);
  --accent-orange: oklch(0.72 0.18 55);
  --accent-pink: oklch(0.72 0.17 10);
  --accent-green: oklch(0.72 0.16 155);
  --accent-blue: oklch(0.72 0.14 240);
  --border: oklch(0.20 0.04 285 / 0.09);
  --dark: oklch(0.27 0.08 275);
  --dark2: oklch(0.22 0.08 275);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x: clip; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 28px;
  height: 60px;
  width: calc(100% - 32px);
  max-width: 1180px;
  background: oklch(1 0 0 / 0.72);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: 0 4px 24px -8px oklch(0.2 0.04 285 / 0.08);
}
.logo {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(145deg, oklch(0.52 0.24 280) 0%, oklch(0.48 0.26 300) 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px oklch(0.52 0.24 280 / 0.35);
}
.logo-mark svg {
  width: 18px; height: 18px;
  display: block;
}
nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
nav ul a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  transition: color 0.2s;
}
nav ul a:hover { color: var(--ink); }
nav ul a.active { color: var(--ink); font-weight: 600; }
.nav-right { display: flex; gap: 8px; align-items: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all .2s;
  border: none;
  font-family: inherit;
}
.btn-ghost { background: transparent; color: var(--ink2); }
.btn-ghost:hover { color: var(--ink); }
.btn-brand {
  background: var(--brand);
  color: white;
  box-shadow: 0 4px 12px -2px oklch(0.55 0.22 280 / 0.4);
}
.btn-brand:hover { background: var(--brand2); transform: translateY(-1px); box-shadow: 0 6px 18px -2px oklch(0.55 0.22 280 / 0.5); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: oklch(0.28 0.04 285); transform: translateY(-1px); }
.btn-white {
  background: white;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 16px -4px oklch(0.2 0.04 285 / 0.15); }
.btn-orange { background: var(--accent-orange); color: oklch(0.2 0.1 55); }
.btn-orange:hover { background: oklch(0.78 0.18 55); }
.btn-border {
  background: transparent;
  color: white;
  border: 1.5px solid oklch(1 0 0 / 0.3);
}
.btn-border:hover { background: oklch(1 0 0 / 0.1); }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ── PAGE HERO (for subpages) ── */
.page-hero {
  padding: 140px 48px 80px;
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero .page-bg {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center top, oklch(0.88 0.08 280) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  margin-bottom: 28px;
  box-shadow: 0 4px 12px -4px oklch(0.2 0.04 285 / 0.08);
  animation: fadeUp .5s ease both;
}
.page-hero .eyebrow .pill {
  background: var(--brand);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.page-hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeUp .5s .05s ease both;
}
.page-hero h1 span { color: var(--brand); }
.page-hero .sub {
  font-size: clamp(17px, 1.2vw, 20px);
  color: var(--ink2);
  max-width: 620px;
  margin: 20px auto 32px;
  line-height: 1.55;
  animation: fadeUp .5s .1s ease both;
}
.page-hero .actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .5s .15s ease both;
}

/* ── SECTION HEADERS ── */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.sec-head h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.sec-head h2 span { color: var(--brand); }
.sec-head p {
  font-size: 17px;
  color: var(--ink2);
  margin-top: 18px;
  line-height: 1.55;
  text-wrap: pretty;
}

/* ── SHARED CTA BLOCK ── */
.end-cta {
  text-align: center;
  padding: 100px 48px 120px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.end-bg {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, var(--brand-soft), transparent 70%);
  z-index: -1;
}
.end-cta h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.end-cta h2 span { color: var(--brand); }
.end-cta p {
  font-size: 17px;
  color: var(--ink2);
  margin: 22px auto 34px;
  max-width: 520px;
  line-height: 1.55;
}
.end-cta .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  padding: 100px 48px 48px;
}
.footer-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-deco .ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  opacity: 0.7;
}
.footer-deco .ring.r1 { width: 320px; height: 320px; top: 10%; left: 50%; transform: translateX(-60%); border-color: oklch(0.6 0.2 280); }
.footer-deco .ring.r2 { width: 380px; height: 380px; bottom: -180px; left: 8%; border-color: oklch(0.58 0.2 280); }
.footer-deco .ring.r3 { width: 260px; height: 260px; bottom: -60px; left: 36%; border-color: oklch(0.62 0.22 280); }
.footer-deco .ring.r4 { width: 220px; height: 220px; bottom: -100px; left: 62%; border-color: oklch(0.6 0.2 280); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  padding: 56px 56px 36px;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -20px oklch(0.25 0.1 280 / 0.18), 0 8px 20px -6px oklch(0.25 0.1 280 / 0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .logo { font-size: 22px; }
.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink3);
  font-weight: 500;
  transition: color .2s;
}
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink3);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink3);
  font-weight: 500;
  font-size: 13px;
}
.footer-social-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--bg-softer);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink2);
}

/* ── ANIMS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.r { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.r.vis { opacity: 1; transform: translateY(0); }

/* ── MOBILE NAV ── */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  margin-right: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
nav.nav-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
nav.nav-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ── LEGAL / PROSE ── */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto 100px;
  padding: 0 40px;
}
.legal-wrap h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
}
.legal-wrap h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 8px;
}
.legal-wrap p, .legal-wrap li {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-wrap ul, .legal-wrap ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-wrap a { color: var(--brand); text-decoration: underline; }

.alert-success {
  background: oklch(0.94 0.05 155);
  color: oklch(0.35 0.1 155);
  border: 1px solid oklch(0.8 0.08 155);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 20px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
}
.pagination a:hover { color: var(--ink); border-color: var(--ink3); }
.pagination .current {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* ── COOKIE CONSENT ── */
.cc-root {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}
.cc-root.cc-open { pointer-events: auto; }
.cc-backdrop {
  display: none;
  position: absolute;
  inset: 0;
  background: oklch(0.18 0.05 280 / 0.34);
  backdrop-filter: blur(6px) saturate(1.1);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  animation: cc-fade .28s ease both;
}
.cc-root.cc-prefs .cc-backdrop { display: block; }

.cc-bar,
.cc-panel {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 40px));
}

.cc-bar-inner,
.cc-panel-inner {
  position: relative;
  overflow: hidden;
  background: oklch(1 0 0 / 0.88);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  border: 1px solid oklch(0.20 0.04 285 / 0.08);
  border-radius: 28px;
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.7) inset,
    0 28px 64px -24px oklch(0.25 0.08 280 / 0.45);
  padding: 28px 32px 24px;
  animation: cc-rise .45s cubic-bezier(.22,1,.36,1) both;
}

.cc-glow {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, oklch(0.78 0.12 280 / 0.55) 0%, transparent 68%);
  pointer-events: none;
  animation: cc-glow 4.5s ease-in-out infinite alternate;
}
.cc-glow-panel {
  top: -60px;
  left: -30px;
  right: auto;
  background: radial-gradient(circle, oklch(0.82 0.1 300 / 0.45) 0%, transparent 70%);
}

.cc-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px -6px oklch(0.2 0.04 285 / 0.12);
}
.cc-pill {
  background: var(--brand);
  color: white;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cc-bar-inner h2,
.cc-panel-head h2 {
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 12px;
  color: var(--ink);
  text-wrap: balance;
}
.cc-bar-inner h2 em,
.cc-panel-head h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 500;
}

.cc-lead,
.cc-panel-lead {
  position: relative;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink2);
  margin: 0 0 22px;
  max-width: 36em;
}
.cc-lead a,
.cc-panel-lead a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.cc-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.cc-actions .cc-btn { font-size: 13.5px; padding: 11px 18px; }
.cc-actions .btn-brand { margin-left: auto; }
.cc-link {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--ink2);
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 8px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: oklch(0.20 0.04 285 / 0.22);
  transition: color .2s, text-decoration-color .2s;
}
.cc-link:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.cc-panel-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cc-x {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  color: var(--ink2);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .2s;
}
.cc-x:hover {
  color: var(--ink);
  background: var(--bg-soft);
  transform: rotate(90deg);
}

.cc-cats {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.cc-cat {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px 16px;
  background: oklch(1 0 0 / 0.72);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.cc-cat:hover:not(.is-locked) {
  border-color: oklch(0.55 0.22 280 / 0.28);
  background: white;
  transform: translateY(-1px);
}
.cc-cat.is-locked { cursor: default; }
.cc-cat-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand);
  background: linear-gradient(145deg, var(--brand-soft), oklch(0.96 0.02 300));
  border: 1px solid oklch(0.55 0.22 280 / 0.12);
}
.cc-cat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.cc-cat-top strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.cc-badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 100px;
  padding: 3px 8px;
  vertical-align: middle;
}
.cc-cat p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink2);
  margin: 0;
}

.cc-switch {
  position: relative;
  width: 46px;
  height: 28px;
  flex-shrink: 0;
  display: inline-block;
}
.cc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cc-switch > span {
  position: absolute;
  inset: 0;
  background: oklch(0.90 0.015 285);
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s;
}
.cc-switch > span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 6px oklch(0.2 0.04 285 / 0.18);
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.cc-switch input:checked + span { background: var(--brand); }
.cc-switch input:checked + span::after { transform: translateX(18px); }
.cc-switch input:disabled + span {
  cursor: not-allowed;
  background: var(--brand);
  opacity: 0.85;
}
.cc-switch input:focus-visible + span {
  outline: 2px solid var(--brand2);
  outline-offset: 2px;
}

.cc-actions-panel .btn-brand { margin-left: auto; }

@keyframes cc-rise {
  from { opacity: 0; transform: translateY(28px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cc-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes cc-glow {
  from { opacity: .7; transform: translate(0, 0); }
  to { opacity: 1; transform: translate(-12px, 10px); }
}

@media (max-width: 640px) {
  .cc-bar,
  .cc-panel {
    left: 50%;
    right: auto;
    bottom: 12px;
    width: calc(100% - 24px);
    transform: translateX(-50%);
  }
  .cc-bar-inner,
  .cc-panel-inner {
    padding: 22px 20px 18px;
    border-radius: 24px;
  }
  .cc-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cc-actions .btn-brand,
  .cc-actions .cc-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  .cc-link { text-align: center; padding: 8px; }
  .cc-cat { grid-template-columns: 40px 1fr; gap: 12px; }
  .cc-cat-ico { width: 40px; height: 40px; border-radius: 12px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .nav-toggle { display: flex; }
  .nav-right { display: none; }
  nav ul.nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 16px 40px -12px oklch(0.2 0.04 285 / 0.18);
  }
  nav.nav-open ul.nav-links { display: flex; }
  nav.nav-open .nav-right {
    display: flex;
    position: absolute;
    top: calc(100% + 220px);
    left: 0;
    right: 0;
    justify-content: stretch;
    gap: 8px;
    padding: 0 12px 12px;
    background: white;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 16px 40px -12px oklch(0.2 0.04 285 / 0.18);
  }
  nav.nav-open .nav-right .btn { flex: 1; justify-content: center; }
  nav ul.nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
  }
  nav ul.nav-links a:hover { background: var(--bg-soft); }
  .page-hero { padding: 120px 24px 56px; }
  .page-hero h1 { font-size: clamp(36px, 10vw, 52px); }
  .page-hero .sub { font-size: 16px; }
  .page-hero .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero .actions .btn { width: 100%; justify-content: center; }
  .page-bg { width: 140%; height: 480px; }
  .end-cta { padding: 72px 24px 88px; }
  .end-cta h2 { font-size: clamp(34px, 9vw, 48px); }
  .end-cta .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .end-cta .actions .btn { width: 100%; justify-content: center; }
  .end-bg { width: 140%; }
  footer { padding: 72px 20px 32px; }
  .footer-inner { padding: 36px 24px 28px; }
  .legal-wrap { padding: 0 24px 80px; }
  .sec-head { margin-bottom: 40px; padding: 0 4px; }
  .sec-head h2 { font-size: clamp(30px, 8vw, 44px); }
}

@media (max-width: 640px) {
  nav {
    width: calc(100% - 20px);
    padding-left: 16px;
  }
  .page-hero { padding: 108px 18px 44px; }
  .end-cta { padding: 64px 18px 80px; }
  .legal-wrap { padding: 0 18px 64px; }
  footer { padding: 56px 16px 28px; }
}
