:root {
  --terracotta: #d0aca4;
  --fuchsia: #e41b93;
  --grey-1: #26201f;
  --ink: #26201f;
  --paper: #fff9f7;
  --muted: rgba(38, 32, 31, 0.68);
  --header-height: 132px;
  --max: 1152px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: white;
  font-family: "Courier Prime", "Courier New", monospace;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 40px);
  transition: transform 420ms ease, background 300ms ease, box-shadow 300ms ease;
}

.site-header.is-hidden {
  transform: translateY(-115%);
}

.site-header.is-compact {
  min-height: 92px;
  background: rgba(255, 249, 247, 0.82);
  box-shadow: 0 12px 40px rgba(38, 32, 31, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 7px;
  place-items: center;
  width: 90px;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.brand__mark {
  width: 56px;
  height: 66px;
}

.header-actions,
.language-nav {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: clamp(22px, 4vw, 48px);
}

.language-nav {
  gap: 24px;
  font-family: "Albert Sans", sans-serif;
  font-size: 18px;
}

.language-nav a {
  transition: color 180ms ease, opacity 180ms ease;
}

.language-nav .is-active {
  color: var(--fuchsia);
  font-weight: 700;
}

.language-nav a[aria-disabled="true"] {
  opacity: 0.72;
}

.menu-toggle {
  display: grid;
  width: 72px;
  height: 67px;
  place-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 43px;
  height: 2px;
  background: var(--ink);
  transition: transform 260ms ease, opacity 260ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(42deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-42deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.1vh, 30px);
  overflow: hidden;
  padding: clamp(96px, 13vh, 150px) 24px clamp(54px, 9vh, 96px);
  color: var(--grey-1);
  text-align: center;
  background-color: var(--fuchsia);
  background-image: url("assets/texture-menu-open-top.png"), url("assets/texture-menu-open.png");
  background-position: top center, bottom center;
  background-repeat: no-repeat, repeat-x;
  background-size: min(100%, 1104px) auto, auto 127px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100vh);
  visibility: hidden;
  transition: transform 500ms cubic-bezier(0.77, 0, 0.18, 1), opacity 300ms ease, visibility 0ms linear 500ms;
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition: transform 500ms cubic-bezier(0.77, 0, 0.18, 1), opacity 300ms ease;
}

.site-menu a {
  width: min(100%, 720px);
  color: var(--grey-1);
  font-size: 1.9375rem;
  line-height: 1.16;
}

.site-menu a:hover {
  color: white;
}

.hero {
  position: relative;
  display: grid;
  min-height: 981px;
  place-items: center;
  overflow: hidden;
  padding: 180px 24px 88px;
  isolation: isolate;
  background: var(--terracotta);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__gradient canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero__content {
  position: relative;
  width: min(100%, 860px);
  text-align: center;
  z-index: 1;
}

.hero__quote {
  max-width: 760px;
  margin: 0 auto 112px;
  font-size: clamp(1.55rem, 3.82vw, 3.4375rem);
  line-height: 0.98;
}

.hero__copy {
  max-width: 810px;
  margin: 0 auto 24px;
  color: white;
  font-size: clamp(15px, 1.55vw, 19px);
  font-weight: 700;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button--ghost {
  margin-left: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
}

.panel-over {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  box-shadow: 0 -36px 60px rgba(38, 32, 31, 0.08);
}

.art-section {
  position: relative;
  display: flex;
  height: 1080px;
  min-height: 1080px;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  padding-right: 105px;
  background: var(--ink);
}

.art-section__image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), url("assets/art-therapy-bg.webp");
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), image-set(
    url("assets/art-therapy-bg.avif") type("image/avif"),
    url("assets/art-therapy-bg.webp") type("image/webp")
  );
  background-position: center;
  background-size: 170% auto;
  background-repeat: no-repeat;
  transform: translate3d(var(--art-depth-x, 0), var(--art-depth-y, 0), 0);
  transition: transform 220ms ease-out;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.art-card {
  position: relative;
  z-index: 1;
  display: flex;
  width: 701px;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  padding: 72px 86px 38px;
  background: rgba(255, 255, 255, 0.85);
}

.art-card h2 {
  margin: 0 0 28px;
  font-size: 2.1875rem;
  line-height: 1.08;
}

.contact h2 {
  margin: 0 0 28px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
}

.art-card p,
.art-card li {
  font-size: 1.125rem;
  line-height: 1.45;
}

.framework p,
.team p,
.contact p {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.45;
}

.rule {
  width: 87px;
  height: 2px;
  margin: 18px 0 24px;
  background: var(--ink);
}

.rule--wide {
  width: 100%;
  opacity: 0.45;
}

.art-card blockquote {
  margin: 0;
  color: var(--fuchsia);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.2;
}

.art-card blockquote strong {
  display: block;
  margin-top: 22px;
}

.who {
  position: relative;
  z-index: 2;
  min-height: 680px;
  color: white;
  background: var(--fuchsia);
  overflow: visible;
}

.who__inner {
  display: grid;
  width: min(100% - 48px, var(--max));
  min-height: 680px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: currentColor;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
}

.who__text h2 {
  margin: 0;
  font-size: 2.1875rem;
  line-height: 1.08;
}

.who__separator {
  width: min(100%, 464px);
  height: auto;
  margin: 20px 0 32px;
}

.who__text p:last-child {
  max-width: 530px;
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.who__logo {
  position: relative;
  z-index: 2;
  min-height: 500px;
  pointer-events: none;
}

.who__scribble {
  position: absolute;
  top: calc(50% + 180px);
  left: 50%;
  width: min(100%, 537px);
  opacity: 0;
  transform: translate(-50%, -48%);
  transition: opacity 300ms ease, transform 300ms ease;
}

.who__at {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(48%, 285px);
  opacity: 0;
  transform: translate(-45%, -44%) scale(0.98);
  filter: drop-shadow(0 28px 48px rgba(38, 32, 31, 0.2));
  transition: opacity 300ms ease 300ms, transform 300ms ease 300ms;
}

.who__logo.is-visible .who__scribble {
  opacity: 0.64;
  transform: translate(-50%, -50%);
}

.who__logo.is-visible .who__at {
  opacity: 1;
  transform: translate(-45%, -50%) scale(1);
}

.framework,
.team {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) 0;
}

.framework__grid,
.team__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 8vw, 98px);
  align-items: center;
}

.framework__grid {
  align-items: start;
}

.framework__graphic {
  width: 100%;
  max-width: 528px;
  height: auto;
  margin: 4px 0 42px;
}

.framework__principles ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  color: var(--fuchsia);
  font-size: 1.125rem;
  line-height: 1.35;
  list-style: none;
}

.framework__principles li {
  position: relative;
  padding-left: 24px;
}

.framework__principles li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
}

.framework h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.framework__copy h2 {
  margin: 0 0 38px;
  font-size: 2.1875rem;
}

.framework__copy p {
  max-width: 535px;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.45;
}

.framework__copy .framework__accent {
  margin-top: 30px;
  color: var(--fuchsia);
}

.team {
  display: block;
  padding: 0;
}

.team__separator {
  display: block;
  width: 100%;
  height: auto;
}

.team__inner {
  padding: 64px 0;
}

.team__copy {
  text-align: left;
}

.team__copy h3 {
  margin: 0 0 34px;
  font-size: 2.1875rem;
  line-height: 1.08;
}

.team__copy p {
  max-width: 540px;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.45;
}

.team__copy .team__accent {
  margin-top: 28px;
  color: var(--fuchsia);
}

.team__cta {
  margin-top: 36px;
  text-decoration: none;
}

.team__portrait {
  width: min(100%, 379px);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.team__portrait.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.team__portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.work {
  overflow: hidden;
  padding: 0;
  background: white;
}

.section-heading {
  width: min(100% - 48px, var(--max));
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .eyebrow {
  color: var(--fuchsia);
  font-size: clamp(28px, 4vw, 44px);
  font-style: normal;
}

.section-heading p:last-child {
  max-width: 790px;
  margin: 0 auto;
  line-height: 1.45;
}

.work__intro {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 96px 0 72px;
  background: white;
  text-align: center;
}

.work__intro h3 {
  margin: 0 0 24px;
  color: var(--fuchsia);
  font-size: clamp(2rem, 3vw, 2.625rem);
  font-weight: 400;
  line-height: 1.08;
}

.work__intro p {
  max-width: 836px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.45;
}

.work__intro span {
  color: var(--fuchsia);
}

.work__programs {
  position: relative;
  padding: 72px 0 104px;
  background-image: url("assets/background-programas-section.png");
  background-repeat: repeat;
  background-size: 70px 71px;
}

.work-carousel {
  position: relative;
  width: 100vw;
  margin-left: 0;
  padding-top: 76px;
}

.work-carousel__heading {
  position: absolute;
  top: 0;
  left: max(24px, calc((100vw - var(--max)) / 2));
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  pointer-events: none;
}

.work-carousel__heading img {
  width: 96px;
  height: auto;
  margin-top: 12px;
}

.work-carousel__heading h5 {
  margin: 0;
  color: #26201f;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.work-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2)) 34px max(24px, calc((100vw - var(--max)) / 2));
  scroll-behavior: smooth;
  scroll-padding-left: max(24px, calc((100vw - var(--max)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.work-track::-webkit-scrollbar {
  display: none;
}

.work-card {
  position: relative;
  display: grid;
  flex: 0 0 880px;
  width: 880px;
  height: 546px;
  grid-template-rows: 294px 1fr;
  overflow: hidden;
  border-radius: 37px;
  background: white;
  cursor: pointer;
  scroll-snap-align: start;
}

.work-card > img {
  width: 100%;
  height: 294px;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: transform 520ms ease;
}

.work-card:hover > img,
.work-card:focus-visible > img {
  transform: scale(1.08);
}

.work-card:focus-visible {
  outline: 2px solid var(--fuchsia);
  outline-offset: 6px;
}

.work-card__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-content: start;
  padding: 30px 58px 38px 64px;
}

.work-card strong {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-flex;
  max-width: min(78%, 560px);
  min-height: 74px;
  align-items: center;
  padding: 20px 36px 18px 40px;
  border-radius: 37px 0 28px 0;
  color: white;
  background: var(--fuchsia);
  font-size: clamp(1.25rem, 1.75vw, 1.5rem);
  font-weight: 400;
  line-height: 1.12;
}

.work-card p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.35;
}

.work-card a {
  display: inline-flex;
  align-self: end;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 20px;
  white-space: nowrap;
  color: var(--fuchsia);
  font-weight: 700;
}

.work-card a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.work-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  width: min(100% - 24px, var(--max));
  margin: 0 auto;
  padding-right: 0;
}

.round-control {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--fuchsia);
  border-radius: 50%;
  color: var(--fuchsia);
  background: white;
  cursor: pointer;
  font-size: 2.375rem;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.round-control:hover {
  color: white;
  background: var(--fuchsia);
  transform: translateY(-2px);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 32px;
}

.dots button {
  width: 29px;
  height: 10px;
  border: 0;
  border-radius: 2px;
  background: var(--ink);
}

.dots button.is-active {
  width: 73px;
  background: var(--fuchsia);
}

[data-work-dots] {
  width: min(100% - 48px, var(--max));
  margin: -6px auto 0;
}

.voices {
  padding: 82px 0;
  overflow: hidden;
}

.voices__title {
  width: min(100% - 48px, var(--max));
  margin: 0 auto 42px;
  font-size: clamp(25px, 3vw, 33px);
}

.voices__viewport {
  overflow: hidden;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
}

.voices__track {
  display: flex;
  gap: 71px;
  transition: transform 560ms ease;
}

.voice {
  flex: 0 0 min(516px, 78vw);
  margin: 0;
  padding: 30px;
  border-left: 7px solid var(--fuchsia);
  background: white;
}

.voice blockquote {
  color: var(--ink);
  font-size: clamp(25px, 3vw, 30px);
  line-height: 1.35;
}

.voice figcaption {
  margin-top: 24px;
  color: var(--muted);
  font-family: "Albert Sans", sans-serif;
  font-size: 14px;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.contact__scribble {
  position: absolute;
  left: -86px;
  top: 40px;
  width: 430px;
  opacity: 0.32;
}

.contact__copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact__copy .eyebrow {
  color: var(--fuchsia);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.contact-form,
.newsletter {
  display: grid;
  gap: 32px;
}

.contact-form label,
.newsletter label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Albert Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  color: white;
  background: transparent;
  padding: 12px 0 14px;
  outline: 0;
  font-family: "Courier Prime", monospace;
  font-size: 16px;
  text-transform: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--fuchsia);
}

.form-note {
  margin: -18px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Albert Sans", sans-serif;
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 0.72fr 0.42fr;
  gap: 42px;
  padding: 70px clamp(24px, 4vw, 40px);
  background: var(--terracotta) url("assets/pattern-footer.png");
  background-size: 104px 52px;
}

.footer-brand {
  display: flex;
  gap: 26px;
  align-items: center;
}

.footer-brand img {
  width: 72px;
}

.newsletter {
  gap: 17px;
}

.newsletter label {
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.newsletter strong {
  font-size: 18px;
}

.newsletter span {
  font-size: 14px;
  line-height: 1.25;
}

.newsletter input {
  height: 66px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  padding: 0 28px;
}

.footer-nav {
  display: grid;
  align-content: center;
  gap: 8px;
  border-left: 1px solid var(--fuchsia);
  padding-left: 18px;
  font-weight: 700;
  font-style: italic;
}

.social {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.social p {
  flex: 0 0 100%;
  margin: 0;
  font-style: italic;
}

.social img {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 740ms ease, transform 740ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  :root {
    --header-height: 104px;
  }

  .art-section,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .art-section {
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding-right: 0;
  }

  .art-section__image {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 460px;
    background-size: cover;
    transform: none;
  }

  .art-card {
    width: 100%;
    padding: clamp(48px, 7vw, 86px);
  }

  .who__inner,
  .framework__grid,
  .team__inner {
    grid-template-columns: 1fr;
  }

  .who__scribble,
  .who__at {
    top: 50%;
  }

  .round-control {
    width: 54px;
    height: 54px;
    font-size: 34px;
  }

  .work__intro {
    padding: 76px 0 56px;
  }

  .work-carousel {
    width: 100vw;
    margin-left: 0;
  }

  .work-carousel__heading {
    left: 32px;
  }

  .work-track {
    padding-right: 32px;
    padding-left: 32px;
    scroll-padding-left: 32px;
  }

  .work-card {
    flex-basis: min(880px, calc(100vw - 64px));
    width: min(880px, calc(100vw - 64px));
    height: auto;
    min-height: 546px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 92px;
    padding: 14px 18px;
  }

  .brand {
    width: 66px;
    font-size: 13px;
  }

  .brand__mark {
    width: 40px;
    height: 48px;
  }

  .language-nav {
    gap: 12px;
    font-size: 14px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 31px;
  }

  .hero {
    min-height: 820px;
    padding-top: 132px;
  }

  .hero__quote {
    margin-bottom: 90px;
  }

  .button--ghost {
    margin-top: 10px;
    margin-left: 0;
  }

  .art-card,
  .contact {
    padding: 56px 24px;
  }

  .art-section {
    display: flex;
    flex-direction: column;
  }

  .who__inner {
    width: min(100% - 32px, var(--max));
  }

  .who__logo {
    min-height: 340px;
  }

  .who__at {
    width: min(46%, 190px);
  }

  .framework,
  .team {
    width: min(100% - 32px, var(--max));
  }

  .person {
    grid-template-columns: 1fr;
  }

  .work__intro {
    width: min(100% - 32px, var(--max));
    padding: 64px 0 46px;
  }

  .work__intro p {
    font-size: 1.125rem;
  }

  .work__programs {
    padding: 50px 0 64px;
  }

  .work-carousel {
    width: 100vw;
    margin-left: 0;
    padding-top: 70px;
  }

  .work-carousel__heading {
    left: 20px;
  }

  .work-carousel__heading img {
    width: 72px;
    margin-top: 10px;
  }

  .work-carousel__heading h5 {
    font-size: 1.25rem;
  }

  .work-track {
    gap: 20px;
    padding: 0 20px 34px;
    scroll-padding-left: 20px;
  }

  .work-card {
    flex-basis: calc(100vw - 40px);
    width: calc(100vw - 40px);
    min-height: 0;
    grid-template-rows: auto 1fr;
  }

  .work-card > img {
    height: clamp(220px, 56vw, 294px);
  }

  .work-card__content {
    display: block;
    padding: 24px 22px 30px;
  }

  .work-card strong {
    max-width: calc(100% - 28px);
    min-height: 58px;
    padding: 14px 20px 13px 22px;
    border-radius: 24px 0 22px 0;
    font-size: 1.125rem;
  }

  .work-card p {
    margin: 18px 0 22px;
    font-size: 1rem;
  }

  .work-card a {
    white-space: normal;
  }

  .work-carousel__controls {
    width: calc(100% - 20px);
    margin-top: 0;
  }

  .site-footer {
    gap: 30px;
  }
}
