/* ==========================================================================
   Rutter Mills — Round 5 comp (spill-zoom-42465894.figma.site)
   Base = mobile comp (393px, fluid). Desktop comp applies at >= 1200px,
   matching the published site's breakpoint behavior.
   ========================================================================== */

:root {
  --red: #ba0c2f;          /* buttons, banners */
  --accent: #d31145;       /* links, arrows, pagination */
  --ink: #0c1e21;
  --ink-soft: #091821;
  --review-ink: #383845;
  --dark: #222222;
  --dark-2: #181818;
  --hero-bg: #0f1115;
  --nav-bg: #303030;
  --nav-desktop: #1a1a1a;
  --attrib-bg: #2c2c2c;
  --gray-200: #efefef;
  --line: #e8eded;
  --muted: #808080;
  --footer-muted: #9a9fa0;

  --font-serif: "Libre Caslon Text", Georgia, serif;
  --font-display: "Big Caslon", "Libre Caslon Display", "Libre Caslon Text", Georgia, serif;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;

  --pad: 14px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
h1, h2, h3, p, blockquote, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; padding: 0; }

.page { width: 100%; overflow: hidden; }

/* Viewport limiting is applied at runtime by js/previews.js from the
   "viewport" field in previews.json. */

h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-height: 44px;
  border-radius: 2px;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: background-color .2s;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #96001f; }
.btn-ghost {
  background: rgba(255 255 255 / .1);
  border: 1px solid rgba(255 255 255 / .5);
  color: #fff;
  font-size: 16px;
}
.btn-ghost:hover { background: rgba(255 255 255 / .22); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 14px;
  line-height: 19.6px;
  text-transform: uppercase;
}
.link-more .dot { width: 6px; height: 6px; background: var(--accent); flex: none; }
.link-more:hover { text-decoration: underline; }

.cat-label {
  font-size: 13px;
  line-height: 20.8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.divider { border: 0; border-top: 1px solid var(--line); width: 100%; margin: 0; }
.img-placeholder { background: #d9d9d9; display: block; }
.desktop-only { display: none; }

/* carousels + pagination */
.cards-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cards-carousel::-webkit-scrollbar { display: none; }
.cards-carousel > * { scroll-snap-align: start; flex: none; }

.pager {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-block: 28px 0;
  padding-inline: var(--pad);
}
.pager img { flex: none; }
.pager img:first-of-type { transform: scaleX(-1); }
.pager .dash { flex: 0 1 14px; min-width: 6px; height: 7px; background: var(--review-ink); }
.pager .dash.active { flex: 0 0 14px; height: 14px; background: var(--accent); }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px var(--pad);
  height: 58px;
}
.logo { margin-right: auto; }
.logo img { height: 34px; width: auto; }
.nav-links { display: none; }
.nav-phone {
  background: var(--red);
  color: #f5f5f5;
  font-weight: 700;
  font-size: 16px;
  width: 160px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-phone:hover { background: #96001f; }
.phone-desktop { display: none; }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 4px 6px; }
.menu-toggle span { width: 6px; height: 6px; background: var(--red); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--hero-bg); color: #fff; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15 17 21 / .1) 0%, rgba(15 17 21 / .92) 78%, var(--hero-bg) 100%);
}
.hero-content {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: 440px var(--pad) 29px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 41px;
  letter-spacing: 1px;
}
.hero-title em { font-style: italic; color: #c1c1c1; }
.hero-copy { font-size: 18px; line-height: 1.55; font-weight: 300; max-width: 366px; }
.hero-copy strong { font-weight: 700; }

/* ---------- Trust banner ---------- */
.trust-banner {
  background: var(--red);
  color: #fff;
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  text-align: center;
  padding-inline: var(--pad);
}
.trust-banner .diamond {
  width: 9px;
  height: 9px;
  background: #fff;
  transform: rotate(45deg);
  flex: none;
}

/* ---------- Awards ---------- */
.awards {
  background: var(--gray-200);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 32px var(--pad);
  overflow: hidden;
}
.awards-title {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  flex: none;
  padding: 10px;
  border-right: 1px solid #d9d9d9;
  padding-right: 24px;
  margin-right: 10px;
}
.awards-logos { display: flex; align-items: center; gap: 6px; }
.award {
  flex: none;
  width: 129px;
  height: 110px;
  display: grid;
  place-items: center;
  padding: 24px 15px;
}
.award img { max-height: 62px; max-width: 99px; width: auto; }

/* ---------- Firm history ---------- */
.history { padding: 64px var(--pad) 32px; }
.history-head { display: grid; gap: 16px; padding-bottom: 18px; }
.history-sub {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.1;
  color: var(--ink);
}
.history-sub .red { color: var(--accent); }
.history-copy { display: grid; gap: 24px; justify-items: start; }
.history-copy p { font-size: 16px; line-height: 26px; color: var(--ink); }
.history-copy p a { font-weight: 700; text-decoration: underline; }
.history-copy .btn { margin-top: 8px; }
.history-collage { display: none; }

/* ---------- Team cards ---------- */
.team { padding: 30px 0 64px; }
.team .cards-carousel { padding-inline: var(--pad); gap: 24px; }
.team-card {
  width: 352px;
  max-width: 90vw;
  background: #fff;
  box-shadow: 0 1px 4px rgba(12 30 33 / .08);
}
.team-card > img, .team-card .img-placeholder { width: 100%; height: 240px; object-fit: cover; object-position: top; }
.team-card-body { display: grid; gap: 12px; padding: 20px; justify-items: start; }
.team-card-body h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 24.6px;
}
.team-role { color: var(--muted); font-size: 14px; line-height: 1.2; }

/* ---------- Collage ---------- */
.collage { padding: 14px; }
.collage img { width: 100%; }

/* ---------- Practice areas ---------- */
.practice { padding: 64px 0; }
.practice-intro {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: 0 var(--pad) 28px;
}
.practice-intro p { font-size: 16px; line-height: 26px; color: var(--ink-soft); }
.practice-intro .btn { margin-top: 8px; }
.practice-carousel { padding-inline: var(--pad); }

.service-card {
  width: 283px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 60px;
  padding: 0 20px;
}
.service-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
}
.service-card .arrow { width: 24px; height: 8px; transition: transform .2s; }
.service-card:hover .arrow { transform: translateX(6px); }
.service-card-img { width: 100%; height: 212px; object-fit: cover; }

/* ---------- Proven Results ---------- */
.results { padding: 64px var(--pad); }
.results-head { display: grid; gap: 18px; justify-items: start; padding-bottom: 35px; }
.results-head p { font-size: 16px; line-height: 26px; color: var(--ink-soft); }
.results-btn-desktop { display: none; }
.results-list { display: grid; }
.result {
  display: grid;
  gap: 10px;
  justify-items: start;
  align-content: start;
  border-top: 1px solid var(--line);
  padding: 22px 0 26px;
}
.result:last-child { border-bottom: 1px solid var(--line); }
.result-amount {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 46.2px;
  letter-spacing: -2.1px;
  color: #000;
}
.result-label {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.54px;
  color: #4c4c4c;
}
.results-btn-mobile { margin-top: 32px; }

/* ---------- Quote ---------- */
.quote-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gray-200);
}
.quote-block { padding: 40px 10px 24px var(--pad); display: grid; align-content: center; }
.quote-text {
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.3;
  color: var(--dark);
}
.quote-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.quote-attrib {
  background: var(--attrib-bg);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px var(--pad) 18px 13px;
  min-height: 75px;
}
.quote-bar { width: 5px; height: 45px; background: var(--red); border-radius: 1px; flex: none; }
.quote-attrib p {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e2e2e2;
}

/* ---------- Giving back ---------- */
.giving { padding: 64px 0 64px; }
.giving h2 { padding: 0 var(--pad) 18px; }
.giving-copy {
  font-size: 16px;
  line-height: 26px;
  color: var(--ink-soft);
  padding: 0 var(--pad) 28px;
}
.blog-carousel { padding-inline: var(--pad); }

.blog-card {
  width: 330px;
  max-width: 88vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(12 30 33 / .08);
}
.blog-card > img { width: 100%; height: 266px; object-fit: cover; }
.blog-card-body {
  display: grid;
  gap: 16px;
  padding: 24px 24px 16px;
  justify-items: start;
}
.blog-card-body h3, .resource-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 33.6px;
  color: var(--ink);
}
.blog-card-body .link-more { margin-top: 5px; }

/* ---------- Resources ---------- */
.resources { background: var(--gray-200); padding: 64px var(--pad); }
.resources h2 { padding-bottom: 40px; }
.resources-grid { display: grid; gap: 24px; }
.resource-card {
  background: #fff;
  padding: 24px;
  display: grid;
  gap: 16px;
  justify-items: start;
  align-content: start;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 64px var(--pad); }
.testimonials-text { display: grid; gap: 16px; justify-items: start; }
.testimonials-copy { font-size: 16px; line-height: 26px; color: var(--ink); }
.reviews-badge {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  margin-block: 8px 24px;
}
.badge-google { background: #fff; display: grid; place-items: center; width: 42px; }
.badge-text {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 10px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ink);
}
.testimonial-img {
  width: 100%;
  height: 228px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 24px;
}
.reviews-carousel { gap: 24px; }
.review-card {
  width: 354px;
  max-width: 90vw;
  background: var(--gray-200);
  padding: 32px;
  display: grid;
  gap: 20px;
  align-content: start;
}
.review-card .stars { width: 126px; height: 21px; }
.review-card p { font-size: 16px; line-height: 1.4; color: var(--review-ink); }
.review-card-lg p { font-size: 18px; }
.review-card footer { display: grid; gap: 4px; }
.review-card footer strong { font-size: 16px; line-height: 1.25; color: var(--ink); }
.review-card footer span { font-size: 12px; line-height: 1.33; color: #505050; }

/* ---------- CTA ---------- */
.cta { padding: 64px var(--pad); display: grid; gap: 38px; }
.cta-copy { display: grid; gap: 18px; justify-items: start; }
.cta-copy p { font-size: 16px; line-height: 26px; color: var(--ink); }
.cta-image { width: 100%; height: 258px; object-fit: cover; order: 2; }
.cta-copy { order: 1; }

/* ---------- Locations ---------- */
.locations { background: var(--dark-2); color: #fff; padding: 64px 0; }
.locations-text { display: grid; gap: 18px; padding: 0 48px 24px; }
.locations h2 { color: #fff; font-size: 26px; line-height: 1.35; }
.locations-intro { font-size: 16px; line-height: 26px; color: #fff; }
.accordion { padding: 0 var(--pad); }
.accordion-item + .accordion-item { border-top: 1px solid #fff; }
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #000;
  color: #fff;
  border-radius: 2px;
  padding: 14px 26px;
  height: 60px;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 22.4px;
  text-align: left;
}
.accordion-header .chevron { width: 32px; height: 32px; transition: transform .25s; }
.accordion-item.open .accordion-header .chevron { transform: rotate(180deg); }
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
  overflow: hidden;
}
.accordion-item.open .accordion-content { grid-template-rows: 1fr; }
.accordion-content-inner {
  min-height: 0;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding-inline: 26px;
}
.accordion-item.open .accordion-content-inner { padding-block: 14px 26px; }
.accordion-content p { color: #f5f5f5; font-size: 18px; line-height: 1.25; }
.accordion-content a:hover { text-decoration: underline; }
.accordion-content .map { width: 100%; max-width: 487px; border-radius: 7px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--footer-muted); }
.footer-block { padding: 32px var(--pad) 0; display: grid; gap: 36px; }
.footer-divider { border: 0; border-top: 1px solid rgba(255 255 255 / .9); margin: 0; width: 100%; }

.footer-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 168px));
  gap: 24px 28px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  line-height: 20.8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.social-link img { width: 32px; height: 32px; }
.social-link:hover { color: #fff; }

.footer-main { padding: 32px var(--pad) 18px; display: grid; gap: 36px; }
.footer-heading {
  color: #fff;
  font-size: 13px;
  line-height: 20.8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-links { display: grid; gap: 24px; border-top: 1px solid rgba(255 255 255 / .9); padding-top: 32px; }
.footer-careers { border-top: 1px solid rgba(255 255 255 / .9); padding-block: 32px; }
.footer-careers a:hover { text-decoration: underline; }
.footer-columns { display: flex; gap: 36px; }
.footer-columns ul { display: grid; gap: 16px; align-content: start; width: 160px; }
.footer-columns a { color: #fff; font-size: 14px; line-height: 1.2; }
.footer-columns a:hover { text-decoration: underline; }

.newsletter-copy {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 28px;
  max-width: 420px;
}
.newsletter-form { display: grid; gap: 16px; justify-items: start; margin-top: 15px; }
.newsletter-form input {
  width: 100%;
  max-width: 420px;
  border: 0;
  background: rgba(255 255 255 / .14);
  color: #fff;
  padding: 9px 11px;
  height: 47px;
  font-family: var(--font-body);
  font-size: 12px;
}
.newsletter-form input::placeholder { color: rgba(255 255 255 / .75); }
.newsletter-form .btn { font-size: 16px; padding: 10px 20px; }

.footer-legal {
  display: grid;
  gap: 16px;
  padding: 0 var(--pad) 36px;
  text-align: center;
  font-size: 13px;
  line-height: 20.8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-legal p { padding-top: 20px; }
.privacy-link { display: block; margin-top: 16px; font-size: 14px; }
.privacy-link:hover { color: #fff; }

/* ---------- Floating chat agent ---------- */
.online-agent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  width: 90px;
  transition: transform .2s;
}
.online-agent:hover { transform: scale(1.06); }
.online-agent img { width: 100%; height: auto; filter: drop-shadow(0 4px 10px rgba(0 0 0 / .25)); }

/* ==========================================================================
   Desktop — matches the comp's Desktop frame.
   Currently PARKED in favor of the 500px column limiter: restore by changing
   the media query below to (min-width: 1200px) and re-bounding the limiter
   queries above to (max-width: 1199px).
   ========================================================================== */
@media (min-width: 1200px) and (max-width: 0px) {
  :root { --gutter: max(48px, calc((100vw - 1100px) / 2)); }

  .desktop-only { display: grid; }
  .label-mobile { display: none; }
  .label-desktop { display: inline; }

  /* nav */
  .site-header {
    background: var(--nav-desktop);
    height: 80px;
    padding: 0 64px;
    gap: 24px;
  }
  .logo { margin-right: 0; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-inline: auto;
  }
  .nav-links a {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-top: 4px;
  }
  .nav-links a:hover { color: var(--footer-muted); }
  .search-btn img { width: 40px; height: 40px; }
  .nav-phone { width: auto; height: 44px; padding: 12px 24px; font-size: 15px; font-weight: 400; }
  .phone-mobile { display: none; }
  .phone-desktop { display: inline; }
  .menu-toggle { display: none; }

  /* hero */
  .hero-content { padding: 360px 112px 90px; max-width: 1200px; }
  .hero-title { font-size: 72px; line-height: 84px; letter-spacing: 0.5px; }
  .hero-copy { font-size: 30px; line-height: 38px; max-width: 700px; }

  /* awards */
  .awards { justify-content: center; gap: 24px; padding: 32px var(--gutter); }
  .awards-logos { gap: 24px; }

  /* history */
  .history { padding: 72px var(--gutter) 40px; }
  .history-body {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    padding-top: 24px;
  }
  .history-collage { display: block; width: 100%; }
  .history-copy p { max-width: 720px; }

  /* team + carousels: center within column */
  .team { padding-inline: 0; }
  .team .cards-carousel, .practice-carousel, .blog-carousel { padding-inline: var(--gutter); }
  .team-card { width: 342px; }

  /* collage section is desktop-hidden (lives inside history) */
  .collage { display: none; }

  /* practice */
  .practice { padding: 72px 0; }
  .practice-intro { padding: 0 var(--gutter) 28px; }
  .practice-intro p { max-width: 720px; }

  /* results: side-by-side */
  .results { padding: 72px var(--gutter); display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: 80px; }
  .results-head { align-content: start; padding-bottom: 0; }
  .results-btn-desktop { display: inline-flex; margin-top: 8px; }
  .results-btn-mobile { display: none; }
  .results-list { grid-template-columns: 1fr 1fr; gap: 0 28px; align-content: start; }
  .result:last-child { border-bottom: 0; }
  .result:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }

  /* quote: photo pinned right, attribution bar inside band bottom-left */
  .quote {
    display: grid;
    grid-template-columns: 1fr 440px;
    grid-template-rows: 1fr auto;
    background: var(--gray-200);
  }
  .quote-split { display: contents; }
  .quote-block { grid-area: 1 / 1; padding: 72px 48px 48px var(--gutter); }
  .quote-photo { grid-area: 1 / 2 / 3 / 3; display: grid; align-items: end; }
  .quote-photo img { max-height: 420px; width: auto; margin-left: auto; }
  .quote-text { font-size: 40px; line-height: 1.25; max-width: 640px; font-style: italic; }
  .quote-attrib { grid-area: 2 / 1; background: #1f1f1f; padding-left: var(--gutter); min-height: 78px; }
  .quote-attrib p { line-height: 1.4; }
  .quote-attrib .attrib-role { text-transform: none; letter-spacing: 0.5px; font-size: 14px; }

  /* giving */
  .giving { padding: 72px 0; }
  .giving h2 { padding-inline: var(--gutter); }
  .giving-copy { padding-inline: var(--gutter); max-width: calc(820px + 2 * var(--gutter)); }
  .blog-card { width: 330px; }

  /* resources */
  .resources { padding: 72px var(--gutter); }
  .resources-grid { grid-template-columns: repeat(3, 1fr); }

  /* testimonials */
  .testimonials { padding: 72px var(--gutter); }
  .testimonials-head {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 64px;
    align-items: start;
    padding-bottom: 40px;
  }
  .testimonial-img { height: 260px; margin-bottom: 0; border: 1px solid var(--line); }
  .reviews-carousel { overflow: visible; }
  .review-card { width: auto; flex: 1; }

  /* cta */
  .cta {
    padding: 72px var(--gutter);
    grid-template-columns: 400px 1fr;
    align-items: center;
    gap: 64px;
  }
  .cta-image { order: 1; height: 320px; }
  .cta-copy { order: 2; }
  .cta-copy h2 { max-width: 640px; }
  .cta-copy p { max-width: 720px; }

  /* locations */
  .locations { padding: 72px 0; }
  .locations-inner {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 64px;
    padding-inline: var(--gutter);
    align-items: start;
  }
  .locations-text { padding: 0; }
  .locations h2 { font-size: 32px; }
  .accordion { padding: 0; }

  /* footer */
  .footer-block { padding: 0; }
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px var(--gutter);
    background: var(--attrib-bg);
  }
  .footer-block .footer-divider { display: none; }
  .footer-main {
    grid-template-columns: minmax(320px, 1fr) auto minmax(120px, auto);
    gap: 96px;
    padding: 48px var(--gutter) 32px;
  }
  .footer-links, .footer-careers { border-top: 0; padding-top: 0; }
  .footer-columns { gap: 48px; }
  .footer-columns ul { width: 190px; }
  .footer-legal { padding: 0 var(--gutter) 24px; }
  .footer-legal p { padding-top: 24px; }
  .legal-br { display: none; }
  .privacy-link { display: inline; margin-top: 0; margin-left: 24px; }
}
