@import url("fonts/local-fonts.css");

:root {
  --ink: #11100E;
  --paper: #F2E9D6;
  --yellow: #F3B61F;
  --orange: #E4572E;
  --white: #fffaf0;
  --line: 2px solid var(--ink);
  --display: "Archivo Narrow", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --page: min(100% - 32px, 1380px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .05;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

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

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

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

button,
input,
textarea,
select {
  border-radius: 0;
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 3px;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: .88;
  text-transform: uppercase;
}

.sr-only,
.hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-strip {
  display: flex;
  min-height: 29px;
  padding: 5px 16px;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border-bottom: var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  white-space: nowrap;
}

.utility-strip span:last-child {
  display: none;
}

.site-header {
  position: relative;
  z-index: 30;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 3px solid var(--ink);
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  min-height: 78px;
  align-items: stretch;
}

.brand {
  display: flex;
  width: fit-content;
  padding: 10px 16px 9px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  color: var(--ink);
  background: var(--orange);
  border-right: var(--line);
  font-family: var(--display);
  line-height: .78;
  transform: skewX(-4deg);
  transform-origin: bottom left;
}

.brand span {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -.06em;
}

.brand small {
  padding-left: 1px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.icon-btn {
  display: grid;
  min-width: 60px;
  place-items: center;
  color: var(--paper);
  background: transparent;
  border-left: 1px solid rgba(242, 233, 214, .45);
}

.icon-btn svg {
  width: 27px;
  height: 27px;
}

.menu-toggle[aria-expanded="false"] .menu-close,
.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.main-nav {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  color: var(--ink);
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
}

.main-nav.is-open {
  display: block;
}

.main-nav a {
  display: block;
  padding: 14px 18px;
  border-top: var(--line);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a[aria-current="page"] {
  color: var(--paper);
  background: var(--orange);
}

.cart-link {
  display: flex;
  min-width: 75px;
  padding: 8px 12px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-left: 1px solid rgba(242, 233, 214, .45);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}

.cart-link > span:not(.cart-icon) {
  display: none;
}

.cart-link strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  padding: 0 5px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--mono);
  font-size: 11px;
}

.cart-icon {
  display: flex;
  font-size: 20px;
}

.page-main {
  min-height: 55vh;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 7px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 120ms ease, box-shadow 120ms ease, color 120ms ease, background 120ms ease;
}

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

.btn svg,
.text-link svg {
  flex: 0 0 auto;
}

.btn--dark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
}

.btn--dark:hover {
  color: var(--ink);
  background: var(--yellow);
}

.btn--small {
  min-height: 39px;
  padding: 8px 12px;
  font-size: 15px;
}

.btn--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.signal-band {
  display: flex;
  width: calc(100% + 32px);
  min-height: 48px;
  margin-left: -16px;
  padding: 8px 28px;
  align-items: center;
  justify-content: space-around;
  gap: 22px;
  overflow: hidden;
  color: var(--yellow);
  background: var(--ink);
  border-block: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
  transform: rotate(-1.2deg);
}

.signal-band span:nth-child(even) {
  color: var(--orange);
}

/* Home */
.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  padding-bottom: 28px;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 8px solid var(--orange);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 18%;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--ink) 0, rgba(17, 16, 14, .8) 17%, rgba(17, 16, 14, .18) 62%), linear-gradient(0deg, rgba(17, 16, 14, .8), transparent 45%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.12);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding-top: 112px;
}

.hero-index {
  display: block;
  margin-bottom: 21px;
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: .18em;
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(75px, 24vw, 184px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .68;
}

.hero h1 .offset {
  display: block;
  margin-left: 11vw;
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--ink);
}

.hero h1 .outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
}

.hero-copy > p {
  max-width: 420px;
  margin: 0 0 26px 7vw;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border-left: 7px solid var(--orange);
  font-size: 12px;
}

.hero .btn {
  margin-left: 7vw;
}

.hero-stamp {
  position: absolute;
  right: 0;
  bottom: 20px;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  line-height: .9;
  text-align: center;
  transform: rotate(5deg);
}

.home-intro {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 70px 0 48px;
  gap: 26px;
}

.home-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 15vw, 120px);
  letter-spacing: -.045em;
}

.home-intro h2 mark {
  padding: 0 .08em;
  color: var(--ink);
  background: var(--yellow);
}

.intro-note {
  max-width: 460px;
  padding: 19px 16px 16px;
  background: var(--orange);
  border: var(--line);
  box-shadow: 8px 8px 0 var(--ink);
}

.intro-note span {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 600;
}

.intro-note p {
  margin: 0;
}

.product-section {
  width: var(--page);
  margin: 0 auto;
  padding: 50px 0 78px;
}

.section-heading {
  display: flex;
  margin-bottom: 26px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 4px solid var(--ink);
}

.section-heading h2 {
  margin: 0 0 -6px;
  padding-right: 12px;
  background: var(--paper);
  font-size: clamp(50px, 14vw, 100px);
  letter-spacing: -.04em;
}

.section-heading span {
  padding-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px 16px;
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8d0c0;
  border: var(--line);
}

.product-image::after {
  position: absolute;
  inset: 0;
  border: 9px solid transparent;
  content: "";
  transition: border-color 140ms ease;
}

.product-image:hover::after {
  border-color: var(--yellow);
}

.product-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.83) contrast(1.05);
  transition: transform 350ms ease;
}

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

.product-image > span,
.image-code {
  position: absolute;
  z-index: 2;
  right: -1px;
  bottom: -1px;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  font-size: 9px;
  font-weight: 600;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 13px 0 10px;
  gap: 3px 12px;
  border-bottom: var(--line);
}

.product-info p {
  grid-column: 1 / -1;
  margin: 0;
  color: #5a554d;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -.02em;
}

.product-info strong {
  font-size: 13px;
  white-space: nowrap;
}

.product-actions {
  display: flex;
  padding-top: 11px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-actions .text-link {
  font-size: 15px;
}

.editorial {
  display: grid;
  color: var(--paper);
  background: var(--ink);
  border-block: 8px solid var(--orange);
}

.editorial-media {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border-bottom: 3px solid var(--yellow);
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  filter: grayscale(.35) contrast(1.1);
}

.editorial-media::after {
  position: absolute;
  right: -60px;
  bottom: 30px;
  width: 260px;
  height: 56px;
  content: "ACESSO  //  OFF";
  padding: 14px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  font-size: 12px;
  font-weight: 700;
  transform: rotate(-6deg);
}

.editorial-copy {
  padding: 50px 24px 58px;
}

.editorial-copy h2 {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--yellow);
  font-size: clamp(60px, 18vw, 132px);
  letter-spacing: -.06em;
}

.editorial-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-left: 8vw;
  padding-left: 14px;
  border-left: 6px solid var(--orange);
}

.editorial-copy .btn {
  margin: 18px 0 0 8vw;
}

.info-modules {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 75px 0 90px;
  gap: 16px;
}

.info-module {
  position: relative;
  padding: 24px 20px;
  border: var(--line);
}

.info-module:nth-child(1) {
  background: var(--yellow);
}

.info-module:nth-child(2) {
  color: var(--paper);
  background: var(--ink);
}

.info-module:nth-child(3) {
  background: var(--orange);
}

.info-module span {
  display: block;
  margin-bottom: 35px;
  font-size: 10px;
}

.info-module h2 {
  margin-bottom: 12px;
  font-size: 36px;
}

.info-module p {
  margin: 0;
  font-size: 12px;
}

/* Generic page heads */
.page-hero {
  position: relative;
  padding: 58px 16px 46px;
  overflow: hidden;
  border-bottom: 7px solid var(--ink);
}

.page-hero::after {
  position: absolute;
  top: -24px;
  right: -45px;
  width: 148px;
  height: 150%;
  content: "";
  background: repeating-linear-gradient(-45deg, var(--ink) 0 13px, var(--yellow) 13px 26px);
  border-left: 3px solid var(--ink);
  transform: rotate(7deg);
}

.page-hero--dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--orange);
}

.page-hero--dark::after {
  background: var(--orange);
  border-color: var(--yellow);
}

.page-hero--orange {
  background: var(--orange);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(70px, 20vw, 154px);
  letter-spacing: -.065em;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0 7vw;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  font-size: 12px;
}

.breadcrumb {
  display: flex;
  width: var(--page);
  margin: 0 auto;
  padding: 14px 0;
  gap: 8px;
  color: #575149;
  font-size: 10px;
  text-transform: uppercase;
}

.breadcrumb a {
  text-decoration: underline;
}

/* Catalog */
.catalog-controls {
  position: relative;
  z-index: 3;
  display: grid;
  width: var(--page);
  margin: -18px auto 0;
  padding: 14px;
  gap: 14px;
  background: var(--yellow);
  border: var(--line);
  box-shadow: 7px 7px 0 var(--ink);
}

.filter-list {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-list button {
  flex: 0 0 auto;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--paper);
  border: var(--line);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.filter-list button.is-active,
.filter-list button:hover {
  color: var(--paper);
  background: var(--ink);
}

.catalog-controls > span {
  font-size: 10px;
  font-weight: 600;
  text-align: right;
}

.catalog-listing {
  width: var(--page);
  margin: 0 auto;
  padding: 58px 0 90px;
}

/* Product detail */
.product-detail {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 20px 0 80px;
  gap: 26px;
}

.product-detail-media {
  position: relative;
  background: #d1c9ba;
  border: 3px solid var(--ink);
}

.product-detail-media::before {
  position: absolute;
  top: 16px;
  left: -10px;
  z-index: 2;
  width: 76px;
  height: 18px;
  content: "";
  background: var(--orange);
  border: var(--line);
  transform: rotate(-8deg);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-detail-copy {
  align-self: start;
}

.product-detail-copy h1 {
  max-width: 730px;
  margin: 0 0 18px;
  font-size: clamp(58px, 14vw, 110px);
  letter-spacing: -.055em;
}

.detail-price {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 13px;
  background: var(--yellow);
  border: var(--line);
  font-size: 18px;
  font-weight: 600;
  transform: rotate(-1deg);
}

.detail-description {
  max-width: 640px;
  padding-left: 15px;
  border-left: 7px solid var(--orange);
}

.product-detail form {
  margin-top: 30px;
  padding-block: 22px;
  border-block: 3px solid var(--ink);
}

.product-detail fieldset {
  padding: 0;
  margin: 0 0 22px;
  border: 0;
}

.product-detail legend,
.quantity-label {
  margin-bottom: 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.size-options input {
  position: absolute;
  opacity: 0;
}

.size-options span {
  display: grid;
  min-width: 47px;
  height: 45px;
  padding: 5px;
  place-items: center;
  background: var(--paper);
  border: var(--line);
  font-weight: 600;
}

.size-options input:checked + span {
  color: var(--paper);
  background: var(--ink);
  box-shadow: inset 0 -5px var(--orange);
}

.size-options input:focus-visible + span {
  outline: 4px solid var(--orange);
  outline-offset: 2px;
}

.quantity-label {
  display: grid;
  width: fit-content;
  gap: 6px;
}

.field--qty {
  width: 82px !important;
}

.product-spec {
  margin-top: 25px;
  padding: 18px;
  background: rgba(17, 16, 14, .07);
  border: var(--line);
}

.product-spec h2 {
  font-size: 26px;
}

.product-spec ul {
  display: grid;
  padding: 0;
  list-style: none;
}

.product-spec li {
  padding: 7px 0;
  border-bottom: 1px solid var(--ink);
}

.product-spec li::before {
  content: "/ ";
  color: var(--orange);
  font-weight: 700;
}

.product-spec p {
  margin: 16px 0 0;
  font-size: 10px;
}

.delivery-note {
  display: grid;
  margin-top: 14px;
  padding: 15px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
}

.delivery-note p {
  margin: 3px 0 0;
  font-size: 11px;
}

/* Forms */
.field,
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: none;
}

textarea.field,
.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.field::placeholder,
.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #70695e;
  opacity: 1;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field > span,
.form-field > label,
.form-field-label {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.field-hint {
  margin: 0;
  color: #5a554d;
  font-size: 10px;
}

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

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 10px;
  line-height: 1.45;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--orange);
}

.checkbox-line a {
  font-weight: 600;
}

.form-feedback {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding: 12px;
  color: var(--paper);
  background: var(--ink);
  border-left: 8px solid var(--yellow);
  font-weight: 600;
}

/* Cart and checkout */
.cart-layout,
.checkout-layout {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 50px 0 90px;
  gap: 28px;
}

.cart-list {
  min-width: 0;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  padding: 13px 0 16px;
  gap: 13px;
  border-top: 3px solid var(--ink);
}

.cart-item > a:first-child {
  grid-row: span 2;
}

.cart-item img {
  width: 112px;
  height: 145px;
  object-fit: cover;
  border: var(--line);
}

.cart-item-copy p {
  margin: 0;
  color: #655f56;
  font-size: 9px;
  text-transform: uppercase;
}

.cart-item-copy h2 {
  margin: 3px 0 8px;
  font-size: 27px;
}

.cart-item-copy span,
.cart-item-copy strong {
  display: block;
  font-size: 11px;
}

.cart-item .quantity-label {
  grid-column: 2;
}

.remove-btn {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  text-decoration: underline;
  text-transform: uppercase;
}

.cart-summary,
.checkout-summary {
  align-self: start;
  padding: 20px;
  color: var(--paper);
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
}

.cart-summary h2,
.checkout-summary h2 {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 36px;
}

.summary-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  padding: 11px 0;
  align-items: center;
  gap: 9px;
  border-top: 1px solid rgba(242, 233, 214, .35);
}

.summary-item img {
  width: 50px;
  height: 60px;
  object-fit: cover;
}

.summary-item strong,
.summary-item span {
  display: block;
  font-size: 9px;
  line-height: 1.35;
}

.summary-item b {
  font-size: 10px;
}

.cost-lines {
  margin: 18px 0;
  font-size: 11px;
}

.cost-lines > div {
  display: flex;
  padding: 8px 0;
  justify-content: space-between;
  border-top: 1px solid rgba(242, 233, 214, .35);
}

.cost-lines dd {
  margin: 0;
  font-weight: 600;
}

.cost-lines .cost-total {
  color: var(--yellow);
  font-size: 14px;
  border-top: 3px solid var(--yellow);
}

.cost-note {
  font-size: 9px;
}

.empty-state {
  padding: 38px 22px;
  background: var(--yellow);
  border: var(--line);
}

.empty-state > span {
  font-family: var(--display);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}

.empty-state h2 {
  max-width: 540px;
  font-size: 48px;
}

.empty-summary {
  padding: 8px 0 20px;
}

.empty-summary .text-link {
  color: var(--yellow);
}

.checkout-form,
.contact-form {
  min-width: 0;
  padding: 22px;
  background: rgba(255, 250, 240, .55);
  border: 3px solid var(--ink);
}

.checkout-form > h2,
.contact-form > h2 {
  margin: 15px 0 24px;
  font-size: 42px;
}

.form-section {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.form-section legend {
  width: 100%;
  margin-bottom: 17px;
  padding: 10px 0 6px;
  border-bottom: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.payment-options {
  display: grid;
  gap: 8px;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 13px;
  gap: 2px 10px;
  background: var(--paper);
  border: var(--line);
  cursor: pointer;
}

.payment-option:has(input:checked) {
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
}

.payment-option input {
  grid-row: span 2;
  width: 19px;
  height: 19px;
  min-height: auto;
  margin-top: 4px;
  accent-color: var(--orange);
}

.payment-option strong {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}

.payment-option small {
  font-size: 10px;
}

.demo-notice {
  margin: 0 0 24px;
  padding: 14px;
  color: var(--paper);
  background: var(--orange);
  border: var(--line);
  font-size: 11px;
  font-weight: 600;
}

/* Contact */
.contact-layout {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 55px 0 90px;
  gap: 30px;
}

.contact-aside {
  align-self: start;
}

.contact-block {
  padding: 18px;
  border-top: 4px solid var(--ink);
}

.contact-block:nth-child(odd) {
  background: var(--yellow);
}

.contact-block:nth-child(even) {
  color: var(--paper);
  background: var(--ink);
}

.contact-block span {
  display: block;
  margin-bottom: 22px;
  font-size: 9px;
}

.contact-block h2 {
  margin-bottom: 8px;
  font-size: 33px;
}

.contact-block p,
.contact-block a {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

/* About */
.about-lead {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 65px 0;
  gap: 24px;
}

.about-lead h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(50px, 14vw, 105px);
  letter-spacing: -.05em;
}

.about-lead-copy {
  max-width: 620px;
  padding: 22px;
  background: var(--yellow);
  border: var(--line);
  box-shadow: 9px 9px 0 var(--ink);
}

.about-values {
  display: grid;
  color: var(--paper);
  background: var(--ink);
  border-block: 8px solid var(--orange);
}

.about-values > article {
  min-height: 250px;
  padding: 28px 22px;
  border-bottom: 1px solid var(--paper);
}

.about-values > article:nth-child(2) {
  color: var(--ink);
  background: var(--yellow);
}

.about-values span {
  display: block;
  margin-bottom: 55px;
  font-size: 11px;
}

.about-values h2 {
  font-size: 42px;
}

.about-editorial {
  position: relative;
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 80px 0;
  gap: 20px;
}

.about-editorial img {
  width: 90%;
  min-height: 450px;
  object-fit: cover;
  border: 3px solid var(--ink);
  filter: saturate(.75) contrast(1.1);
}

.about-editorial-copy {
  position: relative;
  width: 91%;
  margin: -80px 0 0 auto;
  padding: 23px;
  background: var(--orange);
  border: var(--line);
  box-shadow: 8px 8px 0 var(--ink);
}

.about-editorial-copy h2 {
  font-size: 46px;
}

/* Legal */
.legal-layout {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 45px 0 90px;
  gap: 28px;
}

.legal-nav {
  align-self: start;
  background: var(--yellow);
  border: var(--line);
}

.legal-nav strong {
  display: block;
  padding: 11px 14px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 9px 14px;
  border-top: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.legal-nav a[aria-current="page"] {
  padding-left: 22px;
  color: var(--paper);
  background: var(--orange);
}

.legal-content {
  min-width: 0;
}

.legal-intro {
  padding: 18px;
  background: rgba(17, 16, 14, .08);
  border-left: 8px solid var(--orange);
}

.legal-content section {
  padding: 30px 0;
  border-bottom: 2px solid var(--ink);
}

.legal-content section:first-of-type {
  padding-top: 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 35px;
}

.legal-content h2::before {
  content: attr(data-index) " / ";
  color: var(--orange);
}

.legal-content h3 {
  margin: 22px 0 8px;
  font-size: 24px;
}

.legal-content p,
.legal-content li {
  max-width: 790px;
}

.legal-content a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-contact {
  padding: 20px !important;
  color: var(--paper);
  background: var(--ink);
  border-left: 8px solid var(--yellow);
}

/* Footer */
.site-footer {
  color: var(--paper);
  background: var(--ink);
  border-top: 8px solid var(--orange);
}

.footer-signal {
  display: flex;
  min-height: 46px;
  padding: 8px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  color: var(--ink);
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 18px, #d59b0f 18px 36px);
  border-bottom: 3px solid var(--ink);
  white-space: nowrap;
}

.footer-signal span {
  padding: 3px 8px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 9px;
  font-weight: 600;
}

.footer-signal strong {
  padding: 0 8px;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 21px;
  line-height: 1;
}

.footer-grid {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 54px 0;
  gap: 45px;
}

.footer-newsletter h2 {
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: clamp(50px, 15vw, 95px);
  letter-spacing: -.045em;
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 760px;
  gap: 12px;
}

.footer-newsletter .field {
  color: var(--paper);
  background: transparent;
  border-color: var(--paper);
}

.footer-newsletter .field::placeholder {
  color: #c8beaa;
}

.footer-newsletter .btn {
  min-width: 98px;
  box-shadow: 5px 5px 0 var(--orange);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-links h2 {
  padding-bottom: 8px;
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
  font-size: 22px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-family: var(--display);
  font-size: 17px;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.footer-bottom {
  display: grid;
  padding: 24px 16px;
  gap: 16px;
  color: var(--ink);
  background: var(--paper);
  border-top: 3px solid var(--orange);
  font-size: 13px;
  line-height: 1.55;
}

.footer-bottom p {
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-bottom strong {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: .16em;
}

@media (min-width: 620px) {
  :root {
    --page: min(100% - 56px, 1380px);
  }

  .utility-strip {
    padding-inline: 28px;
  }

  .utility-strip span:last-child {
    display: inline;
  }

  .hero-copy > p,
  .hero .btn {
    margin-left: 14vw;
  }

  .hero-stamp {
    right: 7vw;
    width: 128px;
    height: 128px;
    font-size: 21px;
  }

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

  .product-card:nth-child(even) {
    margin-top: 45px;
  }

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

  .catalog-controls {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

  .about-values > article {
    border-right: 1px solid var(--paper);
    border-bottom: 0;
  }

  .footer-bottom {
    grid-template-columns: 1.2fr 1fr 1fr;
    padding-inline: 28px;
    font-size: 14px;
  }

  .footer-bottom strong {
    font-size: 16px;
  }

  .footer-bottom p:last-child {
    text-align: right;
  }
}

@media (min-width: 900px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
    min-height: 92px;
  }

  .brand {
    padding-inline: 32px;
  }

  .brand span {
    font-size: 52px;
  }

  .brand small {
    font-size: 15px;
    letter-spacing: .1em;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    width: auto;
    justify-content: flex-end;
    color: var(--paper);
    background: transparent;
    border: 0;
  }

  .main-nav a {
    display: flex;
    min-width: 122px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-left: 1px solid rgba(242, 233, 214, .32);
    font-size: 19px;
  }

  .main-nav a[aria-current="page"] {
    color: var(--ink);
    background: var(--yellow);
    box-shadow: inset 0 -7px var(--orange);
  }

  .cart-link {
    min-width: 154px;
    padding-inline: 22px;
  }

  .cart-link > span:not(.cart-icon) {
    display: inline;
  }

  .hero {
    min-height: 785px;
  }

  .hero-media {
    left: 35%;
  }

  .hero-copy {
    padding-top: 105px;
  }

  .hero h1 {
    line-height: .67;
  }

  .hero-copy > p,
  .hero .btn {
    margin-left: 37vw;
  }

  .home-intro {
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, .7fr);
    align-items: center;
    padding-block: 100px 70px;
  }

  .intro-note {
    transform: rotate(2deg) translateY(45px);
  }

  .product-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 30px 16px;
  }

  .product-card {
    grid-column: span 4;
  }

  .product-card:nth-child(even) {
    margin-top: 75px;
  }

  .product-card--featured {
    grid-column: span 6;
  }

  .product-card:nth-child(4n) {
    grid-column: span 5;
  }

  .editorial {
    grid-template-columns: 48% 52%;
    min-height: 720px;
  }

  .editorial-media {
    min-height: 720px;
    border-right: 3px solid var(--yellow);
    border-bottom: 0;
  }

  .editorial-copy {
    display: flex;
    padding: 90px 6vw;
    flex-direction: column;
    justify-content: center;
  }

  .info-modules {
    grid-template-columns: 1.1fr .8fr 1fr;
    padding-block: 105px 120px;
  }

  .info-module:nth-child(2) {
    transform: translateY(36px) rotate(-1deg);
  }

  .info-module:nth-child(3) {
    transform: translateY(-22px);
  }

  .page-hero {
    padding-block: 80px 67px;
  }

  .page-hero::after {
    right: 4vw;
    width: 210px;
  }

  .catalog-listing .product-card {
    grid-column: span 3;
  }

  .catalog-listing .product-card:nth-child(even) {
    margin-top: 48px;
  }

  .product-detail {
    grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
    padding-block: 35px 120px;
    gap: 5vw;
  }

  .product-detail-copy {
    position: sticky;
    top: 25px;
    padding-top: 28px;
  }

  .product-detail-copy h1 {
    margin-left: -9vw;
    text-shadow: 3px 3px 0 var(--paper), -3px -3px 0 var(--paper);
  }

  .cart-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, .75fr);
    gap: 5vw;
  }

  .cart-summary,
  .checkout-summary {
    position: sticky;
    top: 30px;
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr);
    align-items: start;
    gap: 5vw;
  }

  .checkout-summary {
    grid-column: 2;
    grid-row: 1;
  }

  .checkout-form {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-layout {
    grid-template-columns: minmax(280px, .6fr) minmax(0, 1.4fr);
    gap: 6vw;
  }

  .contact-block:nth-child(2) {
    margin-left: 35px;
  }

  .about-lead {
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
    padding-block: 100px;
  }

  .about-lead-copy {
    transform: rotate(-2deg) translateY(35px);
  }

  .about-editorial {
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    padding-block: 120px;
  }

  .about-editorial img {
    width: 100%;
    min-height: 680px;
  }

  .about-editorial-copy {
    width: calc(100% + 70px);
    margin: 0 0 0 -70px;
  }

  .legal-layout {
    grid-template-columns: 245px minmax(0, 1fr);
    padding-block: 70px 120px;
    gap: 6vw;
  }

  .legal-nav {
    position: sticky;
    top: 25px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr .7fr;
    padding-block: 75px;
  }
}

@media (min-width: 1200px) {
  .hero-copy > p,
  .hero .btn {
    margin-left: 465px;
  }

  .footer-grid {
    gap: 9vw;
  }
}


.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  max-width: min(390px, calc(100vw - 32px));
  padding: 15px 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--orange);
  font-weight: 600;
  opacity: 0;
  transform: translateY(140%);
  transition: opacity .18s ease, transform .18s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(-1deg);
}

.delivery-estimate {
  margin: 12px 0;
  padding: 10px;
  color: var(--ink);
  background: var(--yellow);
  border-left: 6px solid var(--orange);
  font-size: 10px;
}

.legal-content ol {
  padding-left: 24px;
}

.legal-content strong,
.legal-content h2,
.legal-content h3 {
  overflow-wrap: normal;
}

@media (max-width: 420px) {
  .footer-newsletter form {
    grid-template-columns: 1fr;
  }

  .footer-newsletter .btn {
    width: 100%;
  }

  .page-hero h1 {
    font-size: clamp(54px, 18vw, 76px);
  }
}

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