:root {
  color-scheme: light;
  --bg: #f4f1e8;
  --paper: #fffdf6;
  --paper-strong: #ffffff;
  --ink: #171717;
  --muted: #62615b;
  --line: rgba(23, 23, 23, .14);
  --accent: #ff4f2e;
  --accent-2: #245cff;
  --accent-3: #c6ff3d;
  --accent-4: #ffd84d;
  --shadow: rgba(23, 23, 23, .12);
  --shadow-strong: rgba(23, 23, 23, .22);
  --header-h: 74px;
  --radius: 8px;
  --max: 1180px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101114;
  --paper: #181a20;
  --paper-strong: #20232b;
  --ink: #f4f1e8;
  --muted: #b7b1a2;
  --line: rgba(244, 241, 232, .16);
  --accent: #ff704d;
  --accent-2: #7aa2ff;
  --accent-3: #d5ff63;
  --accent-4: #ffd866;
  --shadow: rgba(0, 0, 0, .28);
  --shadow-strong: rgba(0, 0, 0, .45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, .035) 1px, transparent 1px),
    linear-gradient(rgba(23, 23, 23, .035) 1px, transparent 1px),
    var(--bg);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[data-theme="dark"] body {
  background:
    linear-gradient(90deg, rgba(244, 241, 232, .035) 1px, transparent 1px),
    linear-gradient(rgba(244, 241, 232, .035) 1px, transparent 1px),
    var(--bg);
  background-size: 34px 34px;
}

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

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

button {
  font: inherit;
}

::selection {
  background: var(--accent-3);
  color: #111;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 44px);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  background: var(--accent-3);
  color: #111;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 4px 4px 0 var(--ink);
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand-copy small {
  font-family: var(--mono);
  font-size: .66rem;
  color: var(--muted);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 70%, transparent);
}

.header-nav a,
.theme-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 14px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.header-nav a:hover,
.theme-button:hover {
  border-color: var(--ink);
  background: var(--paper-strong);
}

.theme-button {
  gap: 9px;
  cursor: pointer;
  background: var(--paper);
  border-color: var(--line);
}

.header-nav a.is-active {
  border-color: var(--ink);
  background: var(--accent-3);
  color: #111;
}

.theme-icon {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset -5px -2px 0 var(--accent-4);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 44px) clamp(16px, 5vw, 64px) 54px;
  display: grid;
  align-content: center;
  gap: 28px;
}

.hero-grid {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.label-row span,
.section-label,
.case-type,
.note-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: 6px 9px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 3px 3px 0 var(--ink);
}

.label-row span:nth-child(2) {
  background: var(--accent-4);
  color: #111;
}

.label-row span:nth-child(3) {
  background: var(--accent-2);
  color: #fff;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.4vw, 7.6rem);
  line-height: .86;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  padding: 0 20px;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.whatsapp {
  background: #25d366;
  color: #06140a;
}

.btn.ghost {
  background: var(--paper);
}

.hero-collage {
  position: relative;
  min-height: 560px;
  perspective: 900px;
}

.paper-note,
.cutout,
.stamp,
.proof-ticket {
  position: absolute;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.paper-note {
  top: 5%;
  left: 7%;
  z-index: 6;
  width: 250px;
  padding: 16px;
  transform: rotate(-5deg);
}

.paper-note strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: .98;
}

.cutout {
  overflow: hidden;
  transition: transform .25s ease;
}

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

.cutout figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border: 1px solid var(--ink);
  background: var(--accent-3);
  color: #111;
  padding: 5px 8px;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cutout-coffito {
  right: 5%;
  top: 11%;
  width: 52%;
  height: 330px;
  transform: rotate(4deg);
}

.cutout-qr {
  left: 0;
  bottom: 2%;
  width: 33%;
  height: 270px;
  transform: rotate(7deg);
}

.cutout-croff {
  right: 0;
  bottom: 8%;
  width: 230px;
  height: 230px;
  display: grid;
  place-items: center;
  padding: 24px;
  transform: rotate(-8deg);
}

.cutout-croff img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.stamp {
  display: grid;
  place-items: center;
  height: 52px;
  padding: 0 16px;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
  color: #111;
}

.stamp-top {
  right: 20%;
  top: 0;
  background: var(--accent-3);
  transform: rotate(10deg);
}

.stamp-bottom {
  left: 25%;
  bottom: 23%;
  background: var(--accent-4);
  transform: rotate(-5deg);
}

.ticker {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.ticker-b {
  background: var(--accent-3);
  color: #111;
  transform: rotate(-1deg);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 0;
  padding: 0;
  animation: ticker 86s linear infinite;
  will-change: transform;
}

.ticker-run {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding: 11px 18px 11px 0;
}

.ticker-track.reverse {
  animation-direction: reverse;
  animation-duration: 102s;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker span {
  font-family: var(--mono);
  font-size: .84rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.intro-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--accent-2);
  color: #fff;
  padding: 18px;
  box-shadow: 8px 8px 0 var(--ink);
}

.intro-strip p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 750;
}

.intro-strip a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #fff;
  padding: 0 14px;
  font-weight: 900;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
}

.horizontal-scroll-section {
  width: 100%;
  max-width: none;
  overflow: visible;
  padding-left: 0;
  padding-right: 0;
}

.horizontal-scroll-section .section-heading {
  width: min(calc(100% - 32px), var(--max));
  margin-left: auto;
  margin-right: auto;
}

.horizontal-sticky {
  position: sticky;
  top: calc(var(--header-h) + 14px);
  height: min(68vh, 620px);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.horizontal-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-inline: max(16px, calc((100vw - var(--max)) / 2 + 16px));
  will-change: transform;
}

.horizontal-track.service-grid,
.horizontal-track.case-stack {
  display: flex;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 850px;
  margin-bottom: 30px;
}

.section-heading h2,
.proof-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: .92;
}

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

.service-card,
.process-step {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 20px;
  box-shadow: 6px 6px 0 var(--ink);
}

.service-wide {
  grid-column: span 2;
  background: var(--accent-4);
  color: #111;
}

.horizontal-track .service-card {
  flex: 0 0 clamp(300px, 32vw, 430px);
  min-height: 360px;
}

.horizontal-track .service-wide {
  grid-column: auto;
  flex-basis: clamp(360px, 48vw, 560px);
}

.service-accent {
  background: var(--accent-3);
  color: #111;
}

.service-index,
.process-step span {
  width: max-content;
  border-bottom: 2px solid currentColor;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 950;
}

.service-card h3,
.process-step h3 {
  margin: auto 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: .98;
}

.service-card p,
.service-card strong,
.process-step p {
  margin: 0;
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: .96rem;
}

.service-card strong {
  display: block;
  margin-top: 14px;
  color: currentColor;
}

.proof-wall {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.proof-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.proof-collage {
  position: relative;
  min-height: 520px;
}

.proof-img,
.proof-ticket {
  position: absolute;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
}

.proof-img {
  object-fit: cover;
}

.proof-a {
  right: 6%;
  top: 0;
  width: 38%;
  height: 360px;
  transform: rotate(5deg);
}

.proof-b {
  left: 5%;
  top: 20%;
  width: 55%;
  height: 240px;
  transform: rotate(-4deg);
}

.proof-c {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 205px;
  transform: rotate(-2deg);
}

.proof-ticket {
  left: 10%;
  bottom: 10%;
  z-index: 3;
  width: 240px;
  padding: 18px;
  transform: rotate(3deg);
}

.proof-ticket span {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--accent);
}

.proof-ticket strong {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.case-stack {
  display: grid;
  gap: 16px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(260px, .92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.horizontal-track .case-card {
  flex: 0 0 min(1080px, calc(100vw - 96px));
}

.featured-case {
  background: var(--paper-strong);
}

.case-media {
  position: relative;
  min-height: 360px;
  border-right: 2px solid var(--ink);
  background: var(--paper-strong);
  overflow: hidden;
}

.case-media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-logo {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 96px;
  height: 96px;
  object-fit: contain;
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 10px;
  box-shadow: 5px 5px 0 var(--ink);
}

.logo-media {
  display: grid;
  place-items: center;
  padding: 50px;
  background:
    linear-gradient(135deg, rgba(255, 216, 77, .26), transparent 48%),
    var(--paper-strong);
}

.logo-media > img:first-child {
  width: min(260px, 70%);
  height: auto;
  object-fit: contain;
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.magazine-label {
  position: absolute;
  left: 20px;
  top: 20px;
  border: 1px solid var(--ink);
  background: var(--accent);
  color: #fff;
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.case-body {
  padding: clamp(22px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.case-body h3 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  max-width: 100%;
  font-size: clamp(2rem, 3.25vw, 3.8rem);
  line-height: .93;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.case-body p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.case-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}

.case-pills span {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-strong) 80%, var(--accent-3));
  padding: 7px 10px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-link {
  margin-top: auto;
  max-width: 100%;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  padding: 12px 15px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--accent-3);
  transition: transform .18s ease, box-shadow .18s ease;
}

.case-link:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--accent-3);
}

.case-link-muted {
  background: var(--paper);
  color: var(--muted);
  box-shadow: 4px 4px 0 var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  min-height: 290px;
}

.contact-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 40px 0 90px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: end;
  border: 2px solid var(--ink);
  background: var(--accent-3);
  color: #111;
  padding: clamp(24px, 5vw, 54px);
  box-shadow: 9px 9px 0 var(--ink);
}

.contact-panel p {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 1.05rem;
  color: rgba(17, 17, 17, .74);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: grid;
  gap: 3px;
  border: 2px solid #111;
  background: #fffdf6;
  color: #111;
  padding: 18px;
  box-shadow: 5px 5px 0 #111;
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-link:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 #111;
}

.contact-link span {
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: 1.12rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(16px, 4vw, 44px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: .76rem;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

html.enhanced [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .proof-wall,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 520px;
  }

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

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

  .horizontal-track .case-card {
    flex-basis: min(760px, calc(100vw - 56px));
  }

  .case-media {
    border-right: none;
    border-bottom: 2px solid var(--ink);
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    padding: 10px 12px;
    width: 100vw;
    max-width: 100vw;
  }

  .brand {
    max-width: calc(100vw - 74px);
  }

  .brand-copy small,
  .header-nav {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .theme-label {
    display: none;
  }

  .theme-button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    padding: 0;
  }

  .hero {
    padding: calc(var(--header-h) + 26px) 14px 42px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 8.8vw, 3.2rem);
    line-height: .98;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    max-width: calc(100vw - 32px);
    font-size: .98rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-collage {
    min-height: 410px;
  }

  .paper-note {
    left: 0;
    width: 220px;
    padding: 13px;
  }

  .paper-note strong {
    font-size: 1.28rem;
  }

  .cutout-coffito {
    right: 0;
    top: 25%;
    width: 70%;
    height: 220px;
  }

  .cutout-qr {
    width: 38%;
    height: 210px;
  }

  .cutout-croff {
    width: 150px;
    height: 150px;
    bottom: 8%;
  }

  .stamp {
    height: 42px;
    font-size: .66rem;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .horizontal-scroll-section {
    width: min(calc(100% - 32px), var(--max));
    padding: 64px 0;
  }

  .horizontal-sticky {
    position: static;
    height: auto;
    min-height: 0;
    display: block;
    overflow: visible;
  }

  .horizontal-track {
    width: 100%;
    padding-inline: 0;
    transform: none !important;
  }

  .horizontal-track .service-card,
  .horizontal-track .service-wide {
    flex-basis: auto;
    min-height: 280px;
  }

  .horizontal-track .case-card {
    flex-basis: auto;
    height: auto;
    grid-template-rows: auto;
  }

  .horizontal-track.service-grid,
  .horizontal-track.case-stack {
    display: grid;
    width: 100%;
  }

  .service-grid,
  .case-stack,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-wide {
    grid-column: span 1;
  }

  .proof-collage {
    min-height: 430px;
  }

  .proof-a {
    width: 42%;
    height: 280px;
  }

  .proof-b {
    width: 66%;
    height: 190px;
  }

  .proof-c {
    width: 58%;
    height: 165px;
  }

  .proof-ticket {
    left: 0;
    width: 210px;
  }

  .case-media {
    min-height: 280px;
    height: auto;
  }

  .case-body {
    padding: 18px;
  }

  .case-body h3 {
    font-size: clamp(2.05rem, 11vw, 3.15rem);
  }

  .case-body p {
    font-size: .95rem;
  }

  .case-pills {
    margin: 16px 0 18px;
  }

  .case-link {
    margin-top: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    font-size: .78rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.25rem);
  }

  .label-row span,
  .section-label,
  .case-type,
  .note-kicker {
    font-size: .64rem;
  }

  .contact-panel {
    padding: 20px;
  }
}
