:root {
  --navy: #081c38;
  --pink: #d9155d;
  --pink-bright: #ff2d7a;
  --lime: #c6ff00;
  --blue: #18cfe3;
  --offwhite: #f6f3ee;
  --sand: #c8b8a6;
  --graphite: #151b22;
  --white: #ffffff;
  --line: rgba(8, 28, 56, 0.16);
  --shadow: 0 24px 70px rgba(8, 28, 56, 0.18);
  --header-h: 78px;
  --font-headline: "Poppins", "Montserrat", "Arial", sans-serif;
  --font-body: "Poppins", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--offwhite);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--lime);
  color: var(--navy);
  padding: 10px 14px;
  font-weight: 800;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr 56px;
  align-items: center;
  gap: 18px;
  padding: 0 34px;
  background: rgba(246, 243, 238, 0.92);
  border-bottom: 1px solid rgba(8, 28, 56, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.has-shadow {
  box-shadow: 0 14px 40px rgba(8, 28, 56, 0.12);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-link img {
  width: auto;
  height: 34px;
  max-width: min(318px, 100%);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a,
.mobile-nav a,
.site-footer a {
  position: relative;
}

.desktop-nav a::after,
.mobile-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
  transition: transform 180ms ease;
}

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

.icon-button,
.cart-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 28, 56, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  display: inline-grid;
  place-items: center;
}

.icon-button:hover,
.cart-button:hover {
  border-color: var(--pink);
}

.menu-toggle {
  display: none;
  position: relative;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.cart-button {
  position: relative;
  justify-self: end;
}

.cart-icon {
  width: 20px;
  height: 18px;
  border: 2px solid var(--navy);
  border-top: 0;
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -10px;
  width: 10px;
  height: 9px;
  border: 2px solid var(--navy);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.cart-count {
  position: absolute;
  right: -5px;
  top: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  background: var(--pink-bright);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--offwhite);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(8, 28, 56, 0.18);
}

.mobile-nav a {
  padding: 18px 28px;
  font-weight: 900;
  text-transform: uppercase;
  border-top: 1px solid rgba(8, 28, 56, 0.1);
}

.mobile-nav.is-open {
  display: grid;
}

.hero {
  position: relative;
  min-height: 92svh;
  padding-top: var(--header-h);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 28, 56, 0.82) 0%, rgba(8, 28, 56, 0.52) 42%, rgba(8, 28, 56, 0.04) 100%),
    linear-gradient(180deg, rgba(8, 28, 56, 0.06) 0%, rgba(8, 28, 56, 0.54) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin: 0 0 132px 7vw;
}

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

.hero .eyebrow,
.newsletter-section .eyebrow {
  color: var(--pink-bright);
}

.hero-wordmark {
  width: min(720px, 100%);
  height: auto;
  margin: 0 0 20px;
  filter: brightness(0) invert(1);
}

.hero-claim {
  margin: 20px 0 0;
  color: var(--lime);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
}

.hero-copy {
  max-width: 600px;
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.hero-actions,
.product-actions,
.modal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 0 22px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--pink-bright);
  color: var(--navy);
}

.button-primary:hover {
  background: #ff5d98;
}

.button-secondary {
  background: var(--lime);
  color: var(--navy);
}

.button-tertiary {
  background: transparent;
  border-color: rgba(8, 28, 56, 0.24);
  color: var(--navy);
}

.button-tertiary:hover {
  border-color: var(--navy);
  background: rgba(8, 28, 56, 0.05);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-full {
  width: 100%;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(8, 28, 56, 0.92);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-strip span:first-child {
  border-left: 0;
}

.quick-shop-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px min(5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.band-copy {
  display: grid;
  align-content: center;
  min-height: 220px;
  background: var(--navy);
  color: var(--white);
  padding: 34px;
}

.band-copy h2,
.section-heading h2,
.story-copy h2,
.label-section h2,
.journal-section h2,
.newsletter-section h2,
.drawer-header h2,
.checkout-panel h2 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 42px;
  line-height: 1.04;
  font-weight: 900;
}

.band-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.band-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.shop-section,
.story-section,
.label-section,
.journal-section,
.newsletter-section {
  padding: 84px min(5vw, 72px);
}

.section-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  justify-items: start;
  margin-left: 0;
  text-align: left;
}

.section-heading p,
.story-copy p,
.journal-grid p,
.label-layout figcaption,
.form-note {
  line-height: 1.55;
}

.section-heading > p:last-child {
  color: var(--graphite);
  font-size: 17px;
}

.shop-toolbar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-button {
  min-width: 108px;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-button.is-active,
.filter-button:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

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

.empty-results {
  grid-column: 1 / -1;
  min-height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.empty-results h3,
.empty-results p {
  margin: 0;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(8, 28, 56, 0.05);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.product-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  background: rgba(198, 255, 0, 0.92);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.product-card h3 {
  margin: 0;
  max-width: 260px;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 900;
}

.product-price {
  white-space: nowrap;
  color: var(--pink);
  font-weight: 900;
}

.product-copy {
  min-height: 0;
  margin: 0;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.45;
}

.swatches {
  display: flex;
  gap: 8px;
}

.swatch {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(8, 28, 56, 0.24);
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 10px;
  margin-top: 0;
}

.product-actions .button {
  width: 100%;
  padding-inline: 14px;
}

.product-actions .button-tertiary {
  background: var(--white);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.story-media {
  min-width: 0;
}

.story-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(5, minmax(88px, 1fr));
  gap: 10px;
  height: min(680px, 72svh);
  min-height: 560px;
  padding: 18px;
  background: var(--offwhite);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.story-tile {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
}

.story-tile-map {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
  object-position: center 40%;
}

.story-tile-label {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
  object-position: center 45%;
}

.story-tile-hero {
  grid-column: 1 / 5;
  grid-row: 3 / 6;
  object-position: center 52%;
}

.story-tile-stripes {
  grid-column: 5 / 7;
  grid-row: 3 / 4;
  object-position: center 42%;
}

.story-tile-stack {
  grid-column: 5 / 7;
  grid-row: 4 / 6;
  object-position: center 50%;
}

.story-collage-mark {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px 16px;
  background: rgba(246, 243, 238, 0.94);
  color: var(--navy);
}

.story-collage-mark img {
  width: min(260px, 52%);
  height: auto;
}

.story-collage-mark span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.story-copy {
  max-width: 650px;
}

.story-copy p {
  font-size: 18px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
}

.proof-list div {
  border-top: 4px solid var(--lime);
  padding-top: 14px;
}

.proof-list dt {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.proof-list dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.label-section {
  background: var(--white);
}

.label-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.label-layout figure,
.journal-grid article {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--offwhite);
}

.label-layout img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.label-figure-photoreal img {
  object-fit: contain;
  background: var(--offwhite);
}

.label-layout figcaption {
  min-height: 78px;
  padding: 16px 18px;
  font-weight: 800;
}

.journal-section {
  background: var(--offwhite);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.journal-grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding-bottom: 18px;
}

.journal-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 18px;
}

.journal-grid .eyebrow,
.journal-grid h3,
.journal-grid p:not(.eyebrow) {
  margin-left: 18px;
  margin-right: 18px;
}

.journal-grid h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 24px;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 28, 56, 0.96), rgba(8, 28, 56, 0.78)),
    url("/Design/Beach_A_Mel_Marketing_Design_Package_VECTOR_REALISTIC_LABELS/04_Example_Images/Real_Situations/05_stack_color_pop.jpg") center / cover;
}

.newsletter-form,
.checkout-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(8, 28, 56, 0.2);
  background: var(--white);
  color: var(--navy);
  padding: 0 14px;
}

input:focus {
  outline: 3px solid rgba(198, 255, 0, 0.6);
  outline-offset: 2px;
}

.newsletter-form input {
  border-color: rgba(255, 255, 255, 0.34);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--lime);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 170px;
  padding: 34px min(5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.site-footer img {
  width: 300px;
  max-width: 100%;
  mix-blend-mode: normal;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
}

.cart-drawer,
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  background: rgba(8, 28, 56, 0.58);
}

.cart-drawer.is-open,
.modal.is-open {
  display: block;
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(470px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--offwhite);
  border-left: 1px solid rgba(8, 28, 56, 0.12);
  box-shadow: var(--shadow);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.close-button {
  position: relative;
}

.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.close-button::before {
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

.cart-items {
  overflow: auto;
  padding: 20px 24px;
}

.empty-cart {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  color: var(--graphite);
  text-align: center;
}

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

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

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.cart-item p {
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
}

.quantity-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quantity-row button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.remove-button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--pink);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.shipping-note {
  min-height: 28px;
  margin: 0 0 12px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
}

.shipping-progress {
  width: 100%;
  height: 8px;
  overflow: hidden;
  margin: 0 0 14px;
  background: rgba(8, 28, 56, 0.1);
}

.shipping-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--lime);
  transition: width 180ms ease;
}

.subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 18px;
}

.cart-footer .button + .button {
  margin-top: 10px;
}

.cart-footer .button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
}

.modal {
  overflow: auto;
  padding: 28px;
}

.modal-panel {
  position: relative;
  width: min(1040px, 100%);
  margin: 7vh auto;
  background: var(--offwhite);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.modal-panel .close-button {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  background: var(--white);
}

.modal-content {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.92fr);
}

.modal-image {
  min-height: 620px;
  background: var(--sand);
}

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

.modal-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 72px 52px;
}

.modal-copy h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.04;
}

.modal-copy p {
  margin: 0;
  color: var(--graphite);
  line-height: 1.55;
}

.detail-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 12px 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--graphite);
}

.detail-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  background: var(--lime);
}

.buy-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}

.buy-box span {
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.checkout-panel {
  width: min(980px, 100%);
}

.checkout-content {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.8fr);
  grid-template-areas: "form summary";
  gap: 34px;
  padding: 56px;
}

.checkout-form-pane {
  grid-area: form;
}

.checkout-summary {
  grid-area: summary;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
}

.checkout-summary h3 {
  margin: 0 0 20px;
  font-size: 24px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-total {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 900;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    padding: 0 20px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .desktop-nav {
    display: none;
  }

  .brand-link {
    justify-self: center;
  }

  .hero-wordmark {
    width: min(600px, 100%);
  }

  .hero-claim {
    font-size: 28px;
  }

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

  .quick-shop-band,
  .story-section,
  .newsletter-section,
  .modal-content,
  .checkout-content {
    grid-template-columns: 1fr;
  }

  .checkout-content {
    grid-template-areas:
      "summary"
      "form";
  }

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

  .story-collage {
    height: 560px;
    min-height: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    padding: 0 14px;
  }

  .brand-link img {
    width: auto;
    height: 26px;
    max-width: min(230px, calc(100vw - 132px));
  }

  .cart-count {
    right: -2px;
    top: -5px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 92px;
  }

  .hero-wordmark {
    width: min(350px, 100%);
    margin-bottom: 18px;
  }

  .hero-claim {
    font-size: 24px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .hero-strip {
    display: flex;
    min-height: 62px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .hero-strip span {
    flex: 0 0 auto;
    min-height: 62px;
    min-width: 210px;
    padding: 10px 16px;
    font-size: 11px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 0;
  }

  .quick-shop-band,
  .shop-section,
  .story-section,
  .label-section,
  .journal-section,
  .newsletter-section {
    padding: 52px 18px;
  }

  .quick-shop-band,
  .band-images,
  .product-grid,
  .label-layout,
  .journal-grid,
  .proof-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .band-copy h2,
  .section-heading h2,
  .story-copy h2,
  .label-section h2,
  .journal-section h2,
  .newsletter-section h2,
  .drawer-header h2,
  .checkout-panel h2 {
    font-size: 32px;
  }

  .band-images img {
    height: 180px;
  }

  .product-title-row {
    display: grid;
  }

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

  .story-collage {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(6, 72px);
    gap: 8px;
    height: auto;
    min-height: 508px;
    padding: 10px;
  }

  .story-tile-map {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .story-tile-label {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
  }

  .story-tile-hero {
    grid-column: 1 / 5;
    grid-row: 3 / 5;
  }

  .story-tile-stripes {
    grid-column: 1 / 3;
    grid-row: 5 / 7;
  }

  .story-tile-stack {
    grid-column: 3 / 5;
    grid-row: 5 / 7;
  }

  .story-collage-mark {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 54px;
    padding: 10px 12px;
  }

  .story-collage-mark img {
    width: min(190px, 66%);
  }

  .story-collage-mark span {
    display: none;
  }

  .modal-image {
    height: 360px;
    min-height: 360px;
  }

  .modal {
    padding: 0;
  }

  .modal-panel {
    min-height: 100%;
    margin: 0;
    border-radius: 0;
  }

  .modal-panel .close-button {
    position: fixed;
    top: calc(env(safe-area-inset-top) + 18px);
    right: 18px;
  }

  .modal-copy,
  .checkout-content {
    padding: 54px 22px 24px;
  }

  .modal-copy h2 {
    font-size: 34px;
  }

  .buy-box {
    grid-template-columns: 1fr;
  }

  .site-footer {
    justify-items: start;
  }

  .site-footer nav {
    justify-content: start;
  }
}
