:root {
  --ink: #0a0a09;
  --paper: #f1efe8;
  --paper-deep: #dedbd1;
  --white: #f7f6f1;
  --gold: #bca56b;
  --line: rgba(10, 10, 9, 0.18);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Italiana", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.locked {
  overflow: hidden;
}

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

.skip-link {
  background: var(--paper);
  left: 16px;
  padding: 11px 16px;
  position: fixed;
  top: -60px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 24px 32px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 40;
}

.site-header > * {
  pointer-events: auto;
}

.brand,
.footer-brand {
  font-family: var(--serif);
  letter-spacing: 0.19em;
}

.brand {
  align-items: baseline;
  display: flex;
  font-size: 27px;
  gap: 9px;
  justify-self: center;
}

.brand small,
.footer-brand small {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.text-control {
  align-items: center;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  gap: 8px;
  letter-spacing: 0.17em;
  padding: 8px 0;
  text-transform: uppercase;
}

.menu-button {
  justify-self: start;
}

.menu-mark {
  display: grid;
  gap: 4px;
  width: 17px;
}

.menu-mark i {
  background: currentColor;
  display: block;
  height: 1px;
  transition: width 250ms ease;
  width: 17px;
}

.menu-mark i:last-child {
  width: 10px;
}

.menu-button:hover .menu-mark i:last-child {
  width: 17px;
}

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

.bag-button span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  display: inline-flex;
  height: 21px;
  justify-content: center;
  letter-spacing: 0;
  width: 21px;
}

.lookbook {
  background: var(--ink);
  color: var(--white);
  height: 100svh;
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.lookbook-stage {
  cursor: grab;
  height: 100%;
  outline: none;
  overflow: hidden;
  touch-action: pan-y;
}

.lookbook-stage:active {
  cursor: grabbing;
}

.lookbook-stage:focus-visible {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.lookbook-track {
  align-items: center;
  display: flex;
  gap: clamp(12px, 1.7vw, 28px);
  height: 100%;
  padding: 84px calc(50vw - min(19vw, 310px)) 98px;
  transform: translate3d(0, 0, 0);
  transition: transform 800ms cubic-bezier(0.2, 0.72, 0.2, 1);
  will-change: transform;
}

.lookbook-track.dragging {
  transition: none;
}

.look-card {
  display: block;
  flex: 0 0 clamp(250px, 29vw, 470px);
  height: min(72vh, 760px);
  opacity: 0.42;
  overflow: hidden;
  position: relative;
  transform: scale(0.88);
  transition:
    opacity 700ms ease,
    transform 800ms cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 700ms ease;
  user-select: none;
}

.look-card::after {
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.42));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.look-card img {
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: scale(1.04);
  transition: transform 1000ms cubic-bezier(0.2, 0.72, 0.2, 1);
  width: 100%;
}

.look-card.active {
  filter: saturate(1.02);
  opacity: 1;
  transform: scale(1);
}

.look-card.active img {
  transform: scale(1);
}

.look-number {
  bottom: 18px;
  font-size: 12px;
  left: 18px;
  letter-spacing: 0.16em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.lookbook-scrim {
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.62), transparent 18%, transparent 82%, rgba(10, 10, 9, 0.62)),
    linear-gradient(180deg, rgba(10, 10, 9, 0.5), transparent 19%, transparent 72%, rgba(10, 10, 9, 0.66));
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.orbit-link {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 9, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  height: 112px;
  justify-content: center;
  left: calc(50% + min(12vw, 180px));
  letter-spacing: 0.18em;
  position: absolute;
  text-transform: uppercase;
  top: 49%;
  transform: translate(-50%, -50%);
  transition:
    background 250ms ease,
    color 250ms ease,
    transform 250ms ease;
  width: 112px;
  z-index: 5;
}

.orbit-link b {
  font-size: 17px;
  font-weight: 400;
  margin-top: 7px;
}

.orbit-link:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.07);
}

.lookbook-caption {
  bottom: 98px;
  display: flex;
  font-size: 12px;
  gap: 14px;
  left: 50%;
  letter-spacing: 0.1em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 5;
}

.lookbook-caption strong {
  color: var(--gold);
  font-weight: 500;
}

.lookbook-footer {
  align-items: end;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr minmax(250px, 40vw) 1fr;
  left: 0;
  padding: 0 32px 26px;
  position: absolute;
  right: 0;
  z-index: 5;
}

.drop-label {
  display: grid;
  font-size: 12px;
  gap: 5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drop-label small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.lookbook-progress {
  align-items: center;
  display: grid;
  font-size: 12px;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  letter-spacing: 0.12em;
}

.lookbook-progress div {
  background: rgba(255, 255, 255, 0.22);
  height: 1px;
  position: relative;
}

.lookbook-progress i {
  background: var(--gold);
  display: block;
  height: 1px;
  transform: scaleX(0.077);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.lookbook-controls {
  align-items: center;
  display: flex;
  font-size: 12px;
  gap: 9px;
  justify-self: end;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lookbook-controls > span {
  margin-right: 8px;
}

.lookbook-controls button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  transition: border-color 200ms ease, background 200ms ease;
  width: 32px;
}

.lookbook-controls button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.collection {
  padding: 110px 32px 140px;
}

.collection-head {
  align-items: end;
  display: grid;
  grid-template-columns: 1fr auto;
  margin: 0 auto 58px;
  max-width: 1600px;
}

.micro {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.19em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.micro.dark {
  color: rgba(10, 10, 9, 0.5);
}

.collection h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 6.5vw, 92px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin: 0;
}

.collection-note {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 250px;
}

.collection-toolbar {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  margin: 0 auto 30px;
  max-width: 1600px;
}

.filter {
  background: transparent;
  color: rgba(10, 10, 9, 0.52);
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.13em;
  padding: 14px 0;
  position: relative;
  text-transform: uppercase;
}

.filter span {
  font-size: 12px;
  margin-left: 4px;
  vertical-align: super;
}

.filter::after {
  background: var(--ink);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
  width: 100%;
}

.filter.active {
  color: var(--ink);
}

.filter.active::after {
  transform: scaleX(1);
}

.product-grid {
  display: grid;
  gap: 56px 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1600px;
}

.product-card[hidden] {
  display: none;
}

.product-image {
  background: #d6d2c8;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}

.product-image::before {
  content: "";
  display: block;
  padding-top: 129%;
}

.product-image img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.001);
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
  width: 100%;
}

.product-image-link {
  display: block;
  inset: 0;
  position: absolute;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.badge {
  background: rgba(241, 239, 232, 0.9);
  font-size: 12px;
  left: 11px;
  letter-spacing: 0.12em;
  padding: 7px 9px;
  position: absolute;
  text-transform: uppercase;
  top: 11px;
  z-index: 2;
}

.wishlist {
  align-items: center;
  background: rgba(241, 239, 232, 0.88);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 11px;
  top: 11px;
  width: 34px;
  z-index: 2;
}

.wishlist.saved {
  color: #811e22;
}

.product-meta {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.product-meta h2 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.015em;
  margin: 0 0 6px;
}

.product-meta p,
.product-meta strong {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.product-meta p {
  color: rgba(10, 10, 9, 0.52);
}

.product-meta strong {
  white-space: nowrap;
}

.buy-row {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.sizes {
  display: flex;
  gap: 6px;
}

.sizes button {
  background: transparent;
  border: 1px solid rgba(10, 10, 9, 0.24);
  cursor: pointer;
  font-size: 14px;
  height: 29px;
  transition: background 180ms ease, color 180ms ease;
  width: 34px;
}

.sizes button.selected {
  background: var(--ink);
  color: var(--white);
}

.card-actions {
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr 1fr;
}

.card-actions button {
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.12em;
  min-height: 39px;
  text-transform: uppercase;
}

.buy-now {
  background: var(--gold);
}

.quick-add {
  background: var(--ink);
  color: var(--white);
}

.campaign {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 12px;
  grid-template-columns: 1.55fr 0.7fr;
  padding: 12px;
}

.campaign-primary,
.campaign-secondary {
  min-height: 74vh;
  overflow: hidden;
  position: relative;
}

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

.campaign-primary > span {
  bottom: 18px;
  font-size: 12px;
  left: 18px;
  letter-spacing: 0.17em;
  position: absolute;
  text-transform: uppercase;
}

.campaign-secondary {
  display: grid;
  grid-template-rows: 1fr auto;
}

.campaign-secondary img {
  min-height: 0;
}

.campaign-secondary div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 18px 4px 6px;
}

.campaign-secondary span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.campaign-secondary strong {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
}

.service-strip {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-strip div {
  align-items: center;
  display: flex;
  gap: 18px;
  min-height: 112px;
  padding: 30px 32px;
}

.service-strip div + div {
  border-left: 1px solid var(--line);
}

.service-strip span {
  color: rgba(10, 10, 9, 0.42);
  font-size: 12px;
}

.service-strip strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr minmax(320px, 0.7fr);
  padding: 120px 32px;
}

.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
}

.email-field {
  border-bottom: 1px solid var(--ink);
  display: flex;
}

.email-field input {
  background: transparent;
  border: 0;
  min-width: 0;
  outline: none;
  padding: 16px 0;
  width: 100%;
}

.email-field button {
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.email-field button span {
  color: var(--gold);
  margin-left: 6px;
}

.form-message {
  font-size: 14px;
  margin: 10px 0 0;
  min-height: 16px;
}

footer {
  background: var(--ink);
  color: var(--white);
  padding: 72px 32px 26px;
}

.footer-brand {
  align-items: baseline;
  display: flex;
  font-size: clamp(64px, 13vw, 180px);
  gap: 14px;
  line-height: 0.86;
}

.footer-links {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin-top: 70px;
  padding-bottom: 28px;
}

.footer-links a,
.footer-bottom {
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
}

.menu-panel {
  background: var(--ink);
  color: var(--white);
  height: 100%;
  left: 0;
  max-width: 560px;
  padding: 30px;
  position: fixed;
  top: 0;
  transform: translateX(-101%);
  transition: transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1);
  width: min(90vw, 560px);
  z-index: 110;
}

.menu-panel.open {
  transform: translateX(0);
}

.menu-close,
.cart-close {
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
}

.menu-close {
  color: var(--white);
  position: absolute;
  right: 26px;
  top: 20px;
}

.menu-panel-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.menu-panel-inner > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  padding: 17px 0;
}

.menu-panel-inner > a span {
  color: var(--gold);
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  margin-right: 24px;
  width: 18px;
}

.menu-meta {
  bottom: 30px;
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  left: 30px;
  letter-spacing: 0.1em;
  position: absolute;
  right: 30px;
  text-transform: uppercase;
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
  inset: 0;
  position: fixed;
  z-index: 90;
}

.cart-drawer {
  background: var(--paper);
  bottom: 0;
  max-width: 500px;
  padding: 28px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(101%);
  transition: transform 550ms cubic-bezier(0.2, 0.72, 0.2, 1);
  width: min(94vw, 500px);
  z-index: 100;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.cart-head h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin: 0;
}

.cart-items {
  max-height: calc(100vh - 300px);
  overflow: auto;
}

.cart-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 74px 1fr auto;
  padding: 16px 0;
}

.cart-item img {
  height: 94px;
  object-fit: cover;
  width: 74px;
}

.cart-item h3,
.cart-item p,
.cart-item strong {
  font-size: 14px;
  margin: 0 0 6px;
}

.cart-item h3 {
  font-weight: 500;
}

.cart-item p {
  color: rgba(10, 10, 9, 0.5);
}

.remove-item {
  align-self: start;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  text-transform: uppercase;
}

.cart-empty {
  padding: 110px 20px 40px;
  text-align: center;
}

.cart-empty > span {
  color: var(--gold);
  font-size: 34px;
}

.cart-empty h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin: 20px 0 8px;
}

.cart-empty p {
  color: rgba(10, 10, 9, 0.5);
  font-size: 14px;
}

.continue-shopping {
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-top: 20px;
  padding: 14px 20px;
  text-transform: uppercase;
}

.cart-footer {
  bottom: 24px;
  left: 28px;
  position: absolute;
  right: 28px;
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
}

.cart-footer p,
.cart-footer small {
  color: rgba(10, 10, 9, 0.5);
  display: block;
  font-size: 12px;
}

#checkout {
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  letter-spacing: 0.08em;
  padding: 17px;
  width: 100%;
}

.search-dialog {
  background: var(--paper);
  border: 0;
  color: var(--ink);
  max-height: 80vh;
  max-width: 760px;
  padding: 34px;
  width: calc(100% - 32px);
}

.search-dialog::backdrop {
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.68);
}

.search-dialog form {
  position: absolute;
  right: 23px;
  top: 18px;
}

.search-dialog form button {
  background: transparent;
  cursor: pointer;
  font-size: 28px;
}

.search-dialog label {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 66px);
  margin-bottom: 22px;
}

.search-dialog input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  font-size: 15px;
  outline: 0;
  padding: 14px 0;
  width: 100%;
}

#search-results {
  display: grid;
  margin-top: 20px;
}

.search-result {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 52px 1fr auto;
  padding: 10px 0;
}

.search-result img {
  height: 64px;
  object-fit: cover;
  width: 52px;
}

.search-result span,
.search-result strong {
  font-size: 14px;
}

.search-result strong {
  font-weight: 400;
}

.toast {
  background: var(--ink);
  bottom: 26px;
  color: var(--white);
  font-size: 14px;
  left: 50%;
  letter-spacing: 0.04em;
  opacity: 0;
  padding: 13px 17px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 20px);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 150;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1024px) {
  .lookbook-track {
    padding-left: calc(50vw - 180px);
    padding-right: calc(50vw - 180px);
  }

  .look-card {
    flex-basis: 360px;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 18px 16px;
  }

  .brand {
    font-size: 23px;
  }

  .brand small,
  .menu-button > span:last-child,
  .search-button {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .lookbook {
    min-height: 620px;
  }

  .lookbook-track {
    gap: 10px;
    padding: 72px calc(50vw - 36vw) 114px;
  }

  .look-card {
    flex-basis: 72vw;
    height: 68vh;
    max-height: 650px;
  }

  .look-card:not(.active) {
    opacity: 0.28;
    transform: scale(0.92);
  }

  .orbit-link {
    height: 84px;
    left: calc(50% + 24vw);
    top: 48%;
    width: 84px;
  }

  .lookbook-caption {
    bottom: 102px;
    max-width: 70vw;
    text-align: center;
  }

  .lookbook-footer {
    align-items: center;
    gap: 12px;
    grid-template-columns: auto 1fr;
    padding: 0 16px 20px;
  }

  .lookbook-progress {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .drop-label {
    grid-row: 2;
  }

  .lookbook-controls {
    grid-row: 2;
  }

  .lookbook-controls > span {
    display: none;
  }

  .collection {
    padding: 80px 14px 100px;
  }

  .collection-head {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .collection h1 {
    font-size: 54px;
  }

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

  .product-image {
    margin-bottom: 11px;
  }

  .product-meta {
    display: block;
  }

  .product-meta strong {
    display: block;
    margin-top: 8px;
  }

  .buy-row {
    margin-top: 12px;
  }

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

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

  .campaign-primary {
    min-height: 62vh;
  }

  .campaign-secondary {
    min-height: 72vh;
  }

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

  .service-strip div {
    min-height: 82px;
  }

  .service-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .newsletter {
    align-items: start;
    gap: 50px;
    grid-template-columns: 1fr;
    padding: 90px 18px;
  }

  footer {
    padding: 60px 18px 24px;
  }

  .footer-brand {
    font-size: 22vw;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image::before {
    padding-top: 122%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
