/* ==========================================================================
   MatWorks stylesheet
   Brand: Graphite and white carry it, Safety Yellow is the one accent.
   Display: Big Shoulders Display 900 uppercase. Body: Barlow.
   No inline styles (strict CSP). No gradients, no shadows, no rounded UI.
   ========================================================================== */

:root {
  --mw-graphite: #1A1C1D;
  --mw-yellow: #F0B429;
  --mw-face: #D6D5CF;
  --mw-face-dark: #33373A;
  --mw-white: #FFFFFF;
  --mw-rule: #5A5F5D;
  --mw-display: 'Big Shoulders Display', Oswald, Impact, sans-serif;
  --mw-body: Barlow, Arial, Helvetica, sans-serif;

  --max: 1120px;
  --gutter: clamp(16px, 5vw, 64px);
  --measure: 66ch;
  --section: clamp(40px, 6vw, 72px);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mw-white);
  color: var(--mw-graphite);
  font-family: var(--mw-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--mw-graphite); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--mw-graphite);
  outline-offset: 2px;
}
.on-dark :focus-visible,
.on-dark:focus-visible { outline-color: var(--mw-yellow); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--mw-yellow);
  color: var(--mw-graphite);
  padding: 12px 18px;
  z-index: 100;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, .display {
  font-family: var(--mw-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: .01em;
  margin: 0;
  color: var(--mw-graphite);
}

h1 { font-size: clamp(2.8rem, 7vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: .45em; }
h3 { font-size: clamp(1.5rem, 2.6vw, 1.85rem); margin-bottom: .35em; }

/* Barlow sub-headings: step titles, proof points, form headings */
.sub {
  font-family: var(--mw-body);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 .3em;
}

p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; line-height: 1.5; }

.label {
  display: block;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5em;
}

.caption, .note {
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--mw-rule);
}

strong { font-weight: 700; }

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .3em; }

.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark p, .on-dark a { color: var(--mw-white); }
.on-dark .caption, .on-dark .note { color: var(--mw-face); }

/* The yellow rule under a heading: 96 x 8 */
.rule-yellow {
  width: 96px;
  height: 8px;
  background: var(--mw-yellow);
  margin: 18px 0 0;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

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

.section { padding: var(--section) 0; }
.section-tight { padding: clamp(28px, 4vw, 48px) 0; }
.section + .section { padding-top: 0; }

.band {
  background: var(--mw-graphite);
  color: var(--mw-white);
}

.grid { display: grid; gap: clamp(20px, 3vw, 40px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mw-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 24px;
  border: 2px solid var(--mw-graphite);
  background: var(--mw-graphite);
  color: var(--mw-white);
  cursor: pointer;
  text-decoration: none;
  transition: background-color .12s linear, color .12s linear, border-color .12s linear;
}
.btn:hover { background: var(--mw-yellow); border-color: var(--mw-yellow); color: var(--mw-graphite); }
.btn:disabled { opacity: .6; cursor: default; }

.btn-yellow { background: var(--mw-yellow); border-color: var(--mw-yellow); color: var(--mw-graphite); }
.btn-yellow:hover { background: var(--mw-white); border-color: var(--mw-white); color: var(--mw-graphite); }

.btn-outline-light { background: transparent; border-color: var(--mw-white); color: var(--mw-white); }
.btn-outline-light:hover { background: var(--mw-white); border-color: var(--mw-white); color: var(--mw-graphite); }

.btn-outline { background: transparent; border-color: var(--mw-graphite); color: var(--mw-graphite); }
.btn-outline:hover { background: var(--mw-graphite); color: var(--mw-white); }

.on-dark .btn-yellow, .on-dark .btn-yellow:hover { color: var(--mw-graphite); }
.on-dark .btn-outline-light:hover { color: var(--mw-graphite); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   Site header and nav
   -------------------------------------------------------------------------- */

.site-header {
  background: var(--mw-white);
  border-bottom: 2px solid var(--mw-graphite);
  position: relative;
  z-index: 50;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding-block: 12px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 60px; width: auto; }

.nav-toggle {
  display: none;
  background: var(--mw-graphite);
  border: 2px solid var(--mw-graphite);
  color: var(--mw-white);
  font-family: var(--mw-body);
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 16px;
  cursor: pointer;
}
.nav-toggle[aria-expanded="true"] { background: var(--mw-yellow); border-color: var(--mw-yellow); color: var(--mw-graphite); }

.nav { display: flex; align-items: center; gap: 28px; }

.nav a:not(.btn) {
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
}
.nav a:not(.btn):hover { border-bottom-color: var(--mw-graphite); }
.nav a:not(.btn)[aria-current="page"] { border-bottom-color: var(--mw-yellow); }

.nav .btn { padding: 12px 20px; font-size: .95rem; }

@media (max-width: 900px) {
  .brand img { height: 48px; }
  .site-header-inner { min-height: 72px; }
  .nav-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--mw-graphite);
    padding: 8px var(--gutter) 20px;
  }
  .nav.is-open { display: flex; border-bottom: 4px solid var(--mw-yellow); }
  .nav a:not(.btn) {
    color: var(--mw-white);
    padding: 14px 0;
    border-bottom: 1px solid var(--mw-rule);
  }
  .nav a:not(.btn):hover { border-bottom-color: var(--mw-white); }
  .nav a:not(.btn)[aria-current="page"] { border-bottom-color: var(--mw-yellow); }
  .nav .btn { margin-top: 16px; background: var(--mw-yellow); border-color: var(--mw-yellow); color: var(--mw-graphite); }
  .nav .btn:hover { background: var(--mw-white); border-color: var(--mw-white); }
  .nav :focus-visible { outline-color: var(--mw-yellow); }
}

/* --------------------------------------------------------------------------
   Page header band (every inner page)
   -------------------------------------------------------------------------- */

.page-band {
  background: var(--mw-graphite);
  color: var(--mw-white);
  padding: clamp(40px, 6vw, 72px) 0 clamp(36px, 5vw, 56px);
}
.page-band h1 { color: var(--mw-white); }
.page-band h1 span { display: block; }
.page-band .lead { margin-top: 22px; max-width: 56ch; color: var(--mw-white); }

/* --------------------------------------------------------------------------
   Home hero: the brochure cover at scale
   -------------------------------------------------------------------------- */

.hero {
  background: var(--mw-graphite);
  color: var(--mw-white);
  position: relative;
}

.hero-photo {
  position: relative;
  height: clamp(220px, 40vw, 520px);
  background: var(--mw-face-dark);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mw-graphite);
  opacity: .6;
}

.hero-body {
  position: relative;
  padding-bottom: clamp(48px, 7vw, 88px);
}

/* Pull the headline up by exactly one line so the photo/graphite seam
   falls in the gap between line 1 and line 2, never through a letter. */
.hero-title {
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  color: var(--mw-white);
  margin-top: -.9em;
}
.hero-title span {
  display: block;
  animation: rise .5s ease-out both;
}
.hero-title span:nth-child(2) { animation-delay: .1s; }
.hero-title span:nth-child(3) { animation-delay: .2s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.hero .rule-yellow { margin-top: 26px; }

.hero-tag {
  margin-top: 26px;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  max-width: 44ch;
  color: var(--mw-white);
}

.hero .btn-row { margin-top: 30px; }

/* --------------------------------------------------------------------------
   Intro copy
   -------------------------------------------------------------------------- */

.intro p { font-size: 1.1rem; }

/* Two columns on wide screens, brochure page 2 density */
@media (min-width: 900px) {
  .intro-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 56px);
  }
  .intro-cols p { margin-bottom: 0; max-width: none; }
}

/* --------------------------------------------------------------------------
   The math panel
   -------------------------------------------------------------------------- */

.math {
  border: 2px solid var(--mw-graphite);
  padding: clamp(20px, 3vw, 32px);
}

/* Math panel left, proof points right, once there is room for both */
.math-row { display: grid; gap: clamp(28px, 4vw, 56px); }
.proofs-col h2 { margin-bottom: .55em; }
@media (min-width: 960px) {
  .math-row {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    align-items: start;
  }
  .math-row .proofs { grid-template-columns: 1fr; gap: 22px; }
}

.math h2 { margin-bottom: 14px; }

.math-lines { margin: 0; }

.math-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--mw-graphite);
}
.math-line dt { font-weight: 700; }
.math-line dd { margin: 0; font-weight: 700; text-align: right; white-space: nowrap; }

.math-result {
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--mw-yellow);
  border-top: 0;
  align-items: center;
}
.math-result dt { font-size: 1.05rem; }
.math-result dd {
  font-family: var(--mw-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.math .note { margin-top: 14px; }

@media (max-width: 480px) {
  .math-line { flex-wrap: wrap; }
  .math-line dd { white-space: normal; flex: 1 0 auto; text-align: right; }
  .math-result dd { text-align: left; width: 100%; }
}

/* --------------------------------------------------------------------------
   Proof points (yellow rule over each)
   -------------------------------------------------------------------------- */

.proofs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 20px clamp(20px, 3vw, 40px);
}
.proofs li {
  margin: 0;
  padding-top: 12px;
  border-top: 4px solid var(--mw-yellow);
}
.proofs strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.proofs span { display: block; font-size: .95rem; }

/* --------------------------------------------------------------------------
   What we fix list
   -------------------------------------------------------------------------- */

.fixes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 0 clamp(20px, 3vw, 40px);
}
.fixes li { margin: 0; }
.fixes a {
  display: block;
  padding: 16px 0 18px;
  border-top: 1px solid var(--mw-graphite);
  text-decoration: none;
  transition: background-color .12s linear;
}
.fixes a:hover { background: var(--mw-face); }
.fixes .display { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 6px; }
.fixes span { display: block; font-size: .95rem; }

/* --------------------------------------------------------------------------
   Numbered steps
   -------------------------------------------------------------------------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px clamp(20px, 3vw, 40px);
}
.steps-2 { grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr)); }
.steps-1 { grid-template-columns: 1fr; max-width: 760px; }

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  margin: 0;
  align-items: start;
}
.step-n {
  width: 52px;
  height: 52px;
  background: var(--mw-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mw-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--mw-graphite);
}
.step .sub { margin-top: 4px; }
.step p { font-size: .95rem; }
.steps-1 .step p { font-size: 1rem; }

/* --------------------------------------------------------------------------
   Ship to box and Start with one pallet callout (brochure page 6)
   -------------------------------------------------------------------------- */

.pallet-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
}

.shipto {
  border: 2px solid var(--mw-graphite);
  padding: 20px 22px;
}
.shipto .label { margin-bottom: 8px; }
.shipto address { font-style: normal; line-height: 1.5; }
.shipto address strong { display: block; font-size: 1.05rem; }

.callout {
  background: var(--mw-graphite);
  color: var(--mw-white);
  padding: 20px 22px;
}
.callout .label { color: var(--mw-yellow); margin-bottom: 8px; }
.callout p { color: var(--mw-white); }
.callout .btn-row { margin-top: 18px; }

/* --------------------------------------------------------------------------
   Before / after pairs
   -------------------------------------------------------------------------- */

.pair {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  margin-top: 20px;
}
.pair figure { margin: 0; }
.pair .field {
  background: var(--mw-face);
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.pair .field img { width: 100%; height: 100%; object-fit: contain; }
.pair figcaption { margin-top: 8px; font-size: .875rem; font-weight: 500; }
.pair-arrow { display: flex; align-items: center; justify-content: center; }

@media (max-width: 640px) {
  .pair { grid-template-columns: 1fr; }
  .pair-arrow svg { transform: rotate(90deg); }
}

.service { padding-bottom: var(--section); }
.service + .service { border-top: 1px solid var(--mw-graphite); padding-top: var(--section); }

.service-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.single-field {
  background: var(--mw-face);
  padding: 16px;
  max-width: 420px;
}
.contact-grid .single-field { max-width: none; }

.know {
  border: 2px solid var(--mw-graphite);
  padding: 16px 18px;
  max-width: 520px;
  margin-top: 20px;
}
.know .label { margin-bottom: 6px; }
.know p { font-size: .95rem; }

.strip-quote { padding: clamp(28px, 4vw, 44px) 0; }
.strip-quote p { color: var(--mw-white); max-width: 60ch; }

.cannot { max-width: 720px; margin-inline: 0; }
.cannot ul { columns: 2; column-gap: 32px; }
.cannot li { break-inside: avoid; }
@media (max-width: 480px) { .cannot ul { columns: 1; } }

/* --------------------------------------------------------------------------
   Checklist and FAQ (process page)
   -------------------------------------------------------------------------- */

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 760px;
}
.checklist li {
  margin: 0;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--mw-graphite);
  position: relative;
}
.checklist li:last-child { border-bottom: 1px solid var(--mw-graphite); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 14px;
  height: 14px;
  background: var(--mw-yellow);
}

.faq { max-width: 760px; }
.faq details { border-top: 1px solid var(--mw-graphite); }
.faq details:last-child { border-bottom: 1px solid var(--mw-graphite); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 32px 14px 0;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 10px;
  font-family: var(--mw-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq summary:hover { background: var(--mw-face); }
.faq details p { padding: 0 0 16px; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-photo {
  background: var(--mw-face-dark);
  max-height: 420px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 16px 20px;
}
.field-full { grid-column: 1 / -1; }

label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
}
.req { color: var(--mw-graphite); font-weight: 700; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  font: inherit;
  color: var(--mw-graphite);
  background: var(--mw-white);
  border: 2px solid var(--mw-graphite);
  padding: 11px 12px;
}
textarea { min-height: 120px; resize: vertical; }
textarea.short { min-height: 88px; }
input:focus-visible, textarea:focus-visible { outline-offset: 0; }
::placeholder { color: var(--mw-rule); opacity: 1; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  border: 2px solid var(--mw-graphite);
  font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status.ok { background: var(--mw-yellow); }
.form-status.err { background: var(--mw-face); }

.form-note { margin-top: 14px; }

.contact-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.contact-points li {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--mw-graphite);
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 12px;
}
.contact-points li:last-child { border-bottom: 1px solid var(--mw-graphite); }
.contact-points .k { font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; padding-top: 3px; }
.contact-points .v { font-weight: 600; overflow-wrap: anywhere; }

/* --------------------------------------------------------------------------
   Not found
   -------------------------------------------------------------------------- */

.nf-links { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.nf-links li { margin: 0; }
.nf-links a { font-weight: 600; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--mw-graphite); color: var(--mw-white); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 28px clamp(20px, 3vw, 48px);
  padding-block: clamp(28px, 4vw, 44px);
  align-items: start;
}
.footer-brand img { height: 56px; width: auto; }
.footer-brand p { margin-top: 18px; font-size: .95rem; color: var(--mw-white); }
.footer-brand .label { color: var(--mw-yellow); margin-bottom: 4px; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 8px 40px;
  align-content: start;
}
.footer-nav a { color: var(--mw-white); font-weight: 600; text-decoration: none; padding: 4px 0; }
.footer-nav a:hover { color: var(--mw-yellow); }
.footer-nav a[aria-current="page"] { color: var(--mw-yellow); }
.footer-copy { font-size: .8125rem; color: var(--mw-face); margin-top: 24px; }

.footer-strip {
  min-height: 52px;
  border-top: 1px solid var(--mw-rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  padding: 12px var(--gutter);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.footer-strip a, .footer-strip span { color: var(--mw-white); text-decoration: none; }
.footer-strip a:hover { color: var(--mw-yellow); }
.footer-strip-rule { width: 1px; height: 18px; background: var(--mw-rule); }
@media (max-width: 400px) { .footer-strip-rule { display: none; } }

/* --------------------------------------------------------------------------
   Spacing utilities
   -------------------------------------------------------------------------- */

.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mt-xl { margin-top: 64px; }
