:root {
  --blue: #bcd4ef;
  --blue-strong: #77a6d6;
  --red: #7b1518;
  --red-2: #a3191d;
  --cream: #f4eee4;
  --paper: #fff9ef;
  --ink: #160f0d;
  --muted: rgba(22, 15, 13, 0.66);
  --line: rgba(22, 15, 13, 0.16);
  --white: #fffdf8;
  --sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Archivo Black", Impact, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
}

body::selection {
  background: var(--red);
  color: var(--cream);
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

.hoof-layer {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  overflow: hidden;
}

.hoof-print {
  position: fixed;
  left: 0;
  top: 0;
  width: 1.45rem;
  height: 1.45rem;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--hoof-rotate, 0deg)) scale(0.8);
  animation: hoof-fade 900ms ease-out forwards;
}

.hoof-print::before,
.hoof-print::after {
  content: "";
  position: absolute;
  top: 0.18rem;
  width: 0.42rem;
  height: 0.88rem;
  border-radius: 999px 999px 0.2rem 0.2rem;
  background: rgba(123, 21, 24, 0.34);
}

.hoof-print::before {
  left: 0.28rem;
  transform: rotate(-12deg);
}

.hoof-print::after {
  right: 0.28rem;
  transform: rotate(12deg);
}

@keyframes hoof-fade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--hoof-rotate, 0deg)) scale(0.65);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--hoof-rotate, 0deg)) scale(1.08);
  }
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 5.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(22, 15, 13, 0.14);
  background: rgba(244, 238, 228, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: 0;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3.8rem);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--red);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.1rem;
  background: var(--red);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.52fr);
  gap: 1.5rem;
  padding: 8rem clamp(1rem, 3vw, 2.5rem) 6.5rem;
  background: var(--blue);
  overflow: hidden;
}

.hero::before {
  content: "DOLLY";
  position: absolute;
  right: -0.08em;
  bottom: -0.24em;
  color: rgba(22, 15, 13, 0.055);
  font-family: var(--display);
  font-size: 31vw;
  line-height: 0.8;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11.7ch;
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: clamp(4.2rem, 9.2vw, 10.6rem);
  line-height: 0.84;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h1 span {
  display: inline;
  color: var(--red);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: none;
}

h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.4vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 43rem;
  color: rgba(22, 15, 13, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1.25rem;
  border: 2px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

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

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero-wall {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: 38rem;
}

.feed-card {
  position: absolute;
  width: min(19rem, 34vw);
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(var(--r));
}

.feed-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.feed-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.creator-card {
  --r: 4deg;
  right: 0;
  top: 0;
  background: var(--red);
  color: var(--cream);
}

.edit-card {
  --r: -7deg;
  left: -1.2rem;
  top: 8rem;
  background: var(--paper);
}

.product-card {
  --r: 7deg;
  right: 3rem;
  bottom: 0;
  background: var(--blue-strong);
}

.creator-face {
  position: relative;
  height: 18rem;
  display: grid;
  place-items: center;
}

.mini-video {
  position: relative;
  height: 18rem;
  overflow: hidden;
  border: 2px solid currentColor;
}

.mini-video::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 44% 32%, var(--cream), transparent 13%),
    radial-gradient(circle at 62% 58%, var(--blue), transparent 18%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(22, 15, 13, 0.16));
  animation: video-pan 4.5s ease-in-out infinite alternate;
}

.mini-video i {
  position: absolute;
  display: block;
  left: 1rem;
  right: 1rem;
  height: 0.8rem;
  background: currentColor;
  animation: caption-pop 3s ease-in-out infinite;
}

.mini-video i:nth-child(1) { bottom: 4rem; width: 78%; }
.mini-video i:nth-child(2) { bottom: 2.8rem; width: 55%; animation-delay: 0.18s; }
.mini-video i:nth-child(3) { bottom: 1.6rem; width: 68%; animation-delay: 0.36s; }

@keyframes video-pan {
  to { transform: translate3d(-7%, 5%, 0) scale(1.05); }
}

@keyframes caption-pop {
  0%, 22%, 100% { transform: translateY(0); opacity: 0.58; }
  32%, 68% { transform: translateY(-0.18rem); opacity: 1; }
}

.creator-face::before {
  content: "";
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--cream);
  box-shadow:
    -3rem 3.6rem 0 -1.2rem rgba(244, 238, 228, 0.72),
    3.2rem 3rem 0 -1.3rem rgba(188, 212, 239, 0.84);
}

.creator-face i {
  position: absolute;
  display: block;
  background: var(--ink);
}

.creator-face i:nth-child(1) {
  width: 7rem;
  height: 2.4rem;
  top: 4.2rem;
  border-radius: 999px 999px 0 0;
}

.creator-face i:nth-child(2),
.creator-face i:nth-child(3) {
  width: 1rem;
  height: 1rem;
  top: 8.2rem;
  border-radius: 50%;
}

.creator-face i:nth-child(2) { left: 5.9rem; }
.creator-face i:nth-child(3) { right: 5.9rem; }

.timeline {
  display: grid;
  gap: 0.85rem;
  margin-block: 4rem;
}

.timeline i {
  display: block;
  height: 1.7rem;
  border: 2px solid var(--ink);
  background: var(--blue);
}

.timeline i:nth-child(2) { width: 82%; background: var(--red); }
.timeline i:nth-child(3) { width: 64%; }
.timeline i:nth-child(4) { width: 92%; background: var(--cream); }
.timeline i:nth-child(5) { width: 48%; background: var(--red); }

.product-shot {
  position: relative;
  height: 18rem;
}

.product-shot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 8.2rem;
  height: 13rem;
  border: 2px solid var(--ink);
  border-radius: 4rem 4rem 0.6rem 0.6rem;
  background:
    linear-gradient(var(--cream), var(--cream)) center 28% / 58% 0.55rem no-repeat,
    var(--red);
  transform: translate(-50%, -50%) rotate(-8deg);
  box-shadow: 10px 10px 0 var(--ink);
}

.product-shot::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  bottom: 1.2rem;
  width: 5.4rem;
  height: 5.4rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
}

.proof-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  width: max-content;
  min-width: 100%;
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  animation: marquee 28s linear infinite;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 4rem;
  padding: 0 2rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 2rem);
  white-space: nowrap;
  text-transform: uppercase;
}

.proof-strip span::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 2rem;
  background: var(--red);
  border-radius: 50%;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 3vw, 2.5rem);
  border-bottom: 2px solid var(--ink);
}

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

.belief-copy {
  align-self: end;
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.belief-copy p {
  margin-bottom: 0;
}

.work,
.receipts,
.brief {
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 3vw, 2.5rem);
}

.work {
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}

.section-title {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-title h2 {
  max-width: 11ch;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.case-card {
  min-height: 34rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--ink);
  background: var(--blue);
}

.case-card.hero-case {
  grid-column: 1 / -1;
  min-height: 42rem;
}

.case-card.red {
  grid-template-columns: 1fr;
  background: var(--red);
  color: var(--cream);
}

.case-card.paper {
  grid-template-columns: 1fr;
  background: var(--paper);
}

.case-image {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border: 2px solid currentColor;
  background: var(--paper);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.03);
  transform: scale(1.01);
}

.case-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(22, 15, 13, 0.2)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 7px);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.case-copy h3 {
  max-width: 16ch;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.15rem, 4.4vw, 5.3rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.case-copy p {
  max-width: 38rem;
  margin: 0;
  color: currentColor;
  font-weight: 800;
  line-height: 1.35;
}

.video-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  padding: 0.55rem 0.72rem;
  border: 2px solid currentColor;
  background: rgba(244, 238, 228, 0.88);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-preview {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 2;
  height: 4.7rem;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.55rem;
  border: 2px solid currentColor;
  background: rgba(22, 15, 13, 0.72);
}

.video-preview i {
  display: block;
  background: var(--cream);
  animation: video-bar 1.6s ease-in-out infinite alternate;
}

.video-preview i:nth-child(1) { height: 42%; }
.video-preview i:nth-child(2) { height: 78%; animation-delay: 0.2s; background: var(--blue); }
.video-preview i:nth-child(3) { height: 58%; animation-delay: 0.4s; }

@keyframes video-bar {
  to { height: 92%; }
}

.label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 2rem;
  padding: 0.45rem 0.65rem;
  border: 2px solid currentColor;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asset-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  height: 22rem;
  margin: 1.5rem 0;
}

.asset-board i {
  display: block;
  border: 2px solid var(--ink);
  background:
    radial-gradient(circle at 50% 28%, var(--red), transparent 16%),
    linear-gradient(160deg, var(--paper), var(--blue-strong));
}

.asset-board i:nth-child(2) {
  margin-top: 3rem;
  background:
    linear-gradient(var(--ink), var(--ink)) center 78% / 55% 0.35rem no-repeat,
    var(--red);
}

.asset-board i:nth-child(3) {
  margin-top: 1rem;
  background: var(--paper);
}

.asset-board i:nth-child(4) {
  margin-top: 5rem;
  background:
    radial-gradient(circle at 50% 45%, var(--cream), transparent 22%),
    var(--red);
}

.caption-stack {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.2rem;
  border: 2px solid currentColor;
}

.caption-stack strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-style: italic;
  line-height: 0.9;
}

.caption-stack span {
  font-weight: 900;
  text-transform: uppercase;
}

.thread-card {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.thread-card span {
  display: block;
  height: 1.2rem;
  background: var(--ink);
}

.thread-card span:nth-child(2) {
  width: 78%;
  background: var(--red);
}

.thread-card span:nth-child(3) {
  width: 54%;
  background: var(--blue-strong);
}

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

.service-list {
  display: grid;
  border-top: 2px solid var(--ink);
}

.service-list article {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 2px solid var(--ink);
}

.service-list span {
  font-family: var(--display);
  color: var(--red);
}

.service-list p {
  grid-column: 2;
  margin-bottom: 0;
  color: rgba(22, 15, 13, 0.72);
  font-weight: 700;
  line-height: 1.45;
}

.system {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 1.22fr);
  gap: 1rem;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 3vw, 2.5rem);
  background: var(--ink);
  color: var(--cream);
}

.system-copy {
  align-self: center;
}

.system-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.system-copy .kicker {
  color: var(--blue);
}

.system-copy p:not(.kicker) {
  max-width: 34rem;
  color: rgba(244, 238, 228, 0.72);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
}

.system-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.system-board div {
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 2px solid rgba(244, 238, 228, 0.9);
}

.system-board strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
}

.system-board span {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.receipts {
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

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

.receipt-grid article {
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 2px solid var(--ink);
  background: var(--cream);
}

.receipt-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.brief {
  background: var(--red);
  color: var(--cream);
}

.brief-card {
  min-height: 36rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 2px solid var(--cream);
}

.brief-card img {
  width: 5.5rem;
  height: 5.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--paper);
}

.brief-card .kicker {
  color: var(--blue);
}

.brief-card h2 {
  max-width: 12ch;
}

.brief-card p:not(.kicker) {
  max-width: 44rem;
  color: rgba(244, 238, 228, 0.78);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
}

.brief-card .button.primary {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--red);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1rem, 3vw, 2.5rem);
  background: var(--ink);
  color: rgba(244, 238, 228, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.reveal-ready [data-reveal].is-visible,
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hoof-print {
    display: none;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }

  .hero-wall {
    min-height: 34rem;
  }

  .feed-card {
    width: min(18rem, 46vw);
  }

  .section-grid,
  .system {
    grid-template-columns: 1fr;
  }

  .case-grid,
  .receipt-grid {
    grid-template-columns: 1fr;
  }

  .case-card,
  .case-card.hero-case {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 4.35rem;
    grid-template-columns: auto 1fr;
  }

  nav {
    display: none;
  }

  .brand img {
    width: 2.55rem;
    height: 2.55rem;
  }

  .header-cta {
    justify-self: end;
    min-height: 2.7rem;
    padding: 0 0.8rem;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 6.3rem;
  }

  h1 {
    max-width: 8.7ch;
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

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

  .hero-wall {
    min-height: 48rem;
  }

  .feed-card {
    width: min(17rem, 86vw);
    min-height: 24rem;
  }

  .creator-card {
    right: 0.2rem;
  }

  .edit-card {
    left: 0;
    top: 12rem;
  }

  .product-card {
    right: 0.2rem;
    bottom: 0.5rem;
  }

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

  .case-card {
    min-height: 28rem;
  }

  .case-image {
    min-height: 25rem;
  }

  .case-copy h3 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .hoof-layer {
    display: none;
  }

  .asset-board {
    height: 16rem;
  }

  .service-list article {
    grid-template-columns: 1fr;
  }

  .service-list p {
    grid-column: auto;
  }

  .system-board,
  .receipt-grid {
    grid-template-columns: 1fr;
  }

  footer {
    display: grid;
  }
}
