:root {
  --black: #050505;
  --ink: #111111;
  --white: #ffffff;
  --paper: #f7f7f2;
  --muted: #6f7278;
  --pink: #f72a83;
  --yellow: #ffe02f;
  --cyan: #1ea7ff;
  --line: rgba(17, 17, 17, 0.14);
  --dark-line: rgba(255, 255, 255, 0.16);
  --display: "Anton", Impact, sans-serif;
  --marker: "Permanent Marker", "Comic Sans MS", cursive;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: calc(1.55em + 5px);
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 18px clamp(18px, 4vw, 62px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  padding-block: 12px;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: 168px;
  width: clamp(168px, 16vw, 244px);
}

.brand img {
  height: auto;
  width: 100%;
}

.site-nav {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  justify-content: center;
}

.site-nav a,
.header-phone,
.header-cta,
.button {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  background: var(--yellow);
  bottom: -8px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease;
  width: 100%;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: end;
}

.header-phone {
  color: var(--white);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--yellow);
}

.header-cta,
.button {
  align-items: center;
  border: 2px solid transparent;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease;
}

.header-cta,
.button-pink {
  background: var(--pink);
  color: var(--white);
}

.button-outline {
  border-color: var(--yellow);
  color: var(--white);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

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

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 0;
  position: relative;
  width: 44px;
  z-index: 25;
}

.nav-toggle span {
  background: var(--white);
  height: 3px;
  left: 8px;
  position: absolute;
  transition: top 170ms ease, transform 170ms ease;
  width: 28px;
}

.nav-toggle span:first-child {
  top: 15px;
}

.nav-toggle span:last-child {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  min-height: 92vh;
  overflow: hidden;
  padding: 128px clamp(18px, 4vw, 62px) 48px;
  position: relative;
}

.hero::before,
.intro::before,
.testimonial::before {
  background:
    linear-gradient(135deg, transparent 0 36%, rgba(255, 224, 47, 0.45) 36% 38%, transparent 38% 100%),
    radial-gradient(circle at 20% 20%, rgba(30, 167, 255, 0.32), transparent 32%),
    radial-gradient(circle at 78% 86%, rgba(247, 42, 131, 0.36), transparent 36%);
  content: "";
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
}

.hero::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 9px 9px;
  content: "";
  height: 28%;
  opacity: 0.42;
  position: absolute;
  right: 0;
  top: 92px;
  width: 44%;
}

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

.eyebrow {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.testimonial h2 {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: calc(0.9em + 5px);
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(64px, 10vw, 158px);
  max-width: 720px;
}

.intro h2,
.testimonial h2 {
  color: var(--yellow);
}

.hero h1 span {
  color: var(--pink);
}

.hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  margin: 24px 0 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.brand-story-panel {
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(30, 167, 255, 0.16), transparent 36%),
    linear-gradient(315deg, rgba(247, 42, 131, 0.22), transparent 38%),
    var(--white);
  border: 1px solid var(--dark-line);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  position: relative;
  z-index: 1;
}

.brand-story-panel::before {
  background:
    linear-gradient(120deg, transparent 0 60%, rgba(255, 224, 47, 0.86) 60% 63%, transparent 63%),
    radial-gradient(rgba(17, 17, 17, 0.12) 1px, transparent 1px);
  background-size: auto, 10px 10px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.brand-story-panel > * {
  position: relative;
  z-index: 1;
}

.brand-story-panel .eyebrow {
  color: var(--pink);
}

.brand-story-panel h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 86px);
  letter-spacing: 0;
  line-height: calc(0.9em + 5px);
  margin: 0 0 24px;
  max-width: 620px;
  text-transform: uppercase;
}

.brand-story-panel p {
  color: #252525;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 700;
  margin: 0 0 14px;
  max-width: 760px;
}

.brand-story-panel .story-close {
  color: var(--black);
  font-family: var(--marker);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.05;
}

.work-card button h3 {
  display: block;
  font-family: var(--marker);
  letter-spacing: 0;
  line-height: calc(0.92em + 5px);
}

.service-strip {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.service-strip article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
  padding: 30px 22px;
  text-align: center;
}

.service-strip article:nth-child(2n) svg {
  color: var(--pink);
}

.service-strip article:nth-child(3n) svg {
  color: var(--yellow);
}

.service-strip svg {
  color: var(--cyan);
  fill: currentColor;
  height: 44px;
  margin-bottom: 18px;
  width: 44px;
}

.service-strip h2 {
  font-family: var(--display);
  font-size: 25px;
  line-height: 0.94;
  margin: 0;
  text-transform: uppercase;
}

.service-strip p,
.work-card span,
.intro-copy,
.site-footer address {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.brand-story-full {
  background: var(--paper);
  display: grid;
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  padding: clamp(58px, 8vw, 118px) clamp(18px, 4vw, 62px);
}

.story-kicker {
  position: sticky;
  top: 110px;
  align-self: start;
}

.story-kicker h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 112px);
  letter-spacing: 0;
  line-height: calc(0.9em + 5px);
  margin: 0;
  text-transform: uppercase;
}

.story-body {
  border-left: 8px solid var(--yellow);
  display: grid;
  gap: 20px;
  padding-left: clamp(22px, 4vw, 54px);
}

.story-body p {
  color: #242424;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.58;
  margin: 0;
}

.story-more {
  background: var(--black);
  border: 0;
  color: var(--white);
  cursor: pointer;
  font: 900 13px/1 var(--body);
  justify-self: start;
  min-height: 46px;
  padding: 14px 22px;
  text-transform: uppercase;
}

.story-more:hover,
.story-more:focus-visible {
  background: var(--pink);
  outline: 0;
}

.story-hidden {
  display: grid;
  gap: 20px;
}

.story-hidden[hidden] {
  display: none;
}

.story-body .story-emphasis {
  color: var(--black);
  font-family: var(--marker);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.02;
  margin-top: 10px;
}

.intro {
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(280px, 0.86fr) minmax(280px, 1.14fr);
  overflow: hidden;
  padding: clamp(58px, 8vw, 118px) clamp(18px, 4vw, 62px);
  position: relative;
}

.intro-title,
.intro-copy,
.intro-media {
  position: relative;
  z-index: 2;
}

.intro-title {
  align-self: center;
  max-width: 560px;
}

.intro h2 {
  font-size: clamp(48px, 7.2vw, 112px);
  margin-bottom: 30px;
}

.intro-media {
  background:
    linear-gradient(140deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.92)),
    linear-gradient(135deg, #111 0 36%, var(--cyan) 36% 39%, #111 39% 50%, var(--pink) 50% 56%, var(--yellow) 56% 61%, #111 61%);
  border: 1px solid var(--dark-line);
  color: var(--white);
  display: flex;
  flex-direction: column;
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-content: flex-end;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
}

.intro-media h3 {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 96px);
  letter-spacing: 0;
  line-height: calc(0.9em + 5px);
  margin: 0 0 22px;
  max-width: 680px;
  text-transform: uppercase;
}

.intro-media p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  max-width: 560px;
}

.intro-copy {
  align-self: end;
  background: var(--white);
  color: var(--ink);
  margin-right: -1px;
  padding: 34px;
}

.intro-copy p {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 26px;
}

.stats {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 22px;
}

.stats strong {
  color: var(--pink);
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.stats div:nth-child(1) strong {
  color: var(--cyan);
}

.stats div:nth-child(3) strong {
  color: var(--yellow);
}

.stats span {
  color: var(--ink);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work {
  background: var(--paper);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 62px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 720px) 1fr;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(42px, 5.4vw, 84px);
}

.section-heading a {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
}

.work-card {
  background: var(--black);
  color: var(--white);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.work-card button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font: inherit;
  height: 100%;
  min-height: 360px;
  padding: 22px;
  position: relative;
  text-align: left;
  width: 100%;
}

.work-card button:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -8px;
}

.work-card::before {
  background:
    linear-gradient(160deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.84)),
    var(--card-bg);
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
  transition: transform 240ms ease;
}

.work-card:hover::before {
  transform: scale(1.05);
}

.work-card::after {
  background: var(--accent);
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
}

.work-card button span,
.work-card button h3 {
  position: relative;
  z-index: 1;
}

.work-card button span {
  color: var(--white);
  display: block;
  font-size: 12px;
  margin-bottom: 160px;
  text-transform: uppercase;
}

.work-card button h3 {
  color: var(--yellow);
  font-size: 40px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

.apparel {
  --accent: var(--cyan);
  --card-bg: linear-gradient(135deg, #171717, #171717 38%, #1ea7ff 38% 42%, #111 42% 58%, #f72a83 58% 64%, #050505 64%);
}

.signs {
  --accent: var(--pink);
  --card-bg: linear-gradient(145deg, #101010, #101010 38%, #ffe02f 38% 44%, #f72a83 44% 55%, #1ea7ff 55% 62%, #101010 62%);
}

.wraps {
  --accent: var(--yellow);
  --card-bg: linear-gradient(145deg, #080808, #080808 34%, #1ea7ff 34% 40%, #ffe02f 40% 48%, #f72a83 48% 56%, #101010 56%);
}

.windows {
  --accent: var(--cyan);
  --card-bg: linear-gradient(155deg, #0b0b0b, #0b0b0b 45%, #f72a83 45% 48%, #ffe02f 48% 54%, #151515 54%);
}

.print {
  --accent: var(--pink);
  --card-bg: linear-gradient(145deg, #050505, #050505 35%, #1ea7ff 35% 40%, #f72a83 40% 51%, #ffe02f 51% 58%, #050505 58%);
}

.product-modal {
  align-items: center;
  display: none;
  inset: 0;
  justify-content: center;
  padding: clamp(18px, 4vw, 54px);
  position: fixed;
  z-index: 50;
}

.product-modal.is-open {
  display: flex;
}

.product-modal-backdrop {
  background: rgba(0, 0, 0, 0.78);
  inset: 0;
  position: absolute;
}

.product-carousel {
  background: var(--black);
  border: 1px solid var(--dark-line);
  box-shadow: 16px 16px 0 var(--pink);
  color: var(--white);
  max-width: min(980px, 100%);
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.carousel-close {
  align-items: center;
  background: var(--white);
  border: 0;
  color: var(--black);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--display);
  font-size: 34px;
  height: 48px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 48px;
  z-index: 3;
}

.carousel-viewport {
  min-height: 520px;
  position: relative;
}

.carousel-slide {
  background:
    linear-gradient(160deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.82)),
    var(--card-bg);
  background-position: center;
  background-size: cover;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: clamp(34px, 5vw, 72px);
}

.carousel-slide.is-active {
  display: flex;
}

.carousel-slide span {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.carousel-slide h2 {
  color: var(--yellow);
  font-family: var(--marker);
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: calc(0.9em + 5px);
  margin: 0 0 22px;
  max-width: 760px;
  text-transform: uppercase;
}

.carousel-slide p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 800;
  margin: 0;
  max-width: 660px;
}

.carousel-slide img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.carousel-slide.print {
  background: var(--black);
  padding: 0;
}

.carousel-controls {
  align-items: center;
  border-top: 1px solid var(--dark-line);
  display: grid;
  grid-template-columns: 64px 1fr 64px;
}

.carousel-controls button {
  background: var(--black);
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 34px;
  min-height: 64px;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible,
.carousel-close:hover,
.carousel-close:focus-visible {
  background: var(--yellow);
  color: var(--black);
  outline: 0;
}

.carousel-count {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.testimonial {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: clamp(64px, 9vw, 130px) clamp(18px, 4vw, 62px);
  position: relative;
  text-align: center;
}

.testimonial p,
.footer-line {
  color: var(--white);
  font-family: var(--marker);
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 1;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.testimonial h2 {
  font-size: clamp(70px, 12vw, 180px);
  position: relative;
  z-index: 1;
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(30, 167, 255, 0.16), transparent 38%),
    linear-gradient(315deg, rgba(247, 42, 131, 0.22), transparent 42%),
    var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  padding: clamp(58px, 8vw, 118px) clamp(18px, 4vw, 62px);
  position: relative;
}

.quote-section::before {
  background:
    linear-gradient(118deg, transparent 0 58%, rgba(255, 224, 47, 0.8) 58% 61%, transparent 61%),
    radial-gradient(rgba(17, 17, 17, 0.1) 1px, transparent 1px);
  background-size: auto, 10px 10px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.quote-copy,
.quote-form {
  position: relative;
  z-index: 1;
}

.quote-copy h2 {
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 126px);
  letter-spacing: 0;
  line-height: calc(0.9em + 5px);
  margin: 0 0 22px;
  text-transform: uppercase;
}

.quote-copy p {
  color: #252525;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 800;
  margin: 0;
  max-width: 520px;
}

.quote-form {
  background: var(--black);
  border: 1px solid var(--dark-line);
  box-shadow: 14px 14px 0 var(--yellow);
  color: var(--white);
  padding: clamp(24px, 4vw, 44px);
}

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

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select {
  appearance: none;
  background: #ffffff;
  border: 2px solid transparent;
  color: var(--ink);
  font: 800 16px/1.2 var(--body);
  min-height: 52px;
  padding: 14px 14px;
  width: 100%;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(30, 167, 255, 0.24);
}

.human-check {
  margin-top: 18px;
  max-width: 300px;
}

.form-note {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
  min-height: 22px;
}

.quote-form .button {
  border: 0;
  width: 100%;
}

.site-footer {
  align-items: center;
  background: var(--black);
  border-top: 1px solid var(--dark-line);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto auto;
  padding: 32px clamp(18px, 4vw, 62px);
}

.footer-line {
  color: var(--yellow);
  font-size: clamp(24px, 3vw, 42px);
  margin-bottom: 20px;
}

.footer-brand {
  min-width: 0;
  width: clamp(190px, 20vw, 280px);
}

.site-footer address {
  display: grid;
  font-style: normal;
  gap: 10px;
}

.site-footer address a,
.site-footer address span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    align-content: center;
    background: var(--black);
    display: grid;
    font-size: 22px;
    inset: 0;
    justify-items: center;
    opacity: 0;
    padding: 110px 24px 40px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

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

  .header-actions {
    display: none;
  }

  .hero,
  .intro,
  .brand-story-full,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .brand-story-panel {
    min-height: 430px;
  }

  .service-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-kicker {
    position: static;
  }

  .intro-media {
    grid-column: auto;
    grid-row: auto;
    min-height: 380px;
  }

  .section-heading,
  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .brand {
    min-width: 0;
    width: 156px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(56px, 19vw, 90px);
  }

  .brand-story-panel {
    min-height: 320px;
    padding: 24px;
  }

  .brand-story-panel h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

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

  .service-strip,
  .stats,
  .work-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .story-body {
    border-left: 0;
    border-top: 8px solid var(--yellow);
    padding-left: 0;
    padding-top: 24px;
  }

  .service-strip article {
    min-height: 0;
  }

  .intro-copy {
    padding: 24px;
  }

  .work-card {
    min-height: 300px;
  }

  .work-card button {
    min-height: 300px;
  }

  .product-modal {
    padding: 14px;
  }

  .product-carousel {
    box-shadow: 8px 8px 0 var(--pink);
  }

  .carousel-viewport,
  .carousel-slide {
    min-height: 480px;
  }

  .carousel-slide {
    padding: 28px;
  }

  .carousel-close {
    height: 42px;
    right: 12px;
    top: 12px;
    width: 42px;
  }
}
