:root {
  --bg: #fcfbf8;
  --surface: #ffffff;
  --surface-soft: #f2f2f0;
  --text: #111111;
  --text-muted: #646464;
  --text-soft: #a6a6a6;
  --line: rgba(17, 17, 17, 0.12);
  --dark: #111111;
  --dark-soft: #1d1d1d;
  --dark-card: #262626;
  --max-width: 1200px;
  --page-gutter: 16px;
  --radius: 14px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
p,
ol {
  margin: 0;
}

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

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

button {
  font: inherit;
}

.page-shell {
  overflow-x: clip;
}

.container {
  width: min(var(--max-width), calc(100vw - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  scroll-margin-top: 92px;
}

.section-light {
  background: var(--bg);
  color: var(--text);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.type-display {
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.type-section {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.type-body {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 768px) {
  .type-body {
    font-size: 10.5px;
  }
}

.eyebrow {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.eyebrow--light {
  color: rgba(17, 17, 17, 0.44);
}

.wordmark {
  font-style: italic;
}

.wordmark--underline {
  position: relative;
  display: inline-block;
}

.wordmark--underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: #000;
  color: #fff;
}

a.button-primary:hover,
.button-light:hover {
  background: #f4f4f2;
}

.button-light {
  background: #fff;
  color: var(--dark);
}

.button-light:hover {
  background: #f4f4f2;
}

.button-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.62);
}

.button-small {
  min-height: 42px;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 15px;
  z-index: 100;
  padding: 0 var(--page-gutter);
}

.site-header__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 10px 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border-radius: 28px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  max-width: min(250px, 42vw);
  overflow: hidden;
}

.brand img {
  display: block;
  width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:not(.button-small) {
  position: relative;
}

.site-nav a:not(.button-small)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: rgba(0, 0, 0, 0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: transparent;
  color: #000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: currentColor;
}

.text-grey {
  color: rgba(255, 255, 255, 0.5);
}

.hero {
  background: var(--dark);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(760px, calc(100vh - 40px));
  max-height: 100vh;
  gap: 0;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 0 6vw 0 clamp(32px, calc((100vw - var(--max-width)) / 2 + 64px), 12vw);
  color: #fff;
}

.hero__copy .eyebrow {
  margin-bottom: 20px;
}

.hero__text {
  max-width: 480px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__media {
  min-height: 100%;
  overflow: hidden;
  margin: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-header {
  max-width: 920px;
}

.section-header > .type-body {
  margin-top: 22px;
  color: var(--text-muted);
}

.section-header--light > .type-section {
  font-size: clamp(32px, 4.5vw, 56px);
}

.section-header--light {
  color: #fff;
}

.section-header--light > .type-body {
  color: rgba(255, 255, 255, 0.72);
}

.section-header--center {
  margin: 0 auto;
  text-align: center;
}

.collection__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.chip {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-pill);
  background: #efefed;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.chip:hover,
.chip.is-active {
  background: #111111;
  color: #fff;
  border-color: #111111;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 28px;
}

.product-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: 1 / 0.96;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f5f0 100%);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
}

.product-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: #f0ece5;
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.product-card__body {
  padding: 26px 24px 24px;
}

.product-card__title {
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 15px;
}

.product-card__price {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: lowercase;
}

.trust__subtitle {
  margin-top: 18px;
}

.stars {
  display: inline-block;
  margin-right: 10px;
  letter-spacing: 0.14em;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.trust-card {
  min-height: 210px;
  padding: 24px 22px 20px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.trust-card__number {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 64px;
  line-height: 0.9;
  font-weight: 400;
}

.trust-card__title {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.trust-card .type-body {
  color: rgba(255, 255, 255, 0.8);
}

.locations {
  background: #fff;
  color: var(--text);
}

.locations__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.locations__title {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.50;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #111;
}

.locations__title-wordmark {
  font-style: italic;
}

.locations__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
  width: 100%;
  flex: 1;
  margin-bottom: 20px;
}

.locations__logo img {
  flex: 1;
  max-height: 80px;
  width: 100%;
  object-fit: contain;
  object-position: left;
}

.locations__lede {
  max-width: 520px;
  color: var(--text-muted);
  justify-self: end;
  text-align: right;
  padding-top: 8px;
}

.locations__pin {
  display: inline-flex;
  width: 0.9em;
  height: 0.9em;
  margin: 0 0.06em;
  vertical-align: -0.1em;
}

.locations__pin svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.location-card {
  display: grid;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}

.location-card img {
  width: 100%;
  aspect-ratio: 1.18 / 0.92;
  object-fit: cover;
  transition: transform 280ms ease;
  max-height: 400px;
}

.location-card--flagship img {
  aspect-ratio: 1.18 / 0.92;
}

.location-card:hover img {
  transform: scale(1.03);
}

.location-card__overlay {
  margin-top: -78px;
  padding: 22px 28px 24px;
  background: linear-gradient(180deg, rgba(168, 152, 143, 0.76), rgba(120, 109, 104, 0.78));
  backdrop-filter: blur(16px);
}

.location-card__meta {
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.location-card__address {
  margin-top: 4px;
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}

.printing {
  position: relative;
  overflow: hidden;
}

.printing__bg,
.printing__overlay {
  position: absolute;
  inset: 0;
}

.printing__bg {
  background: url("./assets/services-bg.png") right center / cover no-repeat;
}

.printing__overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.97) 0%, rgba(8, 8, 8, 0.93) 34%, rgba(8, 8, 8, 0.78) 54%, rgba(8, 8, 8, 0.22) 100%);
}

.printing__bg-mobile {
  display: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.printing__title-bg-mobile {
  display: none;
  width: 100vw;
  height: auto;
  margin: 0 calc(-50vw + 50%);
  padding: 0;
}

.printing__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 56px;
  min-height: 760px;
  align-items: end;
}

.printing__copy {
  align-self: start;
}

.printing__copy .type-body {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.55;
}

.printing__title {
  margin-top: 10px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.printing__title-main {
  color: #fff;
}

.printing__title-muted {
  color: rgba(255, 255, 255, 0.5);
}

.printing__process {
  width: min(100%, 500px);
  margin-top: 34px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  color: var(--text);
}

.printing__process-title {
  padding: 16px 18px;
  background: rgba(17, 17, 17, 0.78);
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.printing__steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.printing__steps li {
  padding: 18px 18px 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.printing__steps strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
}

.printing__steps .type-body {
  margin-top: 0;
  color: rgba(17, 17, 17, 0.86);
  font-size: 15px;
  line-height: 1.5;
}

.printing__services {
  display: grid;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  align-self: end;
  padding-bottom: 8px;
}

.printing-service {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.printing-service__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.printing-service__icon img {
  width: auto;
  height: auto;
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  opacity: 0.72;
}

.printing-service h3 {
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.printing-service p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.52;
}

.carousel {
  position: relative;
  margin-top: 38px;
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 2px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  scroll-snap-align: start;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel__arrow--left {
  left: -21px;
}

.carousel__arrow--right {
  right: -21px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.18);
  cursor: pointer;
}

.carousel__dot.is-active {
  background: rgba(17, 17, 17, 0.72);
}

.cta {
  background: #fff;
}

.cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  min-height: 510px;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.cta__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 56px 56px 64px;
  color: #fff;
}

.cta__copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
  letter-spacing: 0;
  font-size: 20px;
  font-weight: 700;
}

.cta__title {
  margin-top: 18px;
  font-size: clamp(46px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.cta__title-main,
.cta__title-muted {
  display: block;
  font-weight: 800;
}

.cta__title-main {
  color: #fff;
}

.cta__title-muted {
  color: rgba(255, 255, 255, 0.62);
}

.cta__copy .type-body {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.5;
}

.cta__media {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__media img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
}

.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card__title {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.faq__container {
  max-width: 920px;
}

.faq__list {
  margin-top: 34px;
}

.faq-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-item__trigger span:first-child {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.faq-item__icon {
  flex: 0 0 auto;
  transition: transform 200ms ease;
  font-size: 22px;
  line-height: 1;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-item__content {
  padding: 0 0 20px;
}

.faq-item__content .type-body {
  color: var(--text-muted);
}

.contact {
  background: #111;
  color: #fff;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: center;
}

.contact__copy .type-body {
  max-width: 420px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

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

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font: inherit;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 80px 0 26px;
  background: #fff;
  color: var(--text);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer__brand img {
  width: 240px;;
}

.footer__brand .type-body {
  margin-top: 18px;
  max-width: 320px;
  color: var(--text-muted);
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: rgba(17, 17, 17, 0.74);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials .fill-dot {
  fill: currentColor;
  stroke: none;
}

.socials a:nth-child(2) svg,
.socials a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.footer__column h3 {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.footer__column {
  display: grid;
  gap: 12px;
}

.footer__column a {
  color: rgba(17, 17, 17, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.footer__bottom p {
  color: rgba(17, 17, 17, 0.56);
  font-size: 13px;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .type-display {
    font-size: 38px;
  }

  .type-section {
    font-size: 34px;
  }

  .type-body {
    font-size: 19.6px;
  }

  .site-header__inner {
    min-height: 54px;
    border-radius: 22px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: var(--page-gutter);
    right: var(--page-gutter);
    top: calc(100% + 8px);
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(17, 17, 17, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    color: #fff;
  }

  .site-nav a {
    color: #fff;
    padding: 12px 0;
  }

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

  .site-nav .button-small {
    width: 100%;
  }

  .site-nav .button-primary {
    background: #fff;
    color: #000;
  }

  .hero__grid,
  .locations__intro,
  .locations__grid,
  .printing__layout,
  .features__grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    order: 1;
    padding: 60px 16px 36px;
  }

  .hero__media {
    order: 2;
  }

  .hero__media img {
    aspect-ratio: 4 / 3;
  }

  .product-grid,
  .printing__services,
  .contact-form__row {
    grid-template-columns: 1fr;
  }

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

  .locations__lede {
    justify-self: start;
    text-align: left;
    padding-top: 0;
    margin-top: 12px;
  }

  .locations__title {
    font-size: 38px;
    line-height: 1.12;
  }

  .locations__grid {
    margin-top: 32px;
    gap: 18px;
  }

  .location-card {
    border-radius: 22px;
  }

  .location-card__overlay {
    margin-top: -70px;
    padding: 18px 20px 20px;
  }

  .printing__layout {
    min-height: 0;
    align-items: start;
  }

  .printing {
    background: #000;
    padding-top: 34px;
    padding-bottom: 32px;
  }

  .printing__bg,
  .printing__overlay {
    display: none;
  }

  .printing__bg-mobile {
    display: block;
    margin: 0 0 32px 0;
    padding: 0;
  }

  .printing__title-bg-mobile {
    display: block;
    margin: 0 calc(-50vw + 50%);
  }

  .printing__title {
    font-size: 30px;
  }

  .printing__process {
    width: 100%;
    margin-top: 28px;
  }

  .printing__steps li {
    padding: 16px;
  }

  .printing__services {
    gap: 22px;
    padding-bottom: 0;
  }

  .cta__panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cta__copy {
    padding: 34px 22px 26px;
  }

  .cta__copy .eyebrow {
    font-size: 16px;
  }

  .cta__title {
    font-size: 30px;
  }

  .cta__media {
    min-height: 280px;
  }

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

  .carousel__item {
    flex-basis: 100%;
  }

  .carousel__arrow {
    width: 38px;
    height: 38px;
  }

  .carousel__arrow--left {
    left: 6px;
  }

  .carousel__arrow--right {
    right: 6px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }

  .hero__grid,
  .locations__intro,
  .printing__layout,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding: 270px min(8vw, 64px) 44px;
  }

  .hero__media img {
    aspect-ratio: 16 / 10;
  }

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

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

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

  .locations__lede {
    justify-self: start;
    text-align: left;
    padding-top: 0;
  }

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

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

  .cta__panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cta__media {
    min-height: 380px;
  }

  .carousel__item {
    flex-basis: calc(50% - 12px);
  }
}

@media (min-width: 1025px) {
  .section {
    padding: 80px 0;
  }
}
