:root {
  color-scheme: light;
  --jet: #000000;
  --white: #ffffff;
  --slate: #808080;
  --mist: #d9dada;
  --display: "Funnel Display", "Arial Narrow", Arial, sans-serif;
  --body: "Poppins", Helvetica, Arial, sans-serif;
  color: var(--jet);
  background: var(--white);
  font-family: var(--body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--white);
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--jet);
  font-size: 0.75rem;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.header-inner,
.retail-hero,
.products-section,
.categories-section,
.about-section,
.footer-inner,
.error-main,
.detail-main,
.order-main {
  width: min(100% - 3rem, 1280px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--mist);
  background: var(--white);
}

.header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0.65rem;
  margin: -0.65rem;
  text-decoration: none;
}

.brand-logo--full {
  width: 10.75rem;
  height: auto;
}

.brand-logo--compact {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.store-nav a,
.mobile-nav summary,
.mobile-nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.store-nav a {
  padding-block: 0.6rem;
  white-space: nowrap;
}

.store-nav a:hover,
.store-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  padding: 0.65rem 0;
  cursor: pointer;
  list-style: none;
  text-transform: uppercase;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav[open] nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  display: grid;
  width: min(18rem, calc(100vw - 2rem));
  padding: 0.75rem;
  border: 1px solid var(--mist);
  background: var(--white);
  box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 12%);
}

.mobile-nav a {
  padding: 0.85rem;
}

.retail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(26rem, 1.14fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(1.75rem, 3.5vw, 3.25rem);
}

.announcement {
  margin: 0 0 1rem;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 4.7vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero-intro {
  max-width: 34rem;
  margin-bottom: 1.75rem;
  color: var(--slate);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.primary-button,
.product-actions button,
.product-actions .details-link {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--jet);
  color: var(--white);
  background: var(--jet);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-button:hover,
.primary-button:focus-visible {
  color: var(--jet);
  background: var(--white);
}

.text-link {
  font-size: 0.78rem;
  text-decoration: none;
}

.featured-product {
  margin: 0;
  border: 1px solid var(--mist);
  background: var(--white);
}

.featured-image,
.product-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mist);
  isolation: isolate;
}

.featured-image > img,
.product-image > img {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image > picture,
.product-image > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-image > picture {
  z-index: 4;
}

.product-image > picture > img {
  object-fit: cover;
}

.image-label {
  position: absolute;
  z-index: 3;
  right: 0.8rem;
  bottom: 0.7rem;
  color: var(--slate);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-shape {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  background: var(--white);
  box-shadow: 0 1.25rem 2.75rem rgb(0 0 0 / 14%);
  transform: translate(-50%, -50%);
}

.product-image--board .product-shape {
  width: 62%;
  height: 56%;
  border: 1px solid var(--slate);
  border-radius: 0.75rem;
}

.product-image--board .product-shape::after {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 0.7rem;
  aspect-ratio: 1;
  border: 1px solid var(--slate);
  border-radius: 50%;
  content: "";
}

.product-image--tape .product-shape {
  width: 38%;
  aspect-ratio: 1;
  border: 0.55rem solid var(--jet);
  border-radius: 50%;
}

.product-image--tape .product-shape::after {
  position: absolute;
  inset: 29%;
  border: 1px solid var(--slate);
  border-radius: 50%;
  content: "";
}

.product-image--sign .product-shape {
  width: 38%;
  aspect-ratio: 0.72;
  border: 0.45rem solid var(--white);
  background: var(--jet);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.product-image--sign .product-shape::after {
  position: absolute;
  right: -18%;
  bottom: -18%;
  width: 75%;
  height: 0.45rem;
  background: var(--slate);
  content: "";
}

.product-image--tag .product-shape {
  width: 30%;
  aspect-ratio: 0.68;
  border: 0.4rem solid var(--jet);
  border-radius: 1.25rem;
}

.product-image--tag .product-shape::after {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  width: 0.65rem;
  aspect-ratio: 1;
  border: 1px solid var(--jet);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.product-image--keepsake .product-shape {
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid var(--slate);
  border-radius: 50%;
}

.product-image--keepsake .product-shape::after {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: var(--jet);
  content: "";
}

.product-image--gift .product-shape {
  width: 44%;
  height: 42%;
  border: 1px solid var(--slate);
}

.product-image--gift .product-shape::before,
.product-image--gift .product-shape::after {
  position: absolute;
  background: var(--jet);
  content: "";
}

.product-image--gift .product-shape::before {
  top: 0;
  bottom: 0;
  left: calc(50% - 0.25rem);
  width: 0.5rem;
}

.product-image--gift .product-shape::after {
  top: calc(50% - 0.25rem);
  right: 0;
  left: 0;
  height: 0.5rem;
}

.featured-product figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 1.4rem;
}

.featured-product .featured-label {
  margin-bottom: 0.35rem;
  color: var(--slate);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.featured-product h2 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.featured-product .featured-description {
  max-width: 32rem;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.5;
}

.featured-price,
.price {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 500;
}

.featured-price {
  flex: 0 0 auto;
  font-size: 1.1rem;
  text-align: right;
}

.products-section,
.categories-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.products-section {
  border-top: 1px solid var(--mist);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.section-header > div > p {
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}

.collection-status {
  flex: 0 0 auto;
  margin-bottom: 0;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--mist);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.25rem;
}

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

.product-info {
  padding-top: 1rem;
}

.product-info h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.product-info > p {
  min-height: 4.5em;
  margin-bottom: 1rem;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.5;
}

.product-supporting-text {
  display: block;
  margin-top: 0.35rem;
  color: var(--jet);
  font-weight: 400;
}

.product-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--mist);
}

.price {
  font-size: 1.05rem;
}

.product-actions button {
  min-height: 2.4rem;
  padding: 0.55rem 0.75rem;
}

.product-actions .details-link {
  min-height: 2.4rem;
  padding: 0.55rem 0.75rem;
}

.product-actions button:disabled {
  border-color: var(--slate);
  color: var(--slate);
  background: var(--white);
  cursor: not-allowed;
}

.categories-section {
  border-top: 1px solid var(--mist);
}

.section-header--simple {
  margin-bottom: 1.75rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--mist);
  border-left: 1px solid var(--mist);
}

.category-card {
  display: flex;
  min-height: 8rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem;
  border-right: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  color: var(--white);
  background: var(--jet);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 0.45fr);
  gap: 2rem 5rem;
  align-items: center;
  padding-block: 3.5rem;
  border-top: 1px solid var(--mist);
}

.about-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.about-section p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.7;
}

.site-footer {
  color: var(--white);
  background: var(--jet);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  min-height: 7rem;
  padding-block: 1.5rem;
}

.footer-inner > p:last-child {
  margin-bottom: 0;
}

.footer-logo {
  display: inline-flex;
  width: 10.75rem;
  padding: 0.65rem;
  margin: -0.65rem;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-inner nav {
  display: flex;
  gap: 1.25rem;
}

.footer-inner a,
.footer-inner > p:last-child {
  color: var(--mist);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.error-main {
  min-height: calc(100vh - 11.5rem);
}

.error-panel {
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 4rem;
}

.error-panel .kicker {
  margin-bottom: 1rem;
  color: var(--slate);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-panel h1 {
  max-width: none;
}

.error-panel .intro {
  margin-bottom: 1.5rem;
  color: var(--slate);
}

.error-panel .button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--jet);
  color: var(--white);
  background: var(--jet);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.detail-main {
  padding-block: clamp(1.5rem, 4vw, 3.5rem) clamp(3.5rem, 7vw, 6rem);
}

.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.76rem;
}

.breadcrumb a {
  text-underline-offset: 0.3em;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.product-detail-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}

.product-detail-image picture,
.product-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.product-detail-image img {
  object-fit: cover;
}

.product-detail h1 {
  max-width: none;
  margin-bottom: 0.6rem;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
}

.detail-price {
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: 1.25rem;
}

.detail-intro,
.detail-notice,
.detail-section p,
.detail-section li {
  color: var(--slate);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

.detail-intro {
  margin-bottom: 1.5rem;
}

.order-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.05rem;
  margin-bottom: 0.85rem;
  border: 1px solid var(--jet);
  color: var(--white);
  background: var(--jet);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.order-button:hover,
.order-button:focus-visible {
  color: var(--jet);
  background: var(--white);
}

.detail-notice {
  margin-bottom: 0;
}

.detail-sections {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--mist);
}

.detail-section {
  min-width: 0;
}

.detail-section h2 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.detail-section p,
.detail-section ul {
  margin-bottom: 0;
}

.detail-section ul {
  padding-left: 1.1rem;
}

.detail-section li + li {
  margin-top: 0.45rem;
}

.order-main {
  padding-block: clamp(1.5rem, 4vw, 3.5rem) clamp(3.5rem, 7vw, 6rem);
}

.order-intro {
  max-width: 48rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.order-kicker,
.selected-label {
  margin-bottom: 0.65rem;
  color: var(--slate);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.order-intro h1 {
  max-width: none;
  margin-bottom: 1rem;
}

.order-intro > p:last-child,
.order-product-summary > p:last-child,
.order-confirmation p {
  color: var(--slate);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.order-product-card {
  position: sticky;
  top: 1.5rem;
  border: 1px solid var(--mist);
}

.order-product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}

.order-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-product-summary {
  padding: 1.25rem;
}

.order-product-summary h2 {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.order-product-price {
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: 1.1rem;
}

.order-product-summary > p:last-child {
  margin-bottom: 0;
  font-size: 0.76rem;
}

.order-form {
  min-width: 0;
}

.order-form > fieldset,
.product-fields {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 0 0 2rem;
  margin: 0 0 2rem;
  border: 0;
  border-bottom: 1px solid var(--mist);
}

.order-form > fieldset[hidden] {
  display: none;
}

.order-form legend,
.choice-group legend {
  grid-column: 1 / -1;
  width: 100%;
  padding: 0;
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.field {
  min-width: 0;
}

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

.field > label,
.choice-group > legend {
  display: block;
  color: var(--jet);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.optional {
  color: var(--slate);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem;
  margin-top: 0.45rem;
  border: 1px solid var(--slate);
  border-radius: 0;
  color: var(--jet);
  background: var(--white);
  font: inherit;
  font-size: 0.85rem;
}

.field textarea {
  min-height: 6.5rem;
  resize: vertical;
  line-height: 1.55;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-width: 2px;
}

.field-hint,
.field-error {
  margin: 0.45rem 0 0;
  font-size: 0.68rem;
  line-height: 1.5;
}

.field-hint {
  color: var(--slate);
}

.field-error {
  min-height: 0;
  color: #8b1a1a;
}

.field-error:empty {
  display: none;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 0.65rem;
  font-family: var(--body);
}

.choice-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.choice-group input,
.confirmation-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  accent-color: var(--jet);
}

.choice-group .field-error {
  flex-basis: 100%;
}

.confirmation-check {
  margin-bottom: 1rem;
}

.confirmation-check label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.confirmation-check input {
  flex: 0 0 auto;
  margin-top: 0.18rem;
}

.request-terms {
  padding: 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--mist);
}

.request-terms p {
  margin: 0;
  color: var(--slate);
  font-size: 0.74rem;
  line-height: 1.6;
}

.submit-order-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--jet);
  color: var(--white);
  background: var(--jet);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.submit-order-button:hover,
.submit-order-button:focus-visible {
  color: var(--jet);
  background: var(--white);
}

.submit-order-button:disabled {
  border-color: var(--slate);
  color: var(--white);
  background: var(--slate);
  cursor: wait;
}

.form-alert {
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #8b1a1a;
  color: #681313;
  font-size: 0.78rem;
  line-height: 1.5;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.order-confirmation {
  max-width: 46rem;
  padding-block: clamp(2rem, 5vw, 5rem);
}

.order-confirmation h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.request-reference {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--jet);
  color: var(--jet) !important;
}

.request-reference span {
  color: var(--slate);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.request-reference strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.order-confirmation .primary-button {
  margin-top: 0.75rem;
}

@media (max-width: 1080px) {
  .retail-hero {
    grid-template-columns: minmax(0, 0.8fr) minmax(23rem, 1.2fr);
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }
}

@media (max-width: 860px) {
  .retail-hero {
    grid-template-columns: 1fr;
  }

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

  .about-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-product-card {
    position: static;
    display: grid;
    grid-template-columns: minmax(9rem, 0.8fr) minmax(0, 1.2fr);
  }

  .detail-sections {
    grid-template-columns: 1fr;
  }

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

  .footer-inner > p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .header-inner,
  .retail-hero,
  .products-section,
  .categories-section,
  .about-section,
  .footer-inner,
  .error-main,
  .detail-main {
    width: min(100% - 2rem, 1280px);
  }

  .order-main {
    width: min(100% - 2rem, 1280px);
  }

  .header-inner {
    min-height: 4.25rem;
  }

  .brand-logo--full {
    display: none;
  }

  .brand-logo--compact {
    display: block;
  }

  .retail-hero {
    gap: 2rem;
    padding-block: 2.5rem;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .hero-links,
  .section-header,
  .featured-product figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-price {
    text-align: left;
  }

  .products-section,
  .categories-section {
    padding-block: 3.5rem;
  }

  .product-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .product-info > p {
    min-height: 0;
  }

  .collection-status {
    align-self: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 9rem;
  }

  .footer-inner > p:last-child {
    grid-column: auto;
  }

  .order-product-card,
  .order-form > fieldset,
  .product-fields {
    grid-template-columns: 1fr;
  }

  .field--full,
  .order-form legend {
    grid-column: auto;
  }
}

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

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