:root {
  color-scheme: light;
  --ink: #121311;
  --muted: #62645f;
  --paper: #f5f5f5;
  --soft: #e5e6e2;
  --line: #c9cbc6;
  --charcoal: #20221f;
  --red: #c14532;
  --olive: #536047;
  --blue: #2f6175;
  --butter: #f1cc63;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(12, 13, 12, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(245, 245, 245, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(12, 13, 12, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 1px;
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 7px;
  background: rgba(10, 11, 10, 0.28);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.site-nav a {
  border-radius: 999px;
  padding: 11px 15px;
  font-size: 15px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
body.nav-open .site-nav a:hover,
body.nav-open .site-nav a:focus-visible {
  background: var(--soft);
}

.site-header.is-scrolled .site-nav,
body.nav-open .site-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.site-nav .nav-cta {
  margin-left: 5px;
  padding-inline: 18px;
  background: var(--red);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #9e2f23;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  background: var(--charcoal);
}

.hero > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(72vw, 960px);
  height: 100%;
  filter: brightness(1.14) contrast(0.96);
  object-fit: cover;
  object-position: center center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 10%, rgba(0, 0, 0, 0.78) 28%, #000 44%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 10%, rgba(0, 0, 0, 0.78) 28%, #000 44%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 12, 1) 0%, rgba(12, 13, 12, 0.88) 34%, rgba(12, 13, 12, 0.34) 68%, rgba(12, 13, 12, 0.04) 100%),
    linear-gradient(0deg, rgba(12, 13, 12, 0.48), rgba(12, 13, 12, 0.02) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, var(--max));
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 112px clamp(18px, 4vw, 36px) 30px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow {
  color: var(--butter);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(52px, 7vw, 94px);
}

h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 68px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #9e2f23;
}

.button-secondary {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.1);
}

.contact .button-secondary {
  background: transparent;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  gap: 1px;
  margin: 28px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.2);
}

.hero-proof div {
  min-height: 82px;
  padding: 16px;
  background: rgba(18, 16, 13, 0.28);
  backdrop-filter: blur(8px);
}

.hero-proof dt {
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 850;
}

.hero-proof dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section-pad {
  padding: clamp(60px, 7vw, 92px) clamp(18px, 4vw, 48px);
}

.section-grid,
.section-header,
.case-stories,
.portfolio-subhead,
.portfolio-grid,
.service-grid,
.steps,
.faq-list,
.contact-inner,
.about {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.76fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
}

.intro {
  background: var(--paper);
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

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

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
}

.outcome {
  min-height: 228px;
  padding: clamp(24px, 3.4vw, 38px);
  background: var(--soft);
}

.outcome:nth-child(2) {
  background: #edf0e8;
}

.outcome:nth-child(3) {
  background: #e8eef2;
}

.outcome span,
.steps span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.outcome p,
.service-card p,
.steps p,
.about-copy p,
.faq p,
.section-header p,
.contact p {
  color: var(--muted);
}

.services {
  background: var(--white);
}

.portfolio {
  background: var(--paper);
  color: var(--ink);
}

.portfolio .section-header p:last-child,
.portfolio-copy p,
.case-copy p,
.case-copy li {
  color: var(--muted);
}

.case-stories {
  display: grid;
  gap: clamp(40px, 6vw, 68px);
  margin-bottom: clamp(76px, 8vw, 108px);
}

.case-story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.36fr);
  align-items: start;
  gap: clamp(18px, 3vw, 32px);
}

.case-story-reverse {
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.72fr);
}

.case-story-reverse .case-media {
  order: 2;
}

.case-story-reverse .case-copy {
  order: 1;
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 4px 0;
  background: transparent;
}

.case-copy span,
.portfolio-copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.case-copy h3 {
  max-width: 500px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.06;
}

.case-copy p {
  max-width: 520px;
}

.case-copy ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.case-copy li {
  border-top: 1px solid var(--line);
  padding-top: 9px;
  font-size: 14px;
}

.portfolio-subhead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.portfolio-subhead h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 24px;
}

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

.portfolio-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.portfolio-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  background: transparent;
}

.before-after-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.before-after figure {
  min-width: 0;
  margin: 0;
}

.before-after img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
}

.before-after figcaption {
  display: grid;
  gap: 3px;
  padding: 10px 4px 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.before-after figcaption strong {
  font-size: 14px;
  font-weight: 850;
}

.before-after figcaption span {
  color: var(--muted);
}

.portfolio-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.portfolio-copy h3 {
  max-width: 360px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  column-gap: clamp(28px, 6vw, 86px);
  row-gap: 10px;
  align-items: end;
  margin-bottom: 38px;
}

.section-header.narrow {
  display: block;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header .eyebrow {
  grid-column: 1;
  margin: 0 0 -2px;
}

.section-header h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.section-header p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 470px;
  margin: 0 0 8px;
  font-size: 17px;
}

.section-header.narrow h2 {
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
}

.section-header.narrow p:last-child {
  max-width: 620px;
  margin: 0 auto;
}

.portfolio {
  padding-top: clamp(48px, 5.5vw, 70px);
}

.portfolio .section-header {
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  column-gap: clamp(28px, 6vw, 86px);
  row-gap: 10px;
  align-items: end;
  margin-bottom: clamp(34px, 4vw, 48px);
}

.portfolio .section-header .eyebrow {
  grid-column: 1;
  margin: 0 0 -2px;
}

.portfolio .section-header h2 {
  grid-column: 1;
  max-width: 690px;
  margin-bottom: 0;
}

.portfolio .section-header p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 470px;
  margin: 0 0 8px;
}

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
}

.service-card.featured {
  background: var(--charcoal);
  color: var(--white);
}

.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.service-card.compact {
  background: #edf0e8;
}

.service-topline {
  display: flex;
  min-height: 42px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.service-topline span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured .service-topline span {
  color: var(--butter);
}

.service-topline strong {
  font-size: 28px;
  line-height: 1;
}

.service-card ul,
.about-panel ul {
  margin: 10px 0 24px;
  padding-left: 19px;
}

.service-card li,
.about-panel li {
  margin-bottom: 8px;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 850;
}

.featured a {
  color: var(--butter);
}

.process {
  background: var(--soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.steps li {
  min-height: 276px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: stretch;
}

.about-side {
  display: grid;
  gap: 16px;
  align-self: start;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 7 / 10;
  object-fit: cover;
  object-position: center center;
}

.about-panel {
  align-self: start;
  border-top: 4px solid var(--olive);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-panel p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
}

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 850px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 17px;
}

.contact {
  background: var(--charcoal);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.contact h2 {
  max-width: 820px;
}

.contact p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-actions {
  justify-content: flex-start;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  outline: none;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 6px;
    padding: 14px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .section-grid,
  .section-header,
  .case-story,
  .about,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .case-story-reverse .case-media,
  .case-story-reverse .case-copy {
    order: initial;
  }

  .section-header {
    align-items: start;
  }

  .about-side {
    max-width: 430px;
  }

  .section-header .eyebrow {
    margin: 0 0 4px;
  }

  .section-header p:last-child {
    grid-column: auto;
    grid-row: auto;
    max-width: 680px;
    margin: 0;
  }

  .portfolio .section-header {
    grid-template-columns: 1fr;
  }

  .portfolio .section-header .eyebrow {
    margin-top: 0;
  }

  .portfolio .section-header p:last-child {
    grid-column: auto;
    grid-row: auto;
    max-width: 680px;
    margin: 0;
  }

  .outcomes,
  .portfolio-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .hero {
    position: relative;
    display: grid;
    min-height: 128svh;
    overflow: hidden;
  }

  .hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: brightness(1.36) contrast(1.02);
    object-position: 64% 58%;
    opacity: 1;
    transform: scale(1.22);
    transform-origin: 64% 68%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-overlay {
    inset: 0;
    height: auto;
    background:
      linear-gradient(90deg, rgba(12, 13, 12, 0.64) 0%, rgba(12, 13, 12, 0.4) 45%, rgba(12, 13, 12, 0.08) 100%),
      linear-gradient(180deg, rgba(12, 13, 12, 0.36) 0%, rgba(12, 13, 12, 0.02) 30%, rgba(12, 13, 12, 0.16) 46%, rgba(12, 13, 12, 0.78) 62%, rgba(12, 13, 12, 0.92) 100%);
  }

  .hero-content {
    width: 100%;
    justify-content: flex-start;
    padding: clamp(510px, 61svh, 620px) 18px 20px;
    background: transparent;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(36px, 10.4vw, 46px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .button,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .outcomes,
  .portfolio-grid,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
  }

  .hero-proof div {
    min-height: 74px;
    padding: 10px;
  }

  .hero-proof dt {
    font-size: 16px;
  }

  .hero-proof dd {
    font-size: 11px;
    line-height: 1.25;
  }

  .section-pad {
    padding: 56px 18px;
  }

  .portfolio {
    padding-top: 52px;
  }

  .portfolio-subhead {
    align-items: flex-start;
    flex-direction: column;
  }

  .outcomes {
    padding-left: 18px;
    padding-right: 18px;
  }

  .outcome span,
  .steps span {
    margin-bottom: 30px;
  }

  .service-card,
  .portfolio-copy,
  .about-panel {
    padding: 22px;
  }

  .case-copy {
    padding: 30px 2px 0;
  }

  .case-copy span {
    display: block;
    margin-bottom: 18px;
  }

  .portfolio-card > img {
    aspect-ratio: 3 / 4;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .case-media.before-after {
    display: grid;
    gap: 28px;
    margin-bottom: 22px;
    overflow: visible;
  }

  .case-media.before-after figure {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding-bottom: 0;
  }

  .before-after img {
    flex: 0 0 auto;
    height: auto;
    border-radius: 0;
    aspect-ratio: 3 / 3.8;
  }

  .before-after figcaption {
    display: grid;
    flex: 0 0 auto;
    gap: 6px;
    padding: 16px 18px 18px;
    background: var(--white);
    color: var(--ink);
    line-height: 1.35;
  }

  .before-after figcaption strong {
    font-size: 18px;
  }

  .before-after figcaption span {
    display: block;
    font-size: 15px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
