:root {
  --ink: #11100e;
  --paper: #f5efe3;
  --cream: #fffaf0;
  --stone: #d8d0c0;
  --muted: #6b6256;
  --green: #173f31;
  --red: #9e1b28;
  --albero: #d6a438;
  --terracotta: #a95932;
  --night: #0f1116;
  --navy: #18233b;
  --white: #ffffff;
  --radius: 0;
  --shadow: 0 18px 42px rgba(17, 16, 14, 0.14);
  --font-body: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-editorial: "Cormorant Garamond", "Bodoni 72", Georgia, serif;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
}

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

.announcement {
  min-height: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 8px 18px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.8rem;
}

.announcement span:nth-child(2) {
  color: var(--albero);
}

.announcement span:last-child {
  text-align: right;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 68px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(17, 16, 14, 0.12);
  background: rgba(245, 239, 227, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.cart-button,
.menu-toggle,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.site-nav {
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.cart-button,
.menu-toggle,
.button,
.add-button,
.size-button,
.cart-close {
  min-height: 42px;
  border-radius: var(--radius);
}

.site-nav a {
  padding: 11px 14px;
  color: rgba(17, 16, 14, 0.72);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(17, 16, 14, 0.08);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  justify-content: center;
  border: 1px solid rgba(17, 16, 14, 0.16);
  background: transparent;
  padding: 0 14px;
}

.cart-button {
  justify-self: end;
  gap: 10px;
  border: 1px solid rgba(17, 16, 14, 0.16);
  background: var(--cream);
  padding: 0 14px;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 17, 22, 0.82) 0%, rgba(15, 17, 22, 0.48) 42%, rgba(15, 17, 22, 0.05) 74%),
    linear-gradient(0deg, rgba(15, 17, 22, 0.68) 0%, rgba(15, 17, 22, 0) 42%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wordmark {
  --wordmark-x: 24px;
  --wordmark-y: 24svh;
  --wordmark-scale: 1;
  position: fixed;
  left: var(--wordmark-x);
  top: var(--wordmark-y);
  z-index: 50;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 11.5vw, 12rem);
  font-weight: 400;
  line-height: 0.72;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate3d(0, 0, 0) scale(var(--wordmark-scale));
  transform-origin: left top;
  transition: color 180ms ease;
  will-change: transform, left, top;
}

body.logo-arrived .hero-wordmark {
  color: var(--ink);
  opacity: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: 0 0 100px 24px;
}

.eyebrow,
.product-theme,
.theme-number {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section h2,
.lookbook h2,
.campaign-band h2,
.members h2 {
  margin: 0;
  line-height: 0.96;
  font-weight: 900;
  text-wrap: balance;
}

.hero-lede {
  max-width: 920px;
  margin: 20px 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.6vw, 4.45rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.03;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button,
.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
  min-width: 132px;
}

.button.primary,
.add-button {
  background: var(--ink);
  color: var(--cream);
}

.button.ghost {
  border-color: rgba(255, 250, 240, 0.55);
  color: var(--cream);
}

.button.dark {
  background: var(--cream);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.button:hover,
.button:focus-visible,
.add-button:hover,
.add-button:focus-visible {
  transform: translateY(-1px);
}

.hero-meta {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.9rem;
}

.hero-meta span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 50%;
}

.drop-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(17, 16, 14, 0.12);
  background: var(--cream);
}

.drop-rail a {
  min-height: 68px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(17, 16, 14, 0.12);
  font-weight: 800;
}

.drop-rail a:last-child {
  border-right: 0;
}

.drop-rail a:hover,
.drop-rail a:focus-visible {
  background: var(--albero);
}

.section {
  padding: 86px 24px;
}

.section-head {
  width: min(1180px, 100%);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: end;
}

.section-head.compact {
  align-items: start;
}

.section-head h2,
.lookbook h2,
.campaign-band h2,
.alameda-feature h2,
.members h2 {
  font-size: 3.2rem;
}

.section-head p:last-child {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.product-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 12px;
  box-shadow: 0 16px 44px rgba(17, 16, 14, 0.08);
}

.product-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

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

.product-info {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-theme {
  color: var(--terracotta);
}

.product-info h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.12;
}

.price {
  margin: 0;
  white-space: nowrap;
  font-weight: 800;
}

.size-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.size-button {
  border: 1px solid rgba(17, 16, 14, 0.16);
  background: transparent;
  font-weight: 800;
}

.size-button.is-active,
.size-button:hover,
.size-button:focus-visible {
  background: var(--ink);
  color: var(--cream);
}

.add-button {
  width: 100%;
}

.folklore-section {
  background: var(--ink);
  color: var(--cream);
}

.folklore-section .section-head p:last-child {
  color: rgba(255, 250, 240, 0.7);
}

.theme-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.theme-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.theme-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.72;
}

.theme-card > * {
  position: relative;
  z-index: 1;
}

.theme-card h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
}

.theme-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
}

.theme-card.blossom::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 250, 240, 0.92) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 12%, rgba(255, 250, 240, 0.76) 0 3px, transparent 4px),
    linear-gradient(145deg, rgba(214, 164, 56, 0.5), rgba(23, 63, 49, 0.58));
}

.theme-card.night::before {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0) 0 22%, rgba(214, 164, 56, 0.58) 22% 24%, transparent 24% 100%),
    linear-gradient(145deg, #050506, #22151a 58%, #5e171e);
}

.theme-card.feria::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.92) 0 26px, rgba(158, 27, 40, 0.86) 26px 52px, rgba(23, 63, 49, 0.88) 52px 78px),
    linear-gradient(145deg, rgba(214, 164, 56, 0.35), rgba(17, 16, 14, 0.35));
  background-blend-mode: multiply;
}

.theme-card.alameda::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.8) 0 4px, transparent 4px 28px),
    radial-gradient(circle at 18% 24%, rgba(214, 164, 56, 0.62) 0 4px, transparent 5px),
    linear-gradient(145deg, #18233b 0%, #173f31 44%, #6b1e28 100%);
}

.lookbook,
.alameda-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(320px, 1fr);
  min-height: 760px;
  background: var(--night);
  color: var(--cream);
}

.lookbook-image,
.alameda-image {
  min-height: 620px;
}

.lookbook-image img,
.alameda-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-copy,
.alameda-copy {
  align-self: center;
  max-width: 590px;
  padding: 72px;
}

.lookbook-copy p:not(.eyebrow),
.alameda-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.08rem;
}

.alameda-feature {
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.82fr);
  background:
    linear-gradient(135deg, rgba(24, 35, 59, 0.94), rgba(17, 16, 14, 0.98)),
    var(--navy);
}

.alameda-image {
  overflow: hidden;
}

.campaign-band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  min-height: 620px;
  background: var(--paper);
}

.texture-panel,
.campaign-panel {
  position: relative;
  overflow: hidden;
}

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

.texture-panel {
  display: grid;
  align-items: center;
}

.texture-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 239, 227, 0.96), rgba(245, 239, 227, 0.5) 58%, rgba(245, 239, 227, 0.05));
}

.texture-panel div {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 48px));
  margin-left: 24px;
}

.members {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: end;
  padding: 86px 24px;
  background: var(--green);
  color: var(--cream);
}

.members-copy,
.signup-form {
  width: min(590px, 100%);
  justify-self: center;
}

.members-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.74);
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.signup-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-control input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.1);
  color: var(--cream);
  padding: 0 14px;
}

.signup-control input::placeholder {
  color: rgba(255, 250, 240, 0.56);
}

.form-message {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--albero);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px 24px;
  border-top: 1px solid rgba(17, 16, 14, 0.12);
  background: var(--cream);
}

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer nav {
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--muted);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(420px, 100%);
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  background: var(--cream);
  box-shadow: var(--shadow);
  padding: 20px;
  transform: translateX(104%);
  transition: transform 220ms ease;
}

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

.cart-top,
.cart-bottom > div,
.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.cart-top h2 {
  margin: 0;
}

.cart-close {
  border: 1px solid rgba(17, 16, 14, 0.16);
  background: transparent;
  padding: 0 14px;
}

.cart-items {
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 12px;
}

.cart-line {
  border-bottom: 1px solid rgba(17, 16, 14, 0.12);
  padding-bottom: 12px;
}

.cart-line p {
  margin: 0;
  font-weight: 800;
}

.cart-line small,
.empty-cart {
  color: var(--muted);
}

.cart-bottom {
  display: grid;
  gap: 16px;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  border: 0;
  background: rgba(15, 17, 22, 0.45);
}

.scrim.is-open {
  display: block;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  min-width: min(320px, calc(100% - 32px));
  transform: translate(-50%, 140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  padding: 12px 16px;
  text-align: center;
  transition: transform 220ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

/* Editorial storefront pass */
.announcement,
.site-nav a,
.cart-button,
.drop-rail a,
.button,
.add-button,
.size-button,
.product-info h3,
.site-footer,
.signup-form label {
  text-transform: uppercase;
}

.announcement {
  font-size: 0.76rem;
  font-weight: 700;
}

.site-header {
  min-height: 62px;
  padding: 10px 24px;
  background: var(--cream);
}

.brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.brand span,
.hero h1,
.section h2,
.lookbook h2,
.campaign-band h2,
.alameda-feature h2,
.members h2,
.type-strip p:first-child,
.theme-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.brand span {
  font-size: 1.35rem;
  line-height: 0.9;
  opacity: 0;
  transition: opacity 80ms ease;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

body.logo-arrived .brand small {
  opacity: 0;
}

body.logo-arrived .brand span {
  opacity: 1;
}

.site-nav a,
.cart-button,
.drop-rail a,
.button,
.add-button,
.size-button {
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-copy {
  width: min(1120px, calc(100% - 48px));
}

.hero-lede {
  font-weight: 600;
}

.type-strip {
  display: grid;
  gap: 8px;
  padding: 38px 24px 34px;
  border-bottom: 1px solid rgba(17, 16, 14, 0.14);
  background: var(--cream);
  text-align: center;
}

.type-strip p:first-child {
  margin: 0;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.86;
}

.type-strip p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.street-tape {
  padding: 0;
  background: var(--cream);
}

.street-head {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: end;
  padding: 80px 24px 28px;
}

.street-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
}

.street-head > p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.street-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  align-items: stretch;
}

.street-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ded5c7;
}

.street-shot.tall {
  grid-column: span 4;
  aspect-ratio: 3 / 4.6;
}

.street-shot.portrait {
  grid-column: span 4;
  aspect-ratio: 3 / 4.6;
}

.street-shot.wide {
  grid-column: span 8;
  aspect-ratio: 16 / 10;
}

.street-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(0.95);
}

.street-shot figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  margin: 0;
  background: rgba(17, 16, 14, 0.76);
  color: var(--cream);
  padding: 6px 8px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-head h2,
.lookbook h2,
.campaign-band h2,
.alameda-feature h2,
.members h2 {
  font-size: 4.2rem;
}

.product-grid {
  width: min(1280px, calc(100% - 48px));
  gap: 24px 18px;
}

.product-card {
  gap: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.product-media {
  border-radius: 0;
  background: #e6ded0;
}

.product-media img {
  object-position: center;
}

.product-info {
  min-height: 68px;
  border-top: 1px solid rgba(17, 16, 14, 0.18);
  padding-top: 10px;
}

.product-info h3 {
  font-size: 0.98rem;
}

.theme-card {
  border-radius: 0;
}

.theme-card h3 {
  font-size: 2.35rem;
  line-height: 0.94;
}

.lookbook-copy,
.alameda-copy {
  max-width: 640px;
}

@media (max-width: 940px) {
  .announcement {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
  }

  .announcement span:last-child {
    text-align: center;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    gap: 10px;
    padding: 10px 16px;
  }

  .menu-toggle {
    display: flex;
    justify-self: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(17, 16, 14, 0.12);
    border-radius: var(--radius);
    background: var(--cream);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .section-head,
  .theme-grid,
  .street-head,
  .lookbook,
  .alameda-feature,
  .campaign-band,
  .members {
    grid-template-columns: 1fr;
  }

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

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

  .street-shot.tall,
  .street-shot.portrait,
  .street-shot.wide {
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }

  .lookbook,
  .alameda-feature {
    min-height: 0;
  }

  .lookbook-image,
  .alameda-image {
    min-height: 560px;
  }

  .lookbook-copy,
  .alameda-copy {
    padding: 42px 24px 54px;
  }

  .campaign-band {
    min-height: 0;
  }

  .texture-panel,
  .campaign-panel {
    min-height: 430px;
  }

  .section-head h2,
  .lookbook h2,
  .campaign-band h2,
  .alameda-feature h2,
  .members h2 {
    font-size: 2.55rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 62px;
  }

  .brand span {
    max-width: 138px;
    font-size: 1.08rem;
    line-height: 0.96;
    white-space: normal;
  }

  .cart-button {
    padding: 0 10px;
  }

  .hero {
    min-height: 108svh;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(15, 17, 22, 0.36) 0%, rgba(15, 17, 22, 0.82) 68%),
      linear-gradient(90deg, rgba(15, 17, 22, 0.45), rgba(15, 17, 22, 0.08));
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px 34px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-lede {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .hero-actions {
    margin-top: 36px;
  }

  .hero-actions,
  .signup-control {
    grid-template-columns: 1fr;
    display: grid;
  }

  .button,
  .add-button {
    width: 100%;
  }

  .hero-meta {
    display: none;
  }

  .drop-rail {
    grid-template-columns: 1fr;
  }

  .drop-rail a {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 16, 14, 0.12);
  }

  .section,
  .members {
    padding: 58px 16px;
  }

  .street-tape {
    padding: 0;
  }

  .street-head {
    padding: 58px 16px 20px;
  }

  .section-head h2,
  .lookbook h2,
  .campaign-band h2,
  .alameda-feature h2,
  .members h2 {
    font-size: 2.1rem;
  }

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

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

  .street-shot.tall,
  .street-shot.portrait,
  .street-shot.wide {
    grid-column: 1;
    aspect-ratio: 4 / 5;
  }

  .product-card {
    padding: 10px;
  }

  .theme-card {
    min-height: 250px;
  }

  .lookbook-image,
  .alameda-image {
    min-height: 520px;
  }

  .texture-panel div {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .campaign-panel {
    min-height: 560px;
  }

  .site-footer,
  .site-footer div,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wordmark {
    position: absolute;
    left: 24px;
    top: 24svh;
    transform: none;
  }

  .brand span,
  .brand small {
    opacity: 1;
  }
}

body.logo-arrived .site-header .brand span {
  opacity: 1;
}

body.logo-arrived .site-header .brand small {
  opacity: 0;
}
