/* Wrek'd Tech desktop-first academic R&D microsite. No external imports. */
:root {
  --bg: #0a0e0f;
  --surface: #0e1517;
  --surface-2: #111a1d;
  --surface-3: #152023;
  --line: #20292d;
  --line-strong: #2c383d;
  --text: #eaefec;
  --muted: #9aa7a2;
  --dim: #6f7b76;
  --green: #3cbe84;
  --green-soft: rgba(60, 190, 132, 0.14);
  --blue: #4f93d6;
  --blue-soft: rgba(79, 147, 214, 0.12);
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --container: 1180px;
  --header-height: 76px;
  --radius: 18px;
  --radius-small: 12px;
}

*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(900px 460px at 88% -8%, rgba(79,147,214,.13), transparent 60%),
    radial-gradient(760px 480px at 4% 3%, rgba(60,190,132,.10), transparent 58%),
    var(--bg);
  color: var(--text);
  font: 16px/1.62 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; overflow-wrap: anywhere; }
a:hover { color: var(--green); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--green); color: #06140d; padding: 10px 16px; font-weight: 700; }
.skip-link:focus { left: 0; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(48px, 5.3vw, 72px); }
.section + .section { border-top: 1px solid rgba(255,255,255,.045); }
.section-head { max-width: 920px; }
.page-heading { margin-bottom: clamp(26px, 3.6vw, 44px); }
.section-copy { margin-top: 18px; }
.measure { max-width: 72ch; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  font: 700 .72rem/1.35 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: rgba(60,190,132,.42); }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.02em; font-weight: 650; text-wrap: balance; overflow-wrap: break-word; }
h1 { font-size: clamp(2.25rem, 3.45vw, 3.45rem); max-width: 900px; }
h2 { font-size: clamp(1.7rem, 2.45vw, 2.35rem); }
h3 { font-size: clamp(1rem, 1.18vw, 1.1rem); }
p { margin: 0 0 16px; overflow-wrap: break-word; }
.lead { font-size: clamp(1rem, 1.18vw, 1.1rem); line-height: 1.68; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; max-width: 100%; padding: 11px 17px; border: 1px solid transparent; border-radius: var(--radius-small); font-weight: 700; text-align: center; white-space: normal; }
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }
.btn--primary { background: linear-gradient(180deg, #46c98e, var(--green)); color: #06140d; box-shadow: 0 8px 24px rgba(60,190,132,.12); }
.btn--primary:hover { color: #06140d; filter: brightness(1.04); }
.btn--ghost { color: var(--text); border-color: var(--line-strong); background: rgba(255,255,255,.012); }
.btn--sm { padding: 8px 12px; font-size: .82rem; }

/* Header: sticky in the upper scroll range; site.js releases it near mid-scroll on desktop/laptop. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(10,14,15,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(177,204,195,.10);
}
.site-header--released { position: relative; top: auto; }
.site-header .container { position: relative; min-height: var(--header-height); display: flex; align-items: center; gap: 18px; }
.brand--real { width: 160px; height: 72px; flex: 0 0 160px; display: flex; align-items: center; background: transparent; }
.site-logo, .contact-logo, .footer-logo { display: block; height: auto; object-fit: contain; }
.site-logo--header { width: 160px; max-height: 72px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav a { color: var(--muted); font-size: .82rem; font-weight: 650; padding: 7px; border-radius: 8px; white-space: nowrap; }
.nav a:hover, .nav a[aria-current="page"] { background: rgba(255,255,255,.045); color: var(--text); }
.nav .header-cta { margin-left: 4px; color: #06140d; }
.nav-burger { display: none; margin-left: auto; width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 9px; background: var(--surface); padding: 0; cursor: pointer; align-items: center; justify-content: center; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--text); position: relative; }
.nav-burger span::before, .nav-burger span::after { position: absolute; }
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

/* Home */
.hero { padding-block: clamp(34px, 4.2vw, 56px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.38fr) minmax(320px, .62fr); gap: clamp(30px, 4vw, 56px); align-items: center; }
.hero h1 { font-size: clamp(2.35rem, 3.25vw, 3.25rem); max-width: 780px; }
.hero .lead { max-width: 67ch; margin-top: 15px; }
.hero-anchors { max-width: 740px; margin-top: 17px; }
.hero-anchors li { color: var(--text); padding-block: 9px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual svg { width: min(100%, 360px); max-height: 390px; filter: drop-shadow(0 20px 44px rgba(0,0,0,.22)); }

.section--editorial { padding-block: clamp(44px, 4.8vw, 62px); }
.research-editorial { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 86px); align-items: end; }
.research-copy { padding: 4px 0 0 clamp(0px, 2vw, 26px); border-left: 1px solid rgba(60,190,132,.28); }
.research-copy p { margin: 0; color: var(--muted); font-size: clamp(1rem, 1.22vw, 1.12rem); line-height: 1.75; }
.section--location { background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,0)); }
.location-layout { align-items: center; }

/* Shared content modules */
.card, .timeline li, .map-wrap, .contact-route, .markers li, .matrix-wrap {
  background: linear-gradient(180deg, rgba(17,26,29,.94), rgba(14,21,23,.94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card-grid { display: grid; gap: 18px; margin-top: 28px; }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 21px; }
.card-index { display: block; margin-bottom: 14px; color: var(--green); font: 700 .72rem var(--mono); letter-spacing: .1em; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(32px, 5vw, 68px); align-items: center; }
.split--text-wide { grid-template-columns: minmax(0,1.12fr) minmax(320px,.88fr); }
.page-split { margin-top: 0; align-items: center; }

.anchor-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 9px; }
.anchor-list li { position: relative; padding: 10px 14px 10px 36px; border: 1px solid var(--line); border-radius: var(--radius-small); background: rgba(14,21,23,.86); color: var(--muted); }
.anchor-list li::before { content: ""; position: absolute; left: 15px; top: 1.18em; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.concept-list { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 0; }
.concept-list li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.concept-visual { align-self: stretch; display: flex; align-items: center; }

.map-wrap { padding: clamp(18px, 2.6vw, 30px); overflow: hidden; }
.map-wrap > svg { width: 100%; max-height: 500px; }
.markers { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.markers li { display: flex; gap: 12px; padding: 11px 14px; }
.pin { width: 12px; height: 12px; border-radius: 50%; margin-top: 6px; flex: 0 0 12px; }
.pin--green { background: var(--green); }
.pin--blue { background: var(--blue); }
.m-name { display: block; font-weight: 700; }
.m-role { font: 700 .7rem var(--mono); letter-spacing: .045em; color: var(--muted); text-transform: uppercase; }

.matrix-wrap { margin-top: 0; overflow: hidden; }
.rd-matrix { width: 100%; border-collapse: collapse; table-layout: fixed; }
.rd-matrix caption { text-align: left; color: var(--muted); font-size: .88rem; padding: 15px 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.rd-matrix th, .rd-matrix td { text-align: left; vertical-align: top; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.rd-matrix tbody tr:last-child th, .rd-matrix tbody tr:last-child td { border-bottom: 0; }
.rd-matrix thead th { color: var(--green); font: 700 .74rem var(--mono); letter-spacing: .06em; text-transform: uppercase; background: rgba(60,190,132,.035); }
.rd-matrix thead th:nth-child(1) { width: 23%; }
.rd-matrix thead th:nth-child(2) { width: 32%; }
.rd-matrix thead th:nth-child(3) { width: 45%; }
.rd-matrix tbody th { font-size: .95rem; }
.rd-matrix tbody td { color: var(--muted); font-size: .89rem; line-height: 1.55; }

.timeline { list-style: none; counter-reset: stage; display: grid; gap: 16px; margin: 0; padding: 0; }
.timeline--desktop { grid-template-columns: repeat(6, minmax(0,1fr)); }
.timeline--desktop li { grid-column: span 2; }
.timeline--desktop li:nth-child(4) { grid-column: 2 / span 2; }
.timeline--desktop li:nth-child(5) { grid-column: 4 / span 2; }
.timeline li { counter-increment: stage; position: relative; min-height: 150px; padding: 22px 20px 20px 64px; overflow: hidden; }
.timeline li::before { content: counter(stage); position: absolute; left: 18px; top: 20px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font: 700 .95rem var(--mono); }
.timeline li::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, var(--green), transparent 55%); opacity: .55; }
.timeline li p { color: var(--muted); font-size: .89rem; margin: 7px 0 0; line-height: 1.55; }

.founder-intro { align-items: center; }
.founder-pillars { margin-top: clamp(24px, 3vw, 34px); }
.founder-pillars .card { min-height: 122px; display: flex; flex-direction: column; justify-content: center; }
.founder-visual { align-self: center; }

/* Contact */
.contact-section { padding-top: clamp(36px, 4vw, 54px); }
.contact-card { text-align: center; padding: 0; background: transparent; border: 0; }
.contact-heading { max-width: 860px; margin-inline: auto; }
.contact-logo { width: 160px; max-height: 72px; margin: 0 auto 12px; background: transparent; }
.contact-eyebrow { justify-content: center; }
.contact-lead { max-width: 70ch; margin-inline: auto; }
.contact-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,.82fr); gap: 24px; text-align: left; margin-top: 28px; align-items: stretch; }
.best-fit { padding: 22px 24px 24px; border-top: 1px solid rgba(60,190,132,.26); }
.best-fit .anchor-list { margin-top: 16px; }
.contact-route { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.contact-route .actions { display: flex; }
.contact-line { margin-top: 18px; font: 400 .82rem/1.65 var(--mono); color: var(--muted); }
.contact-line a { color: var(--green); }
.social-links { line-height: 1.85; }

/* Footer remains in normal flow. Logo and wrappers have no painted background. */
.site-footer { position: static; border-top: 1px solid var(--line); padding-block: 32px 24px; background: transparent; }
.footer-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(0,1fr); gap: 42px; align-items: start; }
.footer-brand, .footer-brand-lockup, .footer-logo { background-color: transparent !important; background-image: none !important; box-shadow: none !important; }
.footer-brand-lockup { display: inline-flex; align-items: center; color: var(--text); font-weight: 700; }
.footer-brand-lockup > span { display: none; }
.footer-logo { width: clamp(230px, 22vw, 310px); max-height: 118px; }
.footer-desc, .footer-meta .val { color: var(--muted); }
.footer-desc { max-width: 62ch; margin-top: 10px; }
.footer-meta { display: grid; gap: 5px; font-size: .86rem; padding-top: 8px; }
.footer-meta .lbl { color: var(--dim); font: 700 .72rem var(--mono); letter-spacing: .04em; text-transform: uppercase; }
.footer-meta-gap { margin-top: 10px; }
.footer-bottom { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 8px; font-size: .8rem; color: var(--dim); }
.footer-bottom p { margin: 0; }
.footer-bottom .disclaimer { max-width: 112ch; line-height: 1.55; }

@media (max-width: 1199px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .brand--real { width: 160px; flex-basis: 160px; }
  .site-logo--header { width: 160px; max-height: 72px; }
  .nav-burger { display: inline-flex; }
  .nav { position: absolute; top: calc(100% + 10px); left: 0; right: 0; margin: 0; display: none; flex-direction: column; align-items: stretch; gap: 2px; padding: 16px; background: rgba(10,14,15,.99); border: 1px solid var(--line); border-radius: 0 0 var(--radius-small) var(--radius-small); box-shadow: 0 18px 44px rgba(0,0,0,.32); }
  .nav a { padding: 11px 13px; font-size: .98rem; white-space: normal; }
  .nav .header-cta { margin: 8px 0 0; }
  .nav-burger[aria-expanded="true"] ~ .nav { display: flex; }
  .hero-grid { grid-template-columns: minmax(0,1.2fr) minmax(280px,.8fr); gap: 32px; }
  .hero h1 { font-size: clamp(2.2rem, 3.6vw, 3rem); }
  .research-editorial { gap: 44px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero-grid, .split, .split--text-wide, .research-editorial, .footer-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero { padding-block: 40px; }
  .hero-visual { order: 2; justify-content: center; }
  .hero-visual svg { width: min(100%, 320px); }
  .research-copy { border-left: 0; border-top: 1px solid rgba(60,190,132,.28); padding: 20px 0 0; }
  .map-wrap { order: 2; }
  .concept-list { grid-template-columns: 1fr; }
  .concept-list li:last-child:nth-child(odd) { grid-column: auto; }
  .card-grid--3, .timeline--desktop { grid-template-columns: 1fr; }
  .timeline--desktop li, .timeline--desktop li:nth-child(4), .timeline--desktop li:nth-child(5) { grid-column: auto; }
  .timeline li { min-height: 0; }
  .rd-matrix, .rd-matrix caption, .rd-matrix tbody, .rd-matrix tr, .rd-matrix th, .rd-matrix td { display: block; width: 100%; }
  .rd-matrix thead { display: none; }
  .rd-matrix tr { padding: 15px 16px; border-bottom: 1px solid var(--line); }
  .rd-matrix th, .rd-matrix td { border: 0; padding: 0; }
  .rd-matrix td { margin-top: 11px; }
  .rd-matrix td::before { display: block; margin-bottom: 2px; color: var(--green); font: 700 .7rem var(--mono); letter-spacing: .05em; text-transform: uppercase; }
  .rd-matrix td:nth-child(2)::before { content: "Possible Academic Fit"; }
  .rd-matrix td:nth-child(3)::before { content: "Example Research Questions"; }
  .founder-pillars { grid-template-columns: 1fr; }
  .founder-pillars .card { min-height: 0; }
  .contact-layout { margin-top: 24px; }
  .footer-grid { gap: 26px; }
}

@media (max-width: 560px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand--real { width: 132px; height: 64px; flex-basis: 132px; }
  .site-logo--header { width: 132px; max-height: 64px; }
  .hero, .section { padding-block: 40px; }
  h1 { font-size: clamp(1.75rem, 8.4vw, 2.25rem); }
  h2 { font-size: clamp(1.42rem, 6.8vw, 1.9rem); }
  .hero h1 { font-size: clamp(1.82rem, 8.6vw, 2.35rem); }
  .hero-actions .btn, .contact-route .btn { width: 100%; }
  .hero-visual svg { width: min(100%, 270px); }
  .map-wrap { padding: 18px 14px; }
  .timeline li { padding: 60px 16px 16px; }
  .timeline li::before { left: 16px; top: 15px; }
  .contact-route, .best-fit { padding: 18px 16px; }
  .contact-logo { width: min(132px, 48vw); max-height: 64px; }
  .footer-logo { width: min(250px, 80vw); max-height: 104px; }
  .footer-bottom { font-size: .76rem; }
}

@media (max-width: 360px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .brand--real { width: 118px; height: 58px; flex-basis: 118px; }
  .site-logo--header { width: 118px; max-height: 58px; }
  .contact-logo { width: min(118px, 46vw); max-height: 58px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-visual svg { width: min(100%, 235px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* Compact professional footer and coordinated header/footer reveal behavior. */
.site-header {
  will-change: transform, opacity;
  transition: transform 180ms linear, opacity 180ms linear;
}

.site-footer {
  padding-block: 22px 14px;
  background: rgba(8, 12, 13, .72);
}

.js .site-footer {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

.js .site-footer.site-footer--visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-grid {
  grid-template-columns: minmax(270px, 1.3fr) minmax(210px, .8fr) minmax(210px, .72fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}

.footer-logo {
  width: clamp(170px, 16vw, 215px);
  max-height: 82px;
}

.footer-desc {
  max-width: 52ch;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

.footer-meta,
.footer-social {
  padding-top: 3px;
}

.footer-meta {
  gap: 3px;
  font-size: .79rem;
  line-height: 1.45;
}

.footer-meta .lbl,
.footer-social .lbl {
  color: var(--dim);
  font: 700 .67rem/1.35 var(--mono);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.footer-meta-gap {
  margin-top: 8px;
}

.footer-social {
  display: grid;
  gap: 8px;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.footer-social-links a {
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.35;
}

.footer-social-links a:hover {
  color: var(--green);
}

.footer-bottom {
  display: block;
  margin-top: 14px;
  padding-top: 11px;
  font-size: .74rem;
}

.copyright-toggle {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--dim);
  font: inherit;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.copyright-toggle:hover,
.copyright-toggle[aria-expanded="true"] {
  color: var(--muted);
}

.copyright-toggle::after {
  content: "  ·  Legal";
  color: rgba(111, 123, 118, .7);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-legal[hidden] {
  display: none;
}

.footer-legal {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.055);
}

.footer-legal .disclaimer {
  max-width: 118ch;
  margin: 0;
  color: var(--dim);
  font-size: .72rem;
  line-height: 1.52;
}

.site-footer[data-layout-compensated="true"] {
  overflow: visible;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
    gap: 20px 28px;
  }

  .footer-social {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-block: 19px 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-logo {
    width: min(190px, 66vw);
    max-height: 76px;
  }

  .footer-desc {
    font-size: .79rem;
  }

  .footer-bottom {
    margin-top: 12px;
    padding-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .js .site-footer {
    transition: none !important;
  }
}

/* PR30 compact footer density override */
.site-footer {
  padding-block: 13px 9px;
}

.footer-grid {
  grid-template-columns: minmax(220px, 1.15fr) minmax(190px, .82fr) minmax(170px, .62fr);
  gap: clamp(14px, 1.8vw, 26px);
  align-items: center;
}

.footer-logo {
  width: clamp(140px, 12.5vw, 175px);
  max-height: 62px;
}

.footer-desc {
  max-width: 48ch;
  margin-top: 1px;
  font-size: .74rem;
  line-height: 1.35;
}

.footer-meta,
.footer-social {
  padding-top: 0;
}

.footer-meta {
  gap: 1px;
  font-size: .72rem;
  line-height: 1.28;
}

.footer-meta .lbl,
.footer-social .lbl {
  font-size: .61rem;
  line-height: 1.2;
}

.footer-meta-gap {
  margin-top: 4px;
}

.footer-social {
  gap: 5px;
}

.footer-social-links {
  gap: 6px;
}

.footer-social-links a {
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;
  border-radius: 8px !important;
}

.footer-social-links a svg {
  width: 15px !important;
  height: 15px !important;
}

.footer-bottom {
  margin-top: 7px;
  padding-top: 6px;
  font-size: .67rem;
}

.copyright-toggle {
  line-height: 1.25;
}

.footer-legal {
  margin-top: 7px;
  padding-top: 7px;
}

.footer-legal .disclaimer {
  font-size: .68rem;
  line-height: 1.42;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(200px, .8fr);
    gap: 12px 20px;
    align-items: start;
  }

  .footer-social {
    grid-column: 1 / -1;
    gap: 4px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-block: 12px 9px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-logo {
    width: min(155px, 58vw);
    max-height: 58px;
  }

  .footer-desc {
    font-size: .72rem;
    line-height: 1.32;
  }

  .footer-bottom {
    margin-top: 7px;
    padding-top: 7px;
  }
}

