/* ==========================================================================
   Kevin Sonnichsen — portfolio
   Design system after LaunchNow / LaunchFolio: Switzer, a bounded 1080px
   column with visible rails, hairline-ruled bands, two-tone headings,
   and glossy black pills.
   ========================================================================== */

:root {
  --bg: #ffffff;
  --band: #fafafa;
  --ink: #000000;
  --ink-2: #545454;
  --ink-3: #828282;
  --rule: rgba(0, 0, 0, 0.08);
  --rule-strong: rgba(0, 0, 0, 0.12);
  --footer-bg: #000000;

  --container: 1080px;
  --pad-x: 44px;
  --band-y: 128px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* the template's layered "floating white" shadow */
  --shadow-chip:
    0 0.6px 0.6px -1.25px rgba(0, 0, 0, 0.18),
    0 2.29px 2.29px -2.5px rgba(0, 0, 0, 0.16),
    0 10px 10px -3.75px rgba(0, 0, 0, 0.06);

  /* the glossy black pill: inset top highlight over layered darks */
  --shadow-dark:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    0 0.74px 0.74px -0.75px rgba(0, 0, 0, 0.33),
    0 2.02px 2.02px -1.5px rgba(0, 0, 0, 0.32),
    0 6px 6px -2.25px rgba(0, 0, 0, 0.24);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

/* --------------------------------------------------------------------------
   Rails — the hairlines marking the edges of the content column
   -------------------------------------------------------------------------- */

.rails {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   Navigation — a floating white pill, right-aligned over the column
   -------------------------------------------------------------------------- */

.navbar {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: flex-end;
}

.navpill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 56px;
  padding: 8px 8px 8px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  box-shadow: var(--shadow-chip);
}

.navpill__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-right: 12px;
  text-decoration: none;
  color: var(--ink);
}

.navpill__avatar {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-pill);
  object-fit: cover;
  object-position: 50% 18%;
  flex-shrink: 0;
  background: var(--band);
}

.navpill__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.navpill__sep {
  width: 1px;
  height: 22px;
  background: var(--rule-strong);
  margin-right: 8px;
  flex-shrink: 0;
}

.navpill__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navlink {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms var(--ease), background 150ms var(--ease);
}

.navlink:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}

.navlink--active {
  color: var(--ink);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-chip);
  transition: transform 150ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-dark);
}

.btn--sm {
  padding: 9px 15px;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Bands — full-bleed rows, hairline-ruled, with the column inside
   -------------------------------------------------------------------------- */

.page {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  width: 100%;
}

.band {
  position: relative;
  padding: var(--band-y) 0;
  border-top: 1px solid var(--rule);
}

.band:first-child {
  border-top: none;
}

.band--tint {
  background: var(--band);
}

.band--hero {
  padding: 160px 0 96px;
  border-top: none;
}

.band--strip {
  padding: 56px 0;
}

/* interior pages: clear the fixed nav */
.band--page {
  padding: 152px 0 var(--band-y);
  border-top: none;
}

.band__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

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

.display {
  margin: 0;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.display .muted,
.section-title .muted {
  color: var(--ink-3);
}

.section-title {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.lede {
  margin: 22px 0 0;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}

.lede strong {
  color: var(--ink);
  font-weight: 600;
}

/* Status chip */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border-radius: var(--radius-pill);
  background: #fff;
  box-shadow: var(--shadow-chip);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.chip__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
  flex-shrink: 0;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   Experience strip — the client logos
   -------------------------------------------------------------------------- */

.logo-strip {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-strip__label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  white-space: nowrap;
}

.logo-strip__logos {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
}

.logo-strip__mark {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink-3);
  white-space: nowrap;
  transition: color 150ms var(--ease);
}

.logo-strip__mark:hover {
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Recognition strip
   -------------------------------------------------------------------------- */

.awards {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.awards__items {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.award {
  display: flex;
  align-items: center;
  gap: 16px;
}

.award__mark {
  width: auto;
  display: block;
  opacity: 0.55;
  transition: opacity 150ms var(--ease);
}

.award:hover .award__mark {
  opacity: 0.9;
}

/* optical balance: the ADDY mark is portrait, the other two are wordmarks */
.award__mark--oneshow { height: 38px; }
.award__mark--addy { height: 48px; }
.award__mark--webby { height: 38px; }

.award__note {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-3);
  max-width: 160px;
}

/* --------------------------------------------------------------------------
   Work grid
   -------------------------------------------------------------------------- */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 24px;
}

.work-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-card__panel {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 484 / 340;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 26px 0;
  background: var(--band);
}

.work-card__shot {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 0;
  display: block;
  align-self: flex-end;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.45);
  transition: transform 340ms var(--ease);
}

.work-card:hover .work-card__shot {
  transform: translateY(-6px);
}

/* Device mockups carry their own shadow and need breathing room on all sides */
.work-card__panel--device {
  padding: 26px;
  align-items: center;
}

.work-card__shot--device {
  aspect-ratio: auto;
  max-height: 100%;
  align-self: center;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.work-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
}

.work-card__foot {
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;
}

.work-card__title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.work-card__cat {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
}

.work-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 3px;
  transition: color 150ms var(--ease);
}

.work-card:hover .work-card__cta {
  color: var(--ink);
}

.work-card__cta svg {
  width: 10px;
  height: 10px;
  transition: transform 150ms var(--ease);
}

.work-card:hover .work-card__cta svg {
  transform: translate(2px, -2px);
}

/* Per-project grounds */

.work-card--rejigg .work-card__panel { background: #e9e3d8; }
.work-card--primevideo .work-card__panel { background: #e2e8f1; }
.work-card--alaska .work-card__panel { background: #dbe8f3; }
.work-card--mint .work-card__panel { background: #e0efe5; }
.work-card--expenseit .work-card__panel { background: #dde7ef; }

/* --------------------------------------------------------------------------
   Recommendations
   -------------------------------------------------------------------------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.quote {
  margin: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote__text {
  margin: 0;
  quotes: none;
}

.quote__text p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}

.quote__text p:last-child {
  margin-bottom: 0;
}

.quote__by {
  margin-top: auto;
  padding-top: 4px;
}

.quote__name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.quote__title {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-2);
}

.quote__rel {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-3);
}

.section-head__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.section-head__link:hover {
  color: var(--ink);
}

.section-head__link svg {
  width: 10px;
  height: 10px;
}

/* --------------------------------------------------------------------------
   Breadth — domains worked in, heading left / list right
   -------------------------------------------------------------------------- */

.breadth {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

/* the column is narrower than a full-width section head, so step the type down */
.breadth .section-title {
  font-size: 44px;
}

.breadth__intro p {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 400px;
}

.breadth__list {
  border-top: 1px solid var(--rule);
}

.breadth__item {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.breadth__num {
  flex-shrink: 0;
  width: 22px;
  padding-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

.breadth__name {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.breadth__where {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.stat {
  padding-right: 24px;
}

.stat + .stat {
  padding-left: 32px;
  border-left: 1px solid var(--rule);
}

.stat__figure {
  margin: 0;
  font-size: 52px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.stat__label {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 250px;
}

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

.about {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.about__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--band);
  aspect-ratio: 325 / 400;
  border: 1px solid var(--rule);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

.about__heading {
  margin: 0 0 24px;
  font-size: 44px;
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.about__copy p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
}

.about__copy p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Resume
   -------------------------------------------------------------------------- */

.resume-summary {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 32px 36px;
}

.resume-summary__heading {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.resume-summary__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}

.resume-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.resume-experience,
.resume-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.resume-sidebar__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resume-section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resume-section-heading {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.resume-section-divider {
  height: 1px;
  background: var(--rule);
}

.resume-job {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.resume-job__company {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.resume-job__dates {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
}

.resume-job__title {
  margin: 2px 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.resume-job__bullets {
  margin: 0;
  padding-left: 1.1em;
}

.resume-job__bullets li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.resume-job__bullets li:last-child {
  margin-bottom: 0;
}

.resume-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.resume-contact-list li {
  font-size: 14px;
  color: var(--ink-2);
}

.resume-contact-list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
}

.resume-contact-list a:hover {
  border-bottom-color: var(--ink);
}

.resume-contact-list__strong {
  font-weight: 600;
  color: var(--ink);
}

.resume-skill {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.resume-skill:last-child {
  margin-bottom: 0;
}

.resume-skill__label {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.resume-skill__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

.resume-education {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Footer — dark
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  background: var(--footer-bg);
  color: #fff;
}

.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 104px var(--pad-x) 48px;
}

.site-footer__display {
  margin: 0 0 72px;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 860px;
}

.site-footer__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 40px;
}

.site-footer__row h2 {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.site-footer__row a,
.site-footer__row p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

.site-footer__row a:hover {
  color: #b9b9b9;
}

.site-footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.site-footer__base {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 32px;
}

.site-footer__menu h2 {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.site-footer__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}

.site-footer__menu a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.site-footer__menu a:hover {
  color: #b9b9b9;
}

.site-footer__legal {
  margin: 0;
  font-size: 13px;
  color: #6b6b6b;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1140px) {
  .rails {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --band-y: 88px;
    --pad-x: 28px;
  }

  .display {
    font-size: 54px;
  }

  .section-title {
    font-size: 42px;
  }

  .about,
  .breadth {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quotes {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about__photo {
    max-width: 320px;
  }

  .resume-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__display {
    font-size: 44px;
  }

  /* below this the three awards wrap into a ragged grid - stack them */
  .awards {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .awards__items {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  :root {
    --band-y: 72px;
    --pad-x: 20px;
  }

  .navbar {
    top: 12px;
  }

  .navbar__inner {
    justify-content: center;
  }

  .navpill {
    height: 50px;
    padding: 6px 6px 6px 8px;
    gap: 2px;
  }

  .navpill__name,
  .navpill__sep {
    display: none;
  }

  .navpill__brand {
    padding-right: 4px;
  }

  .navlink {
    padding: 7px 9px;
    font-size: 12px;
  }

  .btn--sm {
    padding: 8px 12px;
    font-size: 12px;
  }

  .band--hero {
    padding: 116px 0 72px;
  }

  .band--page {
    padding: 104px 0 var(--band-y);
  }

  .display {
    font-size: 40px;
  }

  /* the desktop line breaks orphan a word at this width - let them reflow */
  .display br,
  .section-title br {
    display: none;
  }

  .section-title,
  .breadth .section-title {
    font-size: 34px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }

  .logo-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .logo-strip__logos {
    flex: none;
    width: 100%;
    gap: 10px 22px;
    justify-content: flex-start;
  }

  .logo-strip__mark {
    font-size: 16px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .work-card__panel {
    aspect-ratio: 4 / 3;
    padding: 18px 18px 0;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stat + .stat {
    padding-left: 0;
    padding-top: 28px;
    border-left: none;
    border-top: 1px solid var(--rule);
  }

  .stat__figure {
    font-size: 40px;
  }

  .about__heading {
    font-size: 32px;
  }

  .resume-summary {
    padding: 24px;
  }

  .site-footer__inner {
    padding: 64px var(--pad-x) 40px;
  }

  .site-footer__display {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .site-footer__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__base {
    flex-direction: column;
    gap: 20px;
  }
}
