:root {
  --ink: #0a0a09;
  --paper: #f3ead7;
  --paper-light: #fff8ea;
  --pink: #ed4f88;
  --red: #e43b32;
  --cyan: #58c5c9;
  --blue: #2f67c5;
  --yellow: #f2c845;
  --muted-ink: #4a443b;
  --line-dark: rgba(10, 10, 9, 0.22);
  --line-light: rgba(243, 234, 215, 0.22);
  --display: 'Bebas Neue', Impact, sans-serif;
  --condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Barlow', Arial, sans-serif;
  color: var(--ink);
  font-family: var(--body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

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

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

.shell {
  width: min(1320px, calc(100% - 72px));
  margin-inline: auto;
}

.paper-section {
  background-color: var(--paper);
  background-image: url('https://assets.bigcartel.com/product_images/428133999/paper-texture.png');
  background-size: 620px 620px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  background: var(--ink);
  color: var(--paper-light);
  border-bottom: 1px solid var(--line-light);
}

.site-header__inner {
  width: min(1380px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 28px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-lockup__type {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 0.85;
}

.brand-lockup__type[data-tone='light'] {
  color: var(--paper-light);
}

.brand-lockup__type strong {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.brand-lockup__type small {
  margin-top: 5px;
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.brand-lockup--compact .brand-lockup__type strong {
  font-size: 1.55rem;
}

.brand-lockup--single-line .brand-lockup__type {
  display: block;
  line-height: 1;
}

.brand-lockup--single-line .brand-lockup__type strong {
  font-size: 1.9rem;
  letter-spacing: 0.055em;
  white-space: nowrap;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.cart-link,
.mobile-menu a,
.footer-column a,
.footer-column button {
  font-family: var(--condensed);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  flex: none;
  align-items: center;
  gap: 20px;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.button {
  min-height: 44px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--condensed);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease;
}

.header-cta {
  white-space: nowrap;
}

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

.button--pink {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.site-header .button--pink,
.build-band .button--pink,
.site-footer .button--pink {
  box-shadow: 4px 4px 0 var(--paper-light);
}

.button--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper-light);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 45;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms ease;
}

.mobile-menu--open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 18px 0;
  color: var(--paper-light);
  font-size: 2rem;
  border-bottom: 1px solid var(--line-light);
}

.hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - 72px), 780px);
  isolation: isolate;
  overflow: hidden;
  background-color: var(--paper);
  background-image: url('https://assets.bigcartel.com/product_images/428133999/paper-texture.png');
  background-size: 620px 620px;
}

.hero::after {
  content: '';
  position: absolute;
  right: -2%;
  bottom: -34px;
  left: -2%;
  z-index: 3;
  height: 70px;
  background-color: var(--paper);
  background-image: url('https://assets.bigcartel.com/product_images/428133999/paper-texture.png');
  background-size: 620px 620px;
  clip-path: polygon(0 0, 12% 30%, 22% 18%, 34% 52%, 45% 28%, 58% 62%, 70% 24%, 83% 54%, 100% 22%, 100% 100%, 0 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__media picture {
  width: 100%;
  height: 100%;
  display: block;
}

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

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 80px;
}

.hero h1 {
  width: min(610px, 46vw);
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.8rem, 9.3vw, 9.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero p {
  margin: 36px 0 24px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-handle {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--condensed);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-icon {
  width: 1.35em;
  height: 1.35em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon__dot {
  fill: currentColor;
  stroke: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.build-band {
  position: relative;
  z-index: 4;
  background: var(--ink);
  color: var(--paper-light);
  border-bottom: 1px solid var(--line-light);
}

.build-band__inner {
  min-height: 278px;
  padding-block: 54px;
  display: grid;
  grid-template-columns: 0.8fr 1.45fr 0.8fr;
  align-items: center;
  gap: 46px;
}

.build-band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 5vw, 5.7rem);
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
}

.build-band h2 span,
.build-band h2 em {
  display: block;
}

.build-band h2 em {
  color: var(--pink);
  font-style: normal;
}

.build-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.build-type {
  min-height: 132px;
  padding: 18px 10px;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--paper-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.build-type span {
  font-family: var(--condensed);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.build-type__price {
  display: none;
  font-family: var(--condensed);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.build-type--red svg { color: var(--red); }
.build-type--cyan svg { color: var(--cyan); }
.build-type--pink svg { color: var(--pink); }

.build-type:hover,
.build-type--selected {
  background: var(--paper-light);
  color: var(--ink);
  transform: translateY(-4px);
}

.build-type--selected svg {
  color: var(--red);
}

.build-band__offer {
  padding-left: 32px;
  border-left: 2px solid var(--paper-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.build-band__offer span,
.build-band__offer strong {
  font-family: var(--condensed);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.build-band__offer b {
  margin: 6px 0 18px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 3.35rem;
  font-weight: 400;
  line-height: 1;
}

.products-section {
  padding: 76px 0 88px;
}

.section-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.section-heading-row h2,
.about-copy h2,
.process-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 5.4vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.heading-rule {
  width: 54px;
  height: 5px;
  margin-top: 14px;
  display: block;
  background: var(--red);
}

.text-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.product-rail {
  position: relative;
  margin-top: 42px;
  padding-inline: 56px;
}

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

.product-grid--mobile {
  display: none;
}

.product-card {
  min-width: 0;
  text-align: center;
}

.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--paper-light);
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0 solid var(--pink);
  pointer-events: none;
  transition: border-width 150ms ease;
}

.product-card:hover .product-card__image::after {
  border-width: 8px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.product-card__name,
.product-card strong {
  display: block;
  font-family: var(--condensed);
  font-weight: 800;
  text-transform: uppercase;
}

.product-card__name {
  margin-top: 18px;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.product-card strong {
  margin-top: 2px;
  font-size: 1.7rem;
}

.rail-button {
  position: absolute;
  top: 42%;
  width: 46px;
  height: 62px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.rail-button--left { left: 0; }
.rail-button--right { right: 0; }

.gift-section {
  position: relative;
  padding-block: 76px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-light);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.gift-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: min(34vw, 480px);
  height: 12px;
  background: var(--pink);
}

.gift-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
}

.gift-section__media {
  padding: clamp(10px, 1.3vw, 18px);
  background: var(--paper-light);
  border: 2px solid var(--paper-light);
  box-shadow: 10px 10px 0 var(--cyan), 16px 16px 0 var(--pink);
}

.gift-section__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.gift-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gift-section h2 {
  max-width: 520px;
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(4.6rem, 7vw, 7.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.82;
  text-transform: uppercase;
}

.gift-section__copy > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 248, 234, 0.76);
  font-size: 1.04rem;
  line-height: 1.52;
}

.gift-amounts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.gift-amount {
  min-height: 54px;
  padding: 8px;
  border: 2px solid rgba(255, 248, 234, 0.55);
  background: transparent;
  color: var(--paper-light);
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.gift-amount:hover,
.gift-amount.is-selected {
  border-color: var(--cyan);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--pink);
}

.gift-custom-amount {
  min-height: 54px;
  border: 2px solid rgba(255, 248, 234, 0.55);
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: stretch;
  background: transparent;
  color: var(--paper-light);
}

.gift-custom-amount:focus-within,
.gift-custom-amount.is-selected {
  border-color: var(--cyan);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--pink);
}

.gift-custom-amount__step {
  min-width: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--condensed);
  font-size: 1.35rem;
  font-weight: 800;
  cursor: pointer;
}

.gift-custom-amount__step:hover:not(:disabled),
.gift-custom-amount__step:focus-visible {
  background: var(--cyan);
  color: var(--ink);
}

.gift-custom-amount__step:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gift-custom-amount__field {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 800;
}

.gift-custom-amount__field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: textfield;
}

.gift-custom-amount__field input::-webkit-inner-spin-button,
.gift-custom-amount__field input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.gift-custom-amount__hint {
  display: block;
  margin-top: 10px;
  color: rgba(255, 248, 234, 0.68);
  font-size: 0.76rem;
  line-height: 1.35;
}

.gift-custom-amount__hint.is-error {
  color: var(--pink);
}

.gift-section__selection {
  margin-top: 20px;
  padding-block: 14px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--condensed);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gift-section__selection strong {
  color: var(--pink);
  font-size: 1.8rem;
}

.gift-section__action {
  margin-top: 22px;
}

.gift-section__action:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gift-section__copy .gift-section__note {
  margin-top: 12px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.process-section {
  display: grid;
  grid-template-columns: 0.83fr 2.17fr;
  background: var(--ink);
  color: var(--paper-light);
}

.process-intro {
  min-height: 340px;
  padding: 62px clamp(36px, 5vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--pink);
  color: var(--paper-light);
}

.process-intro h2 {
  font-size: clamp(3.4rem, 4.5vw, 5rem);
}

.process-intro p {
  max-width: 340px;
  margin: 24px 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  min-width: 0;
  padding: 50px 24px 40px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.process-step--paper { background: var(--paper); }
.process-step--cream { background: var(--paper-light); }
.process-step--cyan { background: var(--cyan); }
.process-step--blue { background: var(--blue); }

.process-step span,
.process-step h3 {
  font-family: var(--condensed);
  font-weight: 800;
  text-transform: uppercase;
}

.process-step span {
  margin-top: 16px;
  font-size: 1.7rem;
}

.process-step h3 {
  margin: 0;
  font-size: 1.4rem;
}

.process-step p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.about-section {
  padding: 82px 0;
}

.about-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.7fr);
  align-items: center;
  gap: 64px;
}

.about-portrait {
  position: relative;
  isolation: isolate;
}

.about-portrait img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 10px solid var(--ink);
  filter: contrast(1.12);
}

.about-portrait::before,
.about-portrait::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 52%;
  height: 42%;
}

.about-portrait::before {
  top: -18px;
  right: -18px;
  background: var(--red);
}

.about-portrait::after {
  bottom: -18px;
  left: -18px;
  background: var(--cyan);
}

.about-copy h3 {
  margin: 6px 0 0;
  font-family: var(--condensed);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.about-copy p {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--muted-ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.work-section {
  background: var(--ink);
  color: var(--paper-light);
  overflow: hidden;
}

.work-section__bar {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.work-section__bar h2,
.work-section__bar a {
  font-family: var(--condensed);
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.work-section__actions,
.work-scroll-controls {
  display: flex;
  align-items: center;
}

.work-section__actions {
  gap: 22px;
}

.work-scroll-controls {
  gap: 7px;
}

.work-scroll-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--paper-light);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.work-scroll-controls button:hover {
  background: var(--cyan);
  color: var(--ink);
  transform: translateY(-2px);
}

.work-section__bar h2 {
  margin: 0;
  font-size: 1.55rem;
}

.work-section__bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.work-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(330px, 31vw, 500px);
  grid-template-columns: none;
  height: clamp(330px, 31vw, 500px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--pink) var(--ink);
  scrollbar-width: thin;
}

.work-grid.is-auto-scrolling {
  scroll-behavior: auto;
}

.work-grid a {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 2px solid var(--ink);
  scroll-snap-align: start;
}

.work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.work-grid a:hover img {
  transform: scale(1.05);
  filter: saturate(1.12);
}

.work-grid a span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 10px 12px;
  background: rgba(10, 10, 9, 0.86);
  color: var(--paper-light);
  font-family: var(--condensed);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.1;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.work-grid a:hover span,
.work-grid a:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.work-grid a:focus-visible {
  outline-offset: -5px;
}

.site-footer {
  background: var(--ink);
  color: var(--paper-light);
  border-top: 1px solid var(--line-light);
}

.site-footer__inner {
  min-height: 280px;
  padding-block: 58px 44px;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.72fr) 0.8fr;
  gap: 48px;
}

.footer-brand p {
  margin: 22px 0 0;
  color: rgba(255, 248, 234, 0.76);
  line-height: 1.45;
}

.social-handle--light {
  color: var(--paper-light);
}

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

.footer-column h2 {
  margin: 0 0 8px;
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 248, 234, 0.74);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-transform: none;
  cursor: pointer;
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--pink);
}

.footer-flash {
  position: relative;
  min-height: 120px;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-flash svg:not(:first-child) {
  position: absolute;
}

.footer-flash svg:nth-child(2) { top: 12px; right: 14px; }
.footer-flash svg:nth-child(3) { right: 6px; bottom: 28px; }
.footer-flash svg:nth-child(4) { top: 52%; left: 4px; }

.footer-bottom {
  min-height: 54px;
  border-top: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 248, 234, 0.6);
  font-family: var(--condensed);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 24px;
  background: rgba(10, 10, 9, 0.86);
  display: grid;
  place-items: center;
}

.commission-modal,
.care-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-padding: 64px 0 24px;
  -webkit-overflow-scrolling: touch;
  border: 6px solid var(--ink);
  background-color: var(--paper);
  background-image: url('https://assets.bigcartel.com/product_images/428133999/paper-texture.png');
  background-size: 620px 620px;
  box-shadow: 12px 12px 0 var(--pink);
}

.care-modal {
  width: min(780px, 100%);
  box-shadow: 12px 12px 0 var(--cyan);
}

.care-modal__content {
  padding: 52px 58px 56px;
}

.care-modal__eyebrow {
  color: var(--cyan);
  font-family: var(--condensed);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-modal h2 {
  margin: 6px 58px 0 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.care-modal__intro {
  max-width: 570px;
  margin: 14px 0 24px;
  color: var(--muted-ink);
  font-weight: 500;
  line-height: 1.42;
}

.care-accordion {
  border-bottom: 2px solid var(--ink);
}

.care-accordion details {
  border-top: 2px solid var(--ink);
}

.care-accordion summary {
  min-height: 60px;
  padding: 13px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--condensed);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.care-accordion summary::-webkit-details-marker {
  display: none;
}

.care-accordion summary::after {
  content: '+';
  color: var(--pink);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.care-accordion details[open] summary::after {
  content: '–';
  color: var(--cyan);
}

.care-accordion p {
  max-width: 620px;
  margin: 0;
  padding: 0 48px 18px 4px;
  color: var(--muted-ink);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.care-modal__support {
  margin-top: 24px;
  padding: 18px;
  border-left: 7px solid var(--pink);
  background: var(--ink);
  color: var(--paper-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.care-modal__support div {
  display: grid;
  gap: 3px;
}

.care-modal__support strong {
  font-family: var(--condensed);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.care-modal__support span {
  color: rgba(255, 248, 234, 0.76);
  font-size: 0.86rem;
  line-height: 1.35;
}

.care-modal__support .button {
  flex: 0 0 auto;
  min-height: 46px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.modal-progress {
  height: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.modal-progress span {
  background: var(--ink);
}

.modal-progress span.is-active:nth-child(1) { background: var(--pink); }
.modal-progress span.is-active:nth-child(2) { background: var(--cyan); }
.modal-progress span.is-active:nth-child(3) { background: var(--blue); }

.modal-panel {
  padding: 58px 64px 62px;
}

.modal-panel h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.modal-panel > p {
  max-width: 540px;
  margin: 16px 0 28px;
  color: var(--muted-ink);
  font-weight: 500;
  line-height: 1.45;
}

.modal-build-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.modal-build-type {
  min-height: 130px;
  padding: 18px;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}

.modal-build-type span {
  font-family: var(--condensed);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-build-type__price {
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.modal-build-type--red svg { color: var(--red); }
.modal-build-type--cyan svg { color: var(--cyan); }
.modal-build-type--pink svg { color: var(--pink); }

.modal-build-type.is-selected {
  background: var(--ink);
  color: var(--paper-light);
  box-shadow: 5px 5px 0 var(--pink);
}

.modal-offer-line {
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--condensed);
  font-weight: 800;
  text-transform: uppercase;
}

.modal-offer-line span {
  color: var(--pink);
  font-size: 1.45rem;
}

.modal-next {
  margin-left: auto;
}

.modal-panel label {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--condensed);
  font-weight: 800;
  text-transform: uppercase;
}

.modal-panel input,
.modal-panel textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper-light);
  color: var(--ink);
  padding: 13px 14px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
}

.modal-panel textarea {
  resize: vertical;
}

.modal-form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.modal-success {
  text-align: center;
}

.modal-success > svg {
  color: var(--cyan);
}

.modal-success h2,
.modal-success p {
  margin-inline: auto;
}

.modal-success .button {
  margin-inline: auto;
}

.text-button {
  margin: 22px auto 0;
  padding: 8px;
  min-height: 44px;
  border: 0;
  background: transparent;
  display: block;
  font-family: var(--condensed);
  font-weight: 800;
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1500px) {
  .desktop-nav {
    gap: 24px;
  }

  .header-cta {
    padding-inline: 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 22px;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    width: 48vw;
    font-size: clamp(5.4rem, 9.2vw, 7.6rem);
  }

  .build-band__inner {
    grid-template-columns: 0.78fr 1.25fr 0.72fr;
    gap: 28px;
  }

  .site-footer__inner {
    grid-template-columns: 1.25fr repeat(3, 0.7fr);
  }

  .footer-flash {
    display: none;
  }
}

@media (max-width: 1000px) {
  .about-section__inner {
    grid-template-columns: minmax(180px, 0.85fr) minmax(280px, 1.35fr);
    gap: 24px;
  }
}

@media (max-width: 1180px) {
  .shell,
  .site-header__inner {
    width: min(100% - 40px, 820px);
  }

  .desktop-nav,
  .cart-link {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .build-band__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .build-band__offer {
    padding: 28px 0 0;
    border-top: 2px solid var(--paper-light);
    border-left: 0;
  }

  .product-grid {
    gap: 20px;
  }

  .process-section {
    grid-template-columns: 1fr;
  }

  .process-intro {
    min-height: 280px;
  }

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

  .about-section__inner {
    grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  }

  .site-footer__inner {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: clamp(440px, 66.667vw, 640px);
    display: block;
  }

  .hero__copy {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .hero h1 {
    width: 47%;
    max-width: none;
    font-size: clamp(4.8rem, 10.2vw, 7rem);
  }

  .hero p {
    margin-top: 24px;
  }

  .gift-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 38px;
  }
}

@media (max-width: 700px) {
  .site-header,
  .site-header__inner {
    height: 66px;
  }

  .mobile-menu {
    inset: 66px 0 0;
  }

  .brand-lockup--compact .brand-lockup__type strong {
    font-size: 1.3rem;
  }

  .brand-lockup__type small {
    font-size: 0.62rem;
  }

  .hero {
    min-height: clamp(340px, 86vw, 540px);
  }

  .hero h1 {
    width: 49%;
    font-size: clamp(2.8rem, 11.8vw, 4.5rem);
  }

  .hero__actions {
    width: 49%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .build-types {
    grid-template-columns: 1fr;
  }

  .build-type {
    min-height: 92px;
    flex-direction: row;
  }

  .products-section,
  .about-section {
    padding-block: 64px;
  }

  .section-heading-row {
    align-items: flex-end;
  }

  .section-heading-row h2 {
    max-width: 280px;
    font-size: 4rem;
  }

  .product-rail {
    padding-inline: 0;
  }

  .product-grid {
    margin-inline: 0;
    padding-inline: 0;
    grid-template-columns: repeat(3, minmax(260px, 78vw));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-grid--desktop {
    display: none;
  }

  .product-grid--mobile {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 78vw);
  }

  .product-card {
    scroll-snap-align: center;
  }

  .gift-section {
    padding-block: 48px;
  }

  .gift-section__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .gift-section h2 {
    font-size: 4.5rem;
  }

  .gift-section__copy > p {
    margin-top: 18px;
  }

  .rail-button {
    display: none;
  }

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

  .process-step {
    min-height: 230px;
    clip-path: none;
  }

  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-portrait {
    margin-inline: 18px;
  }

  .about-portrait img {
    width: 100%;
  }

  .about-copy {
    text-align: center;
  }

  .about-copy .heading-rule {
    margin-inline: auto;
  }

  .about-copy .social-handle {
    justify-content: center;
  }

  .work-section__bar {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  .work-section__actions {
    width: 100%;
    justify-content: space-between;
  }

  .work-grid {
    grid-auto-columns: min(78vw, 390px);
    height: min(78vw, 390px);
  }

  .work-grid a span {
    opacity: 1;
    transform: translateY(0);
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-panel {
    padding: 58px 24px 34px;
  }

  .modal-panel h2 {
    font-size: 4rem;
  }

  .modal-build-types {
    grid-template-columns: 1fr;
  }

  .modal-build-type {
    min-height: 84px;
    flex-direction: row;
  }

  .modal-offer-line,
  .modal-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .modal-next {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .shell,
  .site-header__inner {
    width: calc(100% - 28px);
  }

  .brand-lockup--compact .brand-lockup__type strong {
    font-size: 1.15rem;
  }

  .brand-lockup--compact .brand-lockup__type small {
    font-size: 0.54rem;
  }

  .hero {
    min-height: clamp(330px, 88vw, 390px);
  }

  .hero h1 {
    width: 49%;
    font-size: clamp(2.65rem, 11.5vw, 3.2rem);
  }

  .build-band h2,
  .section-heading-row h2,
  .about-copy h2,
  .process-intro h2 {
    font-size: 3.6rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-column {
    grid-column: auto;
  }

  .modal-backdrop {
    padding: 10px;
  }

  .commission-modal,
  .care-modal {
    max-height: calc(100vh - 20px);
    box-shadow: 6px 6px 0 var(--pink);
  }

  .modal-close {
    position: sticky;
    top: 10px;
    margin: 10px 10px -52px auto;
  }
}

/* Phone-first conversion pass: compact, complete, and immediately visible. */
@media (max-width: 700px) {
  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__copy {
    width: calc(100% - 28px);
    margin-inline: auto;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .hero h1 {
    width: 49%;
    font-size: clamp(2.65rem, 11.5vw, 3.2rem);
    line-height: 0.82;
  }

  .hero p {
    width: 49%;
    margin: 13px 0 12px;
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .hero__actions {
    width: 49%;
    gap: 7px;
  }

  .hero__actions .button {
    min-height: 38px;
    padding: 6px 8px;
    gap: 6px;
    font-size: 0.68rem;
  }

  .hero__actions .button svg {
    width: 15px;
    height: 15px;
  }

  .hero__actions .button--outline {
    background: rgba(255, 248, 234, 0.88);
  }

  .hero .social-handle {
    width: 49%;
    margin-top: 10px;
    gap: 9px;
    min-height: 44px;
    font-size: 1rem;
  }

  .hero .social-handle svg {
    width: 29px;
    height: 29px;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    z-index: -1;
  }

  .hero__media picture,
  .hero__media img {
    width: 100%;
    height: 100%;
  }

  .hero__media img {
    object-position: 65% center;
  }

  .build-band__inner {
    min-height: 0;
    padding-block: 28px;
    gap: 20px;
  }

  .build-band h2 {
    font-size: 3.25rem;
  }

  .build-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .build-type {
    min-height: 96px;
    padding: 9px 4px;
    flex-direction: column;
    gap: 4px;
  }

  .build-type svg {
    width: 32px;
    height: 32px;
  }

  .build-type span {
    font-size: 0.95rem;
  }

  .build-type__price {
    display: block;
  }

  .build-type:hover,
  .build-type--selected {
    transform: none;
  }

  .build-band__offer {
    padding: 16px 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
  }

  .build-band__offer span,
  .build-band__offer strong {
    grid-column: 1;
    font-size: 0.95rem;
  }

  .build-band__offer b {
    grid-column: 2;
    grid-row: 1 / 3;
    margin: 0;
    font-size: clamp(2.1rem, 9.3vw, 2.4rem);
    white-space: nowrap;
  }

  .build-band__offer .button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
  }

  .products-section,
  .about-section {
    padding-block: 44px;
  }

  .section-heading-row h2,
  .about-copy h2,
  .process-intro h2 {
    font-size: 3.2rem;
  }

  .section-heading-row h2 {
    max-width: 240px;
  }

  .product-rail {
    margin-top: 24px;
  }

  .product-card__name {
    margin-top: 14px;
  }

  .gift-section h2 {
    font-size: 4rem;
  }

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

  .gift-section__action {
    width: 100%;
  }

  .process-intro {
    min-height: 0;
    padding: 22px 20px;
  }

  .process-intro p {
    margin-top: 16px;
    font-size: 1rem;
  }

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

  .process-step {
    min-height: 170px;
    padding: 22px 10px;
  }

  .process-step svg {
    width: 38px;
    height: 38px;
  }

  .process-step span {
    margin-top: 10px;
    font-size: 1.35rem;
  }

  .process-step h3 {
    font-size: 1.15rem;
  }

  .process-step p {
    margin-top: 6px;
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .about-section__inner {
    gap: 26px;
  }

  .about-portrait {
    margin-inline: 14px;
  }

  .about-copy h3 {
    font-size: 1.7rem;
  }

  .about-copy p {
    margin-top: 16px;
    font-size: 1rem;
  }

  .about-copy .social-handle {
    margin-top: 16px;
    gap: 12px;
    min-height: 48px;
    font-size: 1.4rem;
  }

  .about-copy .social-handle svg {
    width: 34px;
    height: 34px;
  }

  .work-scroll-controls button {
    width: 44px;
    height: 44px;
  }

  .site-footer__inner {
    min-height: 0;
    padding-block: 28px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .footer-brand .social-handle {
    margin-top: 10px;
  }

  .footer-column {
    grid-column: auto;
    gap: 0;
  }

  .footer-column h2 {
    margin-bottom: 4px;
  }

  .footer-column a,
  .footer-column button {
    min-height: 38px;
    font-size: 0.9rem;
  }

  .footer-column:last-of-type {
    grid-column: 1 / -1;
    flex-flow: row wrap;
    column-gap: 20px;
  }

  .footer-column:last-of-type h2 {
    flex-basis: 100%;
  }

  .footer-bottom {
    min-height: 0;
    padding-top: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    gap: 4px;
    font-size: 0.68rem;
  }

  .modal-backdrop {
    padding-top: max(10px, env(safe-area-inset-top));
    padding-right: max(10px, env(safe-area-inset-right));
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    padding-left: max(10px, env(safe-area-inset-left));
  }

  .commission-modal,
  .care-modal {
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    scroll-padding-top: 60px;
    scroll-padding-bottom: calc(20px + env(safe-area-inset-bottom));
    border-width: 4px;
    box-shadow: 6px 6px 0 var(--pink);
  }

  .modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .modal-panel {
    padding: 48px 16px calc(16px + env(safe-area-inset-bottom));
  }

  .modal-panel h2 {
    font-size: clamp(2.8rem, 13vw, 3.45rem);
  }

  .modal-panel > p {
    margin: 10px 0 14px;
    line-height: 1.38;
  }

  .modal-build-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .modal-build-type {
    min-height: 96px;
    padding: 9px 4px;
    flex-direction: column;
    gap: 4px;
  }

  .modal-build-type svg {
    width: 30px;
    height: 30px;
  }

  .modal-build-type span {
    font-size: 0.95rem;
  }

  .modal-build-type__price {
    font-size: 0.84rem;
  }

  .modal-build-type.is-selected {
    box-shadow: 3px 3px 0 var(--pink);
  }

  .modal-offer-line {
    margin: 14px 0 12px;
    padding: 11px 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    text-align: right;
  }

  .modal-offer-line span {
    font-size: 1.2rem;
    text-align: left;
  }

  .modal-next {
    width: 100%;
    min-height: 48px;
  }

  .modal-panel label {
    margin-bottom: 12px;
    gap: 5px;
  }

  .modal-panel input,
  .modal-panel textarea {
    padding: 11px 12px;
  }

  .modal-panel textarea {
    min-height: 92px;
  }

  .modal-form-actions {
    margin-top: 16px;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: stretch;
    gap: 10px;
  }

  .modal-form-actions .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.8rem;
  }

  .modal-success > svg {
    width: 56px;
    height: 56px;
  }

  .care-modal__content {
    padding: 48px 16px calc(16px + env(safe-area-inset-bottom));
  }

  .care-modal h2 {
    margin-right: 48px;
    font-size: clamp(3.2rem, 15vw, 4.25rem);
  }

  .care-modal__intro {
    margin: 10px 0 16px;
    font-size: 0.9rem;
  }

  .care-accordion summary {
    min-height: 54px;
    padding: 10px 2px;
    font-size: 1.08rem;
  }

  .care-accordion p {
    padding: 0 34px 14px 2px;
    font-size: 0.87rem;
    line-height: 1.38;
  }

  .care-modal__support {
    margin-top: 16px;
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .care-modal__support .button {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .site-footer__inner {
    padding-block: 22px 16px;
    gap: 14px 18px;
  }

  .footer-brand p {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.32;
  }

  .footer-brand .social-handle {
    margin-top: 8px;
  }

  .footer-column a,
  .footer-column button {
    min-height: 34px;
    font-size: 0.84rem;
  }

  .footer-column:last-of-type {
    column-gap: 14px;
  }

  .footer-bottom {
    padding-top: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

@media (hover: none) {
  .work-grid a span {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Big Cartel production layer */
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
[hidden] { display: none !important; }
.skip-link { position: fixed; left: 12px; top: 12px; z-index: 9999; transform: translateY(-180%); background: var(--paper-light); color: var(--ink); border: 2px solid var(--ink); padding: 10px 14px; font-weight: 800; }
.skip-link:focus { transform: none; }
.dg-page main > section[id] { scroll-margin-top: 86px; }
.dg-page .menu-button { display: none; width: 46px; height: 46px; padding: 10px 6px; border: 0; background: transparent; color: var(--paper-light); }
.dg-page .menu-button span { display: block; width: 100%; height: 4px; margin: 5px 0; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
.dg-page .cart-link svg { width: 20px; height: 20px; }
.build-symbol { display: grid; place-items: center; min-height: 42px; font-family: var(--font-display); font-size: 42px; line-height: 1; }
.process-icon { display: block; width: 46px; height: 46px; flex: none; }
.dg-product-rail { position: relative; }
.dg-product-grid { display: flex; gap: 28px; overflow-x: auto; overflow-y: hidden; padding: 8px 4px 22px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.dg-product-grid::-webkit-scrollbar { display: none; }
.dg-product-grid .product-card { flex: 0 0 calc((100% - 56px) / 3); scroll-snap-align: start; }
.dg-product-grid .product-card__image img { object-fit: contain; }
.product-card__status { display: block; color: var(--red); font: 800 14px/1 var(--font-condensed); text-transform: uppercase; }
.gift-custom-amount { display: flex; min-height: 62px; border: 2px solid rgba(10,10,9,.35); background: transparent; align-items: center; padding: 0 14px; }
.gift-custom-amount.is-selected { outline: 3px solid var(--cyan); box-shadow: 6px 6px 0 var(--pink); }
.gift-custom-amount input { min-width: 0; width: 100%; border: 0; background: transparent; color: inherit; font: 800 21px/1 var(--font-condensed); }
.gift-custom-amount input:focus { outline: 0; }
.modal-status { min-height: 1.5em; font-weight: 700; }
.work-grid > a { color: var(--paper-light); }
.work-grid > a img { object-fit: cover; }
.footer-flash { color: var(--red); font: inherit; transform: none; }

/* Shared native store pages */
.dg-page:not(#home) main { min-height: 62vh; padding: clamp(40px, 6vw, 92px) 20px; background-color: var(--paper); background-image: url('https://assets.bigcartel.com/product_images/428133999/paper-texture.png'); color: var(--ink); }
.store-shell { width: min(1180px, 100%); margin: 0 auto; }
.store-page-header { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: clamp(30px, 5vw, 60px); border-bottom: 4px solid var(--ink); padding-bottom: 18px; }
.store-page-header h1, .product-info h1 { margin: 0; font: 400 clamp(52px, 8vw, 94px)/.9 var(--font-display); text-transform: uppercase; }
.store-page-header p { max-width: 520px; margin: 0; font-size: 18px; }
.store-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 3vw, 34px); }
.store-product-card { display: flex; flex-direction: column; color: var(--ink); text-align: center; text-decoration: none; }
.store-product-card__image { aspect-ratio: 1 / 1.12; display: grid; place-items: center; overflow: hidden; border: 2px solid rgba(10,10,9,.25); background: var(--paper-light); padding: 18px; }
.store-product-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform .2s ease; }
.store-product-card:hover img { transform: scale(1.025); }
.store-product-card h2 { margin: 16px 0 2px; font: 800 25px/1 var(--font-condensed); text-transform: uppercase; }
.store-product-card strong { font: 400 31px/1 var(--font-display); }
.store-product-card small { margin-top: 7px; color: var(--red); font-weight: 800; text-transform: uppercase; }
.store-empty { padding: 50px; border: 2px solid var(--ink); text-align: center; background: var(--paper-light); }
.store-pagination { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }
.store-pagination a, .store-pagination span { border: 2px solid var(--ink); padding: 10px 14px; color: var(--ink); font-weight: 800; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); gap: clamp(28px, 6vw, 84px); align-items: start; }
.product-gallery { display: grid; gap: 18px; }
.product-gallery__image { display: grid; place-items: center; min-height: 420px; background: var(--paper-light); border: 2px solid rgba(10,10,9,.25); padding: clamp(18px, 4vw, 38px); }
.product-gallery__image img { width: 100%; height: auto; max-height: 820px; object-fit: contain; }
.product-info { position: sticky; top: 110px; }
.product-info__price { margin: 20px 0; color: var(--cyan-dark, #2e9ea5); font: 400 48px/1 var(--font-display); }
.product-info__status { margin-bottom: 20px; color: var(--red); font: 800 22px/1 var(--font-condensed); text-transform: uppercase; }
.product-form { display: grid; gap: 14px; margin: 28px 0; }
.product-form select, .contact-form input, .contact-form textarea { width: 100%; border: 2px solid var(--ink); border-radius: 0; background: var(--paper-light); color: var(--ink); padding: 15px; font: 600 17px/1.3 var(--font-body); }
.product-form .button, .contact-form .button, .cart-checkout { width: 100%; min-height: 58px; }
.product-description { font-size: 17px; line-height: 1.65; }
.product-description a { color: inherit; text-decoration: underline; }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(34px, 7vw, 90px); }
.contact-intro h2 { font: 400 54px/.95 var(--font-display); text-transform: uppercase; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font: 800 18px/1 var(--font-condensed); text-transform: uppercase; }
.form-errors, .message-sent { margin-bottom: 24px; border: 2px solid var(--ink); background: var(--paper-light); padding: 18px; }
.cart-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.cart-row { display: grid; grid-template-columns: 130px 1fr 110px 130px; gap: 20px; align-items: center; border-bottom: 2px solid rgba(10,10,9,.25); padding-bottom: 18px; }
.cart-row img { width: 130px; height: 130px; object-fit: contain; background: var(--paper-light); }
.cart-row h2 { margin: 0; font: 800 24px/1 var(--font-condensed); text-transform: uppercase; }
.cart-row input { width: 74px; border: 2px solid var(--ink); background: var(--paper-light); padding: 10px; text-align: center; font-weight: 800; }
.cart-row__price { font: 400 30px/1 var(--font-display); text-align: right; }
.cart-summary { display: flex; justify-content: flex-end; margin-top: 34px; }
.cart-summary__inner { width: min(410px, 100%); border: 3px solid var(--ink); background: var(--paper-light); padding: 24px; }
.cart-summary__total { display: flex; justify-content: space-between; margin-bottom: 22px; font: 800 26px/1 var(--font-condensed); text-transform: uppercase; }

@media (max-width: 900px) {
  .dg-page .desktop-nav, .dg-page .header-cta, .dg-page .cart-link { display: none; }
  .dg-page .menu-button { display: block; }
  .dg-page .site-header__inner { padding-inline: 20px; }
  .dg-page .brand-lockup--single-line .brand-lockup__type strong { white-space: nowrap; font-size: clamp(16px, 4vw, 22px); }
  .dg-product-grid .product-card { flex-basis: min(78vw, 380px); }
  .dg-product-rail .rail-button { display: none; }
  .store-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-layout, .contact-layout { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .cart-row { grid-template-columns: 92px 1fr 80px; }
  .cart-row img { width: 92px; height: 92px; }
  .cart-row__price { grid-column: 2 / 4; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 74px; }
  .dg-page main > section[id] { scroll-margin-top: 74px; }
  .dg-page .site-header { min-height: 74px; }
  .dg-page .site-header__inner { min-height: 74px; padding: 10px 18px; }
  .dg-page .brand-lockup--single-line .brand-lockup__type strong { font-size: 17px; letter-spacing: .05em; }
  .dg-page .mobile-menu { top: 74px; max-height: calc(100dvh - 74px); overflow-y: auto; }
  .dg-product-grid { gap: 14px; margin-inline: -2px; padding-bottom: 16px; }
  .dg-product-grid .product-card { flex-basis: calc(88vw - 40px); }
  .gift-custom-amount { grid-column: 1 / -1; }
  .work-grid > a { flex-basis: 82vw; }
  .store-page-header { display: block; }
  .store-page-header p { margin-top: 15px; }
  .store-product-grid { grid-template-columns: 1fr; }
  .store-product-card__image { aspect-ratio: 1 / 1.05; }
  .product-gallery__image { min-height: 300px; padding: 12px; }
  .product-info h1 { font-size: 58px; }
  .cart-row { grid-template-columns: 76px 1fr; gap: 12px; }
  .cart-row img { width: 76px; height: 76px; }
  .cart-row__qty, .cart-row__price { grid-column: 2; text-align: left; }
}
