@import url("https://fonts.googleapis.com/css2?family=Shrikhand&family=Bebas+Neue&display=swap");

@font-face {
  font-family: "Teko";
  src: url("./assets/fonts/Teko-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #050505;
  --soft-ink: #8a9494;
  --paper: #080808;
  --paper-clean: #141414;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.10);
  --muted: rgba(255, 255, 255, 0.50);
  --red: #d60000;
  --display: "Cooper Black", "Bookman Old Style", Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", ui-monospace, Menlo, Monaco, Consolas, monospace;
  --ease-silk: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: #f0f0ee;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: #f0f0ee;
  overflow-x: hidden;
  animation: page-enter 480ms var(--ease-silk) both;
  transition: opacity 400ms var(--ease-silk), transform 400ms var(--ease-silk), filter 400ms var(--ease-silk);
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(0.985);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

body.is-locked {
  overflow: hidden;
}

body.is-leaving {
  opacity: 0;
  transform: translateY(44px) scale(0.96);
  filter: blur(8px);
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
    transition: opacity 220ms ease;
  }
  body.is-leaving {
    opacity: 0;
    transform: none;
    filter: none;
  }
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-grain {
  display: none;
}

.section-pad {
  padding: 64px 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(18px);
}


.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-right: 10px;
  font-family: "Teko", "Bebas Neue", var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  transition: opacity 220ms var(--ease-silk);
}

.brand-lockup:hover {
  opacity: 0.78;
}

.brand-lockup .logo-shell img {
  transition: transform 360ms var(--ease-silk);
}

.brand-lockup:hover .logo-shell img {
  transform: rotate(-12deg) scale(1.06);
}

.logo-shell {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: transparent;
}

.logo-shell img {
  display: block;
  width: 34px;
  height: 34px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-nav a,
.bag-button,
.menu-toggle,
.pill-link,
.filter-pill,
.add-button,
.close-bag,
.size-picker button {
  border: 0;
  border-radius: 999px;
  color: #f0f0ee;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 180ms var(--ease-silk),
    background-color 180ms var(--ease-silk),
    color 180ms var(--ease-silk),
    border-color 180ms var(--ease-silk),
    box-shadow 180ms var(--ease-silk);
}


.main-nav a,
.bag-button,
.menu-toggle {
  padding: 13px 18px;
}

.main-nav a.is-active,
.main-nav a:hover,
.bag-button,
.menu-toggle:hover,
.filter-pill.is-active,
.filter-pill:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #f0f0ee;
  box-shadow: none;
}

/* Active nav link gets a red underline accent */
.main-nav a.is-active {
  background: transparent;
  color: var(--red);
}


.bag-button span {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  min-height: 18px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  transition: box-shadow 300ms var(--ease-silk);
}

.bag-button span.has-items {
  box-shadow: 0 0 0 3px rgba(214, 0, 0, 0.25), 0 0 12px rgba(214, 0, 0, 0.3);
  animation: bag-pulse 2.4s ease-in-out infinite;
}

@keyframes bag-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(214, 0, 0, 0.25), 0 0 12px rgba(214, 0, 0, 0.3); }
  50% { box-shadow: 0 0 0 5px rgba(214, 0, 0, 0.1), 0 0 20px rgba(214, 0, 0, 0.18); }
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: end;
  gap: 22px;
  min-height: 760px;
  max-width: 1260px;
  margin: 0 auto;
  padding-top: 38px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 410px;
}

.eyebrow,
.mini-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 6.8rem;
}

.hero-line {
  max-width: 300px;
  color: var(--soft-ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-image {
  display: block;
  position: relative;
  z-index: 1;
  min-height: 590px;
  border-radius: 8px;
  background: radial-gradient(ellipse at 50% 42%, #1e1e1e 0%, #0c0c0c 55%, #080808 100%);
  cursor: pointer;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms var(--ease-silk);
}

.grain-frame,
.coming-soon-tile,
.story-mark,
.about-mark {
  position: relative;
  overflow: hidden;
}

.grain-frame::after,
.coming-soon-tile::after,
.story-mark::after,
.about-mark::after {
  content: none;
}

.float-card {
  position: absolute;
  z-index: 5;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
}

.hero-card {
  right: 28px;
  bottom: 104px;
  width: 260px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 5, 5, 0.92);
  color: var(--white);
}

.hero-card .mini-label,
.hero-card p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2.3rem;
  line-height: 1;
}

.mark-card {
  right: 300px;
  bottom: 44px;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 14px;
  width: 306px;
  padding: 10px 14px 10px 10px;
  background: #1a1a1a;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mark-card img {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  object-fit: cover;
  pointer-events: none;
}

.pill-link,
.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #1a1a1a;
  transition:
    transform 180ms var(--ease-silk),
    background-color 180ms var(--ease-silk),
    color 180ms var(--ease-silk),
    box-shadow 180ms var(--ease-silk),
    border-color 180ms var(--ease-silk);
}

.pill-link:hover,
.add-button:hover {
  transform: translateY(-2px);
}

.pill-link.dark,
.add-button {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.manifesto-band {
  position: relative;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.manifesto-band p {
  position: absolute;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
  opacity: 0.06;
  will-change: transform;
  letter-spacing: 0.05em;
}

.two-col,
.section-head,
.story-slice,
.product-hero,
.product-details,
.about-hero,
.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.drop-feature h2 {
  margin-bottom: 18px;
  font-size: 2.8rem;
}

.section-head h2,
.story-slice h2,
.detail-intro h2,
.page-intro h1 {
  margin-bottom: 18px;
  font-size: 3.8rem;
}

.about-hero h1 {
  margin-bottom: 18px;
  font-size: 2.4rem;
  line-height: 1.08;
  max-width: 26ch;
}

.about-copy h2 {
  margin-bottom: 18px;
  font-size: 2rem;
  line-height: 1.05;
}

.contact-copy h1 {
  margin-bottom: 18px;
  font-size: 3.15rem;
}

.feature-copy,
.story-slice p,
.about-copy p,
.page-intro p,
.contact-copy p,
.buy-panel p,
.accordion-list p,
.accordion-list li {
  color: var(--soft-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.spec-strip span,
.filter-pill {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 800;
}

.product-preview,
.shop-section {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  width: 100%;
  padding: 0 0 28px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-head h2 {
  margin: 0;
}

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

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

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

.product-card,
.motion-card,
.buy-panel,
.contact-form,
.accordion-list details,
.story-mark,
.about-mark,
.product-gallery {
  transition:
    transform 240ms var(--ease-silk),
    box-shadow 240ms var(--ease-silk),
    border-color 240ms var(--ease-silk);
}

.product-card:hover,
.motion-card:hover,
.accordion-list details:hover,
.buy-panel:hover,
.contact-form:hover {
  transform: translateY(-3px);
}

.product-image {
  display: block;
  aspect-ratio: 4 / 5;
  margin-bottom: 14px;
  border-radius: 8px;
  background: radial-gradient(ellipse at 50% 38%, #222222 0%, #0d0d0d 52%, #080808 100%);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 500ms var(--ease-silk);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  font-weight: 900;
}

.product-meta p,
.product-meta span {
  margin: 0;
}

.product-card small {
  display: block;
  min-height: 36px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.coming-soon-tile {
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--ink);
  color: var(--red);
  text-align: center;
}

.coming-soon-tile span {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.story-slice {
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  padding-top: 86px;
  padding-bottom: 86px;
}

.story-mark {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 36px;
  border-radius: 8px;
  background: var(--ink);
}

.story-mark img {
  width: min(62%, 340px);
  height: auto;
  max-width: none;
  pointer-events: none;
}

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

.story-copy .eyebrow {
  margin-bottom: 14px;
}

.story-copy h2 {
  max-width: 8.4ch;
  margin-bottom: 22px;
  line-height: 0.94;
}

.story-copy p {
  max-width: 42rem;
  margin-bottom: 28px;
}

.product-card:hover .product-image img,
.motion-card:hover video,
.motion-card:hover img,
.hero-image:hover img {
  transform: scale(1.018);
}

.page-shell {
  padding-top: 24px;
}

.page-intro {
  width: min(920px, 100%);
  margin-inline: auto;
  text-align: center;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.product-hero {
  align-items: start;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 34px;
  padding-top: 56px;
}

.product-gallery {
  position: sticky;
  top: 104px;
  display: block;
  aspect-ratio: 3 / 2;
  min-height: 0;
  padding: 0;
  border-radius: 8px;
  background: #0b0b0b;
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 520ms var(--ease-silk);
}

.image-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f0f0ee;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.buy-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.buy-panel h1 {
  margin-bottom: 12px;
  font-size: 4.8rem;
}

.price {
  color: #f0f0ee !important;
  font-family: var(--display);
  font-size: 3rem !important;
  line-height: 1;
}

.size-picker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 28px 0 14px;
}

.size-picker button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1a1a1a;
}

.size-picker .is-selected,
.size-picker button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

/* One-size stamp — replaces the size picker on the product page */
.one-size {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.one-size-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.one-size-value {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 900;
  color: #f0f0ee;
}

.add-button {
  width: 100%;
  min-height: 54px;
  margin-top: 8px;
}

.buy-note {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 0.74rem !important;
}

.product-details {
  align-items: start;
}

.motion-study {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.motion-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 28px;
}

.motion-head h2 {
  margin: 0;
  font-size: 3.4rem;
}

.motion-head p:last-child {
  max-width: 420px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

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

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

.motion-frame {
  border-radius: 8px;
  background: #0b0b0b;
  overflow: hidden;
}

.motion-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050505;
  transition: transform 500ms var(--ease-silk);
}

.motion-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: #050505;
  transition: transform 500ms var(--ease-silk);
}

.motion-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  padding: 14px 0 0;
}

.motion-meta span {
  font-weight: 900;
  line-height: 1.15;
}

.motion-meta small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: right;
}

.accordion-list {
  display: grid;
  gap: 10px;
}

.accordion-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.accordion-list summary {
  min-height: 58px;
  padding: 20px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.accordion-list p,
.accordion-list ul {
  margin: 0;
  padding: 0 20px 20px;
}

.accordion-list ul {
  list-style: none;
}

.accordion-list li + li {
  margin-top: 8px;
}

.about-hero {
  align-items: center;
}

.about-copy {
  align-items: start;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
}

.about-copy-intro {
  max-width: 470px;
}

.about-copy-intro .eyebrow {
  margin-bottom: 14px;
}

.about-copy h2 {
  max-width: 6.2ch;
  margin-bottom: 0;
  line-height: 0.94;
}

.about-copy-body {
  display: grid;
  gap: 24px;
  max-width: 760px;
  justify-self: end;
  padding-top: 6px;
}

.about-copy-body p {
  margin: 0;
}

.about-mark {
  display: grid;
  place-items: center;
  min-height: 480px;
  padding: 40px;
  border-radius: 8px;
  background: var(--ink);
}

.about-mark img {
  display: block;
  width: min(64%, 380px);
  height: auto;
  max-width: none;
  pointer-events: none;
}

.manifesto-list {
  display: grid;
  gap: 12px;
  width: min(980px, 100%);
  margin-inline: auto;
}

.manifesto-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  border-top: 1px solid var(--line);
}

.manifesto-item span {
  color: var(--red);
  font-family: var(--mono);
  font-weight: 900;
}

.manifesto-item p {
  margin: 0;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1.05;
}

.contact-page {
  align-items: start;
  padding-top: 78px;
}

.contact-copy {
  max-width: 760px;
}

.contact-copy h1 {
  max-width: 920px;
  margin-bottom: 24px;
  line-height: 0.94;
  text-wrap: balance;
}

.contact-line {
  display: block;
}

.contact-line + .contact-line {
  margin-top: 0.06em;
}

.red-word {
  color: var(--red);
}

.weird-flicker-wrap {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}

.weird-ghost {
  visibility: hidden;
}

#weird-flicker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-inline: 0;
  transform: none;
}

.weird-word {
  display: inline-block;
  margin-inline: 0.04em;
  font-family: "Shrikhand", var(--display);
  font-size: 1.08em;
  line-height: 0.9;
  transform: translateY(0.03em);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 14px;
  background: var(--paper-clean);
  color: #f0f0ee;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  min-height: 54px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 180ms var(--ease-silk), box-shadow 180ms var(--ease-silk);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(240, 240, 238, 0.32);
  font-weight: 600;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0f0ee' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.contact-form select option[value=""] {
  color: rgba(240, 240, 238, 0.4);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}

.form-status {
  margin: 4px 0 0;
  min-height: 1.2em;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 200ms ease;
}

.form-status[data-state="success"],
.form-status[data-state="error"] {
  opacity: 1;
}

.form-status[data-state="success"] {
  color: var(--ink);
}

.form-status[data-state="error"] {
  color: rgba(214, 0, 0, 0.85);
}

@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 56px));
  margin: 46px auto 0;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.7rem;
}

.site-footer span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.bag-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  justify-items: end;
  background: rgba(5, 5, 5, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-silk);
  backdrop-filter: blur(6px);
}

.bag-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bag-panel {
  width: min(420px, 100%);
  height: 100%;
  padding: 28px;
  background: var(--paper-clean);
  border-left: 1px solid var(--line);
  transform: translateX(40px);
  transition: transform 320ms var(--ease-silk);
}

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

.close-bag {
  float: right;
  min-height: 40px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
}

.bag-panel h2 {
  clear: both;
  font-size: 2.8rem;
}

.bag-empty,
.bag-line {
  margin: 22px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1a1a1a;
  font-weight: 900;
}

.bag-line span,
.bag-line small {
  display: block;
}

.bag-line small {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--mono);
}

[hidden] {
  display: none !important;
}

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 560ms var(--ease-silk),
    transform 560ms var(--ease-silk);
  transition-delay: calc(var(--reveal-order, 0) * 45ms);
}

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

@media (prefers-reduced-motion: reduce) {
  body,
  .main-nav a,
  .bag-button,
  .menu-toggle,
  .pill-link,
  .filter-pill,
  .add-button,
  .close-bag,
  .size-picker button,
  .product-card,
  .motion-card,
  .buy-panel,
  .contact-form,
  .accordion-list details,
  .story-mark,
  .about-mark,
  .product-gallery,
  .hero-image img,
  .product-image img,
  .product-gallery img,
  .motion-card video,
  .motion-card img,
  .reveal-up {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding: 48px 20px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    width: min(100% - 24px, 720px);
  }

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

  .bag-button {
    justify-self: end;
  }

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

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-clean);
  }

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

  .main-nav a {
    text-align: center;
  }

  .hero,
  .two-col,
  .section-head,
  .story-slice,
  .product-hero,
  .product-details,
  .about-hero,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

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

  .hero-image,
  .hero-image img {
    min-height: 500px;
  }

  .float-card {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .hero-card,
  .mark-card {
    width: 100%;
  }

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

  .motion-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-gallery {
    position: relative;
    top: auto;
    min-height: auto;
    aspect-ratio: auto;
  }

  .product-gallery img {
    width: 100%;
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 8px;
  }

  .brand-lockup span:last-child {
    display: none;
  }

  .main-nav a,
  .bag-button,
  .menu-toggle {
    padding: 12px 13px;
    font-size: 0.72rem;
  }

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

  .drop-feature h2,
  .section-head h2,
  .story-slice h2,
  .detail-intro h2,
  .about-copy h2,
  .page-intro h1,
  .about-hero h1,
  .contact-copy h1,
  .buy-panel h1 {
    font-size: 2.75rem;
  }

  .contact-copy h1 {
    font-size: 2.35rem;
  }

  .hero-image,
  .hero-image img {
    min-height: 390px;
  }

  .manifesto-band p {
    font-size: 1.35rem;
  }

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

  .motion-head h2 {
    font-size: 2.35rem;
  }

  .motion-card video {
    aspect-ratio: 16 / 9;
  }

  .size-picker {
    grid-template-columns: repeat(5, minmax(42px, 1fr));
  }

  .about-mark,
  .story-mark {
    min-height: 300px;
  }

  .manifesto-item {
    grid-template-columns: 46px 1fr;
  }

  .manifesto-item p {
    font-size: 1.55rem;
  }

  .site-footer {
    display: grid;
    width: min(100% - 40px, 1180px);
  }

  .site-footer span {
    text-align: left;
  }
}

/* ==========================================
   ABOUT PAGE — NEW LAYOUT
   ========================================== */

.about-main {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.about-main > .eyebrow {
  margin-bottom: 36px;
}

.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: center;
}

.about-mark-col img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: block;
  position: sticky;
  top: 100px;
}

.about-text-col {
  display: grid;
  gap: 22px;
}

.about-h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.05;
}

.about-text-col p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

/* body copy block */
.about-body-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}

.about-body-block p {
  margin: 0;
  color: #c0bdb8;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
}

.about-bold-line {
  color: #f0f0ee !important;
  font-family: var(--sans) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

.about-closer {
  font-family: var(--mono) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f0f0ee !important;
  line-height: 1.8 !important;
}

.sep-mark {
  color: var(--red);
  margin: 0 0.4em;
  font-size: 1.2em;
  vertical-align: 0.05em;
}

/* Dark callout — the question */
.about-callout {
  padding: 96px 28px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  margin-top: 80px;
}

.about-callout p {
  max-width: 860px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--white) !important;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-mark-col img {
    position: static;
    width: 140px;
    height: 140px;
  }

  .about-h2 {
    font-size: 2rem;
  }

  .about-callout p {
    font-size: 2.2rem;
  }
}

@media (max-width: 620px) {
  .about-callout {
    padding: 64px 24px;
  }

  .about-callout p {
    font-size: 1.7rem;
  }
}

/* ==========================================
   FOUNDER STAMP
   ========================================== */

.founder-stamp {
  display: flex;
  justify-content: flex-end;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}

.founder-stamp span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================
   MARQUEE
   ========================================== */

.manifesto-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================
   HERO ENTRANCE ANIMATIONS
   ========================================== */

@keyframes hero-copy-enter {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-copy {
  animation: hero-copy-enter 720ms var(--ease-silk) both;
  animation-delay: 60ms;
}

.hero-image {
  animation: hero-fade-in 900ms var(--ease-silk) both;
  animation-delay: 140ms;
}

.hero-card {
  animation: hero-fade-in 600ms var(--ease-silk) both;
  animation-delay: 360ms;
}

.mark-card {
  animation: hero-fade-in 600ms var(--ease-silk) both;
  animation-delay: 480ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy, .hero-image, .hero-card, .mark-card {
    animation: none;
  }
}

/* ==========================================
   STILLS CINEMA — pinned scroll gallery
   ========================================== */

.stills-cinema {
  position: relative;
  width: 100%;
  height: 380vh; /* ~47vh of scroll per image after 100vh sticky lock */
  background: var(--paper);
}

.cinema-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #050505;
}

.cinema-frame {
  position: absolute;
  inset: 0;
  /* Long, eased feather on the top edge. Multi-stop gradient approximates a
     smoothstep curve so the dissolve has no banding and no visible cut-off. */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.04) 2vh,
    rgba(0, 0, 0, 0.16) 5vh,
    rgba(0, 0, 0, 0.42) 9vh,
    rgba(0, 0, 0, 0.72) 14vh,
    rgba(0, 0, 0, 0.92) 18vh,
    rgba(0, 0, 0, 1) 22vh
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.04) 2vh,
    rgba(0, 0, 0, 0.16) 5vh,
    rgba(0, 0, 0, 0.42) 9vh,
    rgba(0, 0, 0, 0.72) 14vh,
    rgba(0, 0, 0, 0.92) 18vh,
    rgba(0, 0, 0, 1) 22vh
  );
}

.cinema-image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1);
  will-change: opacity;
}

.cinema-image.is-active {
  /* Opacity is driven directly by scroll position in JS for continuous crossfade. */
  transform: scale(1);
}

/* Slide 2 — horizontally flipped */
.cinema-image[data-cinema-image="1"] img {
  transform: scaleX(-1);
}

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

.cinema-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 96px 44px 44px;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0) 28%,
      rgba(0, 0, 0, 0) 70%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0) 38%
    );
}

.cinema-head .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.cinema-captions {
  position: relative;
  align-self: flex-start;
  width: 100%;
  max-width: 46ch;
  height: 110px;
  margin-top: 18px;
  text-align: left;
}

.cinema-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 260ms var(--ease-silk),
    transform 260ms var(--ease-silk);
}

.cinema-caption.is-active {
  opacity: 1;
  transform: translateY(0);
}

.cinema-index {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.cinema-title {
  margin: 0;
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: #f0f0ee;
}

.cinema-line {
  margin: 0;
  max-width: 42ch;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.cinema-progress {
  position: relative;
  margin-top: auto;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.cinema-progress-bar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms linear;
}

@media (prefers-reduced-motion: reduce) {
  .cinema-image,
  .cinema-caption {
    transition: opacity 200ms ease;
    transform: none !important;
  }
  .cinema-progress-bar {
    transition: none;
  }
}

@media (max-width: 980px) {
  .stills-cinema {
    height: auto;
    padding: 32px 0 8px;
  }

  .cinema-sticky {
    position: static;
    height: auto;
    background: transparent;
  }

  .cinema-frame {
    position: relative;
    inset: auto;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 20px;
    scrollbar-width: none;
  }

  .cinema-frame::-webkit-scrollbar {
    display: none;
  }

  .cinema-image {
    position: relative;
    inset: auto;
    flex: 0 0 84%;
    scroll-snap-align: center;
    aspect-ratio: 4 / 5;
    opacity: 1;
    transform: none;
    border-radius: 8px;
    overflow: hidden;
    background: #050505;
  }

  .cinema-overlay {
    position: relative;
    inset: auto;
    padding: 24px 20px 8px;
    background: transparent;
  }

  .cinema-head {
    margin-bottom: 14px;
  }

  .cinema-head .eyebrow {
    color: var(--muted);
  }

  .cinema-captions {
    height: 96px;
    margin-bottom: 0;
  }

  .cinema-progress {
    display: none;
  }
}

@media (max-width: 620px) {
  .cinema-title {
    font-size: 2rem;
  }
  .cinema-overlay {
    padding-left: 24px;
    padding-right: 24px;
  }
}
