/* ============================================================
 * Reset
 * ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-body);
  font-weight: var(--w-regular);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

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

/* ============================================================
 * Announcement bar
 * ============================================================ */
.annc-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sub);
  padding: 8px var(--gutter);
}
.annc-bar b { color: var(--ink); font-weight: var(--w-semi); }
.annc-bar a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
/* Sale variant — neon-pink promo bar. Inert until a page adds the --sale class (used during active sales). */
.annc-bar--sale { background: #FF1493; color: var(--ink); font-weight: 700; }
.annc-bar--sale b { color: var(--ink); font-weight: 800; }
.annc-bar--sale a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
/* Drop variant — black bar with neon-pink promo text (brand pink #FF1493, ~5.8:1). */
.annc-bar--drop { background: #000; color: #FF1493; }
.annc-bar--drop b { color: #FF1493; }
.annc-bar--drop a { color: #FF1493; text-decoration: underline; text-underline-offset: 2px; }
/* Sale price display — applied by i18n.js when the sale window is live. */
.price-was { color: var(--sub); text-decoration: line-through; text-decoration-thickness: 1px; font-weight: 400; margin-right: 6px; }
.price-now { color: #FF1493; }

/* ============================================================
 * Navigation
 * ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: grid;
  /* Mobile: hamburger left · logo centred · icons right (links live in drawer) */
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left logo right";
  align-items: center;
  column-gap: var(--space-sm);
  min-height: 56px;
  padding: 8px var(--gutter);
  z-index: 100;
}

/* The __left wrapper dissolves so the wordmark sits on its own grid track,
   letting the logo centre independently of the hamburger. */
.site-nav__left { display: contents; }

.site-nav__menu-toggle { grid-area: left; justify-self: start; }

.site-nav__right {
  grid-area: right;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__wordmark {
  grid-area: logo;
  justify-self: center;
  position: relative;   /* positioning context for the shimmer overlay */
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  line-height: 1;
}
.site-nav__logo {
  height: 40px;
  width: auto;
  display: block;
}

/* "yakamoz" — light drifting across the wordmark, the way it catches the
   metallic yarn on the Blade. The logo PNG has no alpha, so the sweep is
   masked to the letterforms with a derived alpha mask; the gradient itself
   moves on transform only (compositor-only motion, per CLAUDE.md). */
.site-nav__shimmer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: url(/assets/brand/tusea-logo-mask.png);
          mask-image: url(/assets/brand/tusea-logo-mask.png);
  -webkit-mask-size: contain;      mask-size: contain;
  -webkit-mask-repeat: no-repeat;  mask-repeat: no-repeat;
  -webkit-mask-position: center;   mask-position: center;
}
.site-nav__shimmer::before {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: 0;
  width: 60%;
  background: linear-gradient(100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 35%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.05) 65%,
    transparent 100%);
  transform: translateX(-170%);
  animation: yakamoz 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes yakamoz {
  0%, 55% { transform: translateX(-170%); }
  100%    { transform: translateX(330%); }
}
@media (prefers-reduced-motion: reduce) {
  .site-nav__shimmer { display: none; }
}

.site-nav__links {
  display: none; /* mobile: links live in the drawer */
  gap: 20px;
  font-size: var(--text-body);
  color: var(--ink);
}

.site-nav__link {
  font-size: var(--text-body);
  color: var(--ink);
  transition: opacity var(--dur-fast) ease;
}
.site-nav__link:hover { opacity: 0.5; }

.site-nav__icon-btn {
  background: none;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  position: relative;
  flex-shrink: 0;
}
.site-nav__icon-btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.site-nav__bag-count {
  position: absolute;
  top: 6px;
  right: 4px;
  font-size: 0.6rem;
  font-weight: var(--w-semi);
  line-height: 1;
  color: var(--sub);
}

/* Menu toggle button — mobile only */
.site-nav__menu-toggle {
  /* always visible on mobile, hidden on desktop */
}

/* Desktop: stack the larger centred logo above a centred link row */
@media (min-width: 720px) {
  .site-nav {
    grid-template-rows: auto auto;
    grid-template-areas:
      "left  logo  right"
      "links links links";
    row-gap: 8px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
  .site-nav__menu-toggle { display: none; }
  .site-nav__logo { height: 52px; }
  .site-nav__links {
    display: flex;
    grid-area: links;
    justify-self: center;
  }
}

/* ============================================================
 * Mobile nav drawer
 * ============================================================ */
.mobile-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-mid) var(--ease);
}
.mobile-nav[aria-hidden="false"] {
  max-height: 240px;
}
.mobile-nav ul {
  padding: var(--space-sm) var(--gutter) var(--space-md);
}
.mobile-nav li {
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: var(--text-body);
  color: var(--ink);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover { opacity: 0.5; }
@media (min-width: 720px) {
  .mobile-nav { display: none; }
}

/* ============================================================
 * Hero — split text + fit video
 * ============================================================ */
.hero {
  padding: clamp(24px, 4vw, 40px) var(--gutter) 0;
  max-width: 1180px;
  margin: 0 auto;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
  /* Mobile: copy appears above video */
}
.hero__eyebrow {
  font-size: var(--text-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sub);
  font-weight: var(--w-semi);
  margin: 0;
}
.hero__head {
  font-family: var(--serif);
  font-weight: 800;   /* heavy grotesque display — Rhode-style punch */
  font-size: clamp(1.9rem, 1.3rem + 2.7vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
  max-width: 20ch;
  margin: 2px 0 0;
}
.hero__sub {
  font-size: clamp(0.82rem, 0.75rem + 0.35vw, 0.9rem);
  color: var(--sub);
  max-width: 34ch;
  line-height: 1.55;
  margin: 0;
}
.hero__cta {
  align-self: flex-start;
  border: 0;
  background: transparent;
  padding: 0;
  color: #FF1493;
  font-size: var(--text-label);
  font-weight: var(--w-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  /* underlined: with the box gone, colour alone would be the only cue that
     this is a link, and colour alone isn't a reliable one */
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition: opacity var(--dur-fast) var(--ease);
  /* keeps the 44px tap target the box used to provide */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.hero__cta:hover { opacity: 0.65; }
.hero__video-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}
.hero__video-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__cap {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 0.82rem + 0.4vw, 1.05rem);
  color: var(--ink);
  background: rgba(255,255,255,0.88);
  padding: 6px 12px;
  text-align: center;
  line-height: 1.3;
}

/* Desktop hero: side-by-side */
@media (min-width: 720px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 20px;
    align-items: center;
  }
}

/* ============================================================
 * Homepage hero — full-bleed editorial image, tagline band below.
 * Independent of .hero (which drop-preview.html still uses).
 * ============================================================ */
.home-hero {
  margin: 0 0 clamp(20px, 3vw, 32px);
}
.home-hero__media {
  width: 100%;
  aspect-ratio: 3398 / 1359;   /* headless crop — frame starts just above the shoulders */
  max-height: 68vh;
  min-height: 300px;           /* keep a substantial band on narrow phones (zooms to centre) */
  overflow: hidden;
  background: var(--soft);
}
.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.home-hero__band {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: clamp(20px, 3.2vw, 34px) var(--gutter) 0;
}
.home-hero__eyebrow {
  font-size: var(--text-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sub);
  font-weight: var(--w-semi);
  margin: 0;
}
.home-hero__head {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.9rem, 1.3rem + 2.7vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
  max-width: 22ch;
  margin: 0;
  text-wrap: balance;
}
.home-hero__sub {
  font-size: clamp(0.82rem, 0.75rem + 0.35vw, 0.9rem);
  color: var(--sub);
  line-height: 1.55;
  margin: 0;
}
.home-hero__cta {
  border: 0;
  background: transparent;
  padding: 0;
  color: #FF1493;
  font-size: var(--text-label);
  font-weight: var(--w-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition: opacity var(--dur-fast) var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.home-hero__cta:hover { opacity: 0.65; }

/* ============================================================
 * Homepage product section — matched to shop.html's framing so
 * the two grids read as the same system: chip row picks up the
 * toolbar's border + padding rhythm (not sticky here, it repeats
 * 3x down the page), and the grid uses .shop-grid-wrap's exact
 * padding, not just left/right.
 * ============================================================ */
.home-secnav {
  padding: 14px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.home-products .shop-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px var(--gutter) clamp(32px, 5vw, 64px);
  box-sizing: border-box;
}

/* ============================================================
 * Shared section header
 * ============================================================ */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px var(--gutter) 0;
  max-width: 1180px;
  margin: 0 auto;
}
.section-heading {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.45rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
.section-link {
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
  transition: opacity var(--dur-fast) ease;
}
.section-link:hover { opacity: 0.5; }

/* ============================================================
 * Product feature — "Two ways to wear it"
 * ============================================================ */
.product-feature { margin-top: 6px; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 3vw, 18px);
  padding: var(--space-md) var(--gutter) 0;
  max-width: 1180px;
  margin: 0 auto;
}

.feat-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.feat-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}
.feat-card__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; /* ghost/white-bg images — show full garment */
  background: var(--bg);
  display: block;
}
/* Whole-image click target → PDP (image sits behind it, abs-positioned) */
.feat-card__media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.feat-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: var(--w-semi);
  letter-spacing: 0.08em;
  padding: 4px 8px;
  z-index: 2;
}
.feat-card__swatches {
  /* hidden: mini ghost swatches overlaid on the hero image read as "ghosting" */
  display: none;
}
/* Ghost-image colour swatches — feat-cards on home page */
.swatch-img {
  display: inline-flex;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.swatch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feat-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
  flex: 1 1 auto;   /* grow to fill the equal-height card so the CTA below sits at a consistent bottom across cards */
}
.feat-card__tag {
  font-size: var(--text-label);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}
.feat-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
}
.feat-card__name {
  font-family: var(--serif);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  line-height: 1.05;
  color: var(--ink);
}
.feat-card__price {
  font-family: var(--serif);
  font-size: var(--text-body);
  color: var(--ink);
  flex-shrink: 0;
}
.feat-card__fit {
  font-size: var(--text-label);
  color: var(--sub);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.feat-card__btn {
  margin-top: auto;   /* anchor to card bottom so buttons align even when card text wraps to different line counts */
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--accent);
  padding: 10px var(--space-sm);
  color: var(--accent);
  background: transparent;
  display: block;
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-card__btn:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ============================================================
 * New In — email capture
 * ============================================================ */
.newin {
  margin: clamp(20px, 4vw, 32px) var(--gutter) 0;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(20px, 4vw, 28px) clamp(16px, 3vw, 24px);
  text-align: center;
}
.newin__eyebrow {
  font-size: var(--text-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.newin__heading {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.7rem);
  font-weight: var(--w-semi);
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.1;
}
.newin__body {
  font-size: var(--text-body);
  color: var(--sub);
  max-width: 46ch;
  margin: 0 auto var(--space-md);
  line-height: 1.5;
}
.newin__form {
  display: flex;
  max-width: 360px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.newin__input {
  flex: 1;
  background: var(--bg);
  border: none;
  color: var(--ink);
  font-size: var(--text-body);
  padding: 0 var(--space-md);
  height: 44px;
  min-width: 0;
}
.newin__input::placeholder { color: var(--sub); }
.newin__input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--ink); }
.newin__submit {
  background: var(--accent);
  color: var(--bg);
  font-size: var(--text-label);
  font-weight: var(--w-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 var(--space-md);
  height: 44px;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity var(--dur-fast) ease;
}
.newin__submit:hover { opacity: 0.75; }
.newin__error,
.newin__success {
  font-size: var(--text-label);
  color: var(--sub);
  margin-top: var(--space-sm);
}
.newin__success { color: var(--ink); }
@media (max-width: 480px) {
  .newin__form { flex-direction: column; border: none; }
  .newin__input {
    border: 1px solid var(--line);
    border-bottom: none;
  }
  .newin__submit { height: 44px; }
}

/* ============================================================
 * Pants strip — "Wear it past the beach"
 * ============================================================ */
.pants-strip { margin-top: 6px; }

.pants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 2vw, 12px);
  padding: var(--space-md) var(--gutter) 0;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .pants-grid { grid-template-columns: repeat(4, 1fr); }
}

.pants-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pants-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--soft);
}
.pants-card__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pants-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}
.pants-card__tag {
  font-size: var(--text-label);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}
.pants-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
}
.pants-card__name {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 0.82rem + 0.35vw, 1rem);
  color: var(--ink);
  line-height: 1.2;
}
.pants-card__price {
  font-family: var(--serif);
  font-size: var(--text-label);
  color: var(--ink);
  flex-shrink: 0;
}

/* ============================================================
 * As worn — @tüsea IG grid
 * ============================================================ */
.ig-section { margin-top: 6px; padding-bottom: clamp(24px, 4vw, 40px); }

/* Flowing shoppable strip — auto-scrolls, pauses on hover/focus, manual-scroll under reduced-motion */
.ig-marquee {
  margin-top: var(--space-lg);   /* gap below the @tuseaworld heading (was the removed ig-intro) */
  overflow: hidden;
  padding-bottom: var(--space-sm);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.ig-marquee__track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
  animation: ig-flow 70s linear infinite;
}
.ig-marquee__track li { flex: 0 0 auto; }
.ig-marquee:hover .ig-marquee__track,
.ig-marquee__track:focus-within { animation-play-state: paused; }
@keyframes ig-flow { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ig-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .ig-marquee__track { animation: none; will-change: auto; }
}

.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  background: var(--soft);
  width: clamp(180px, 42vw, 260px);
  margin-right: 8px;
}
.ig-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-mid) var(--ease);
}
.ig-tile:hover img { transform: scale(1.04); }
.ig-tile__tag {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 8px 7px;
  line-height: 1.2;
}

/* ============================================================
 * Footer
 * ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: var(--space-2xl) var(--gutter) var(--space-lg);
  margin-top: var(--space-2xl);
}
.site-footer__newsletter,
.site-footer__cols,
.site-footer__legal {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
/* Newsletter band */
.site-footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--line);
}
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
.site-footer__logo { height: 34px; width: auto; align-self: flex-start; display: block; }
/* Footer email capture (Klaviyo list XWBwMk) */
.footer-signup { display: flex; flex-direction: column; gap: var(--space-sm); width: 100%; max-width: 420px; }
.footer-signup__pitch { font-family: var(--serif); font-size: var(--text-body); color: var(--ink); margin: 0; }
.footer-signup__form { display: flex; border: 1px solid var(--line); }
.footer-signup__input {
  flex: 1; min-width: 0; background: var(--bg); border: none; color: var(--ink);
  font-size: var(--text-body); padding: 0 var(--space-md); height: 48px;
}
.footer-signup__input::placeholder { color: var(--sub); }
.footer-signup__input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--ink); }
.footer-signup__btn {
  background: var(--ink); color: var(--bg); border: none; cursor: pointer;
  font-size: var(--text-label); font-weight: var(--w-semi); letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0 var(--space-lg); height: 48px; white-space: nowrap;
  transition: opacity var(--dur-fast) ease;
}
.footer-signup__btn:hover { opacity: 0.82; }
.footer-signup__consent { font-size: var(--text-label); color: var(--sub); margin: 0; }
.footer-signup__consent a { color: var(--sub); text-decoration: underline; }
.footer-signup__consent a:hover { color: var(--ink); }
.site-footer__pitch {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--ink);
  max-width: 36ch;
  margin: 0;
}
.newsletter-form { display: flex; gap: var(--space-sm); max-width: 420px; }
.newsletter-form__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: var(--text-body);
  border-radius: 2px;
}
.newsletter-form__input::placeholder { color: var(--sub); }
.newsletter-form__input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--ink); }
.newsletter-form__btn {
  flex: none;
  height: 44px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity var(--dur-fast) ease;
}
.newsletter-form__btn:hover { opacity: 0.82; }
.newsletter-form__consent,
.newin__consent {
  font-size: var(--text-label);
  color: var(--sub);
  margin: var(--space-sm) 0 0;
}
.newsletter-form__consent a,
.newin__consent a { color: var(--sub); text-decoration: underline; }
.newsletter-form__consent a:hover,
.newin__consent a:hover { color: var(--ink); }
/* Link columns */
.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}
.site-footer__col { display: flex; flex-direction: column; gap: var(--space-sm); }
.site-footer__col-title {
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sub);
  font-weight: var(--w-semi);
  margin: 0 0 2px;
}
.site-footer__col a {
  font-size: var(--text-body);
  color: var(--ink);
  transition: opacity var(--dur-fast) ease;
}
.site-footer__col a:hover { opacity: 0.6; }
/* Legal bar */
.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--line);
}
.site-footer__copy { font-size: var(--text-label); color: var(--sub); margin: 0; }
.site-footer__legal-links { display: flex; gap: var(--space-md); }
.site-footer__legal-links a {
  font-size: var(--text-label);
  color: var(--sub);
  transition: color var(--dur-fast) ease;
}
.site-footer__legal-links a:hover { color: var(--ink); }
.site-footer__social { display: flex; gap: 6px; }
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  transition: opacity var(--dur-fast) ease;
}
.site-footer__social a:hover { opacity: 0.6; }
@media (min-width: 720px) {
  .site-footer__newsletter { flex-direction: row; align-items: center; justify-content: space-between; }
  .site-footer__cols { grid-template-columns: repeat(3, 1fr); }
  .site-footer__legal { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ============================================================
 * Reduced motion
 * ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero__cta,
  .feat-card__btn,
  .ig-tile img,
  .mobile-nav,
  .site-nav__link {
    transition: none !important;
    animation: none !important;
  }
}

.pants-card-link { display: block; color: inherit; text-decoration: none; }

/* ============================================================
 * Fit-video lightbox (shared — built by video-lightbox.js)
 * ============================================================ */
.fitvid {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 40px);
}
.fitvid[hidden] { display: none; }
.fitvid__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16,16,16,0.86);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
}
.fitvid--open .fitvid__backdrop { opacity: 1; }
.fitvid__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: 90vh;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(12px) scale(0.99);
  opacity: 0;
  transition: transform var(--dur-mid) var(--ease), opacity var(--dur-mid) var(--ease);
}
.fitvid--open .fitvid__dialog { transform: none; opacity: 1; }
/* Landscape clips (home-hero 16:9) get a wider stage so they don't render tiny.
   Portrait fit videos keep the 560px width above. Mobile is bounded by 92vw. */
.fitvid--landscape .fitvid__dialog { width: min(960px, 92vw); }
.fitvid__video {
  display: block;
  width: 100%;
  max-height: 90vh;
  background: #000;
}
/* Big, obvious close — pinned to the screen's top-right corner, high contrast,
   48px tap target so it's never mistaken for the video's own controls. */
.fitvid__close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: 14px;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 16, 16, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--dur-fast) ease;
}
.fitvid__close:hover { background: rgba(16, 16, 16, 0.9); }
.fitvid__close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ============================================================
  Market / currency selector (assets/i18n.js)
  Compact flag+currency picker. Header instance is desktop-only
  (mobile header is tight; mobile relies on auto-geo + footer picker
  + the located announcement-bar reassurance). Footer instance: all sizes.
============================================================ */
.market-select { display: inline-flex; align-items: center; }
.market-select__input {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0 1.25rem 0 0.45rem;
  height: 44px;                /* HIG tap target; matches nav icon buttons */
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23727272' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.3rem center;
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.market-select__input:hover { border-color: var(--line); }
.market-select__input:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

/* Header picker: hidden on mobile, shown on desktop where there's room. */
.site-nav .market-select { display: none; }
@media (min-width: 720px) { .site-nav .market-select { display: inline-flex; } }

/* Footer picker: muted to match legal row, present on all sizes. */
.site-footer .market-select__input { color: var(--sub); }
.site-footer .market-select__input:hover { color: var(--ink); }

/* ============================================================
   Cart drawer (assets/cart.js) — slide-in bag + Shopify checkout handoff.
   Compositor-friendly: animates transform/opacity only.
============================================================ */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1000;   /* above the sticky header (z-index 100) */
  background: rgba(22, 22, 22, 0.42);
  opacity: 0; animation: cartFade var(--dur-fade) ease forwards;
}
@keyframes cartFade { to { opacity: 1; } }

.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 1001;   /* above overlay + header */
  display: flex; flex-direction: column;
  width: min(420px, 92vw); height: 100%;
  background: var(--bg); color: var(--ink);
  box-shadow: -12px 0 40px rgba(22, 22, 22, 0.14);
  transform: translateX(100%);
  transition: transform var(--dur-mid) var(--ease);
  will-change: transform;
}
.cart-drawer[aria-hidden="false"] { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .cart-drawer { transition: none; }
  .cart-overlay { animation: none; opacity: 1; }
}

.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--line);
}
.cart-drawer__title { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; margin: 0; }
.cart-drawer__close {
  background: none; border: 0; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--ink);
  width: 44px; height: 44px; margin: -10px -10px -10px 0;
}

.cart-drawer__body { flex: 1 1 auto; overflow-y: auto; padding: var(--space-md) var(--space-lg); }
.cart-drawer__empty { color: var(--sub); text-align: center; padding: var(--space-2xl) 0; line-height: 1.8; }
.cart-drawer__empty a { color: var(--ink); font-weight: 700; }

.cart-line {
  display: grid; grid-template-columns: 64px 1fr auto; gap: var(--space-md);
  padding: var(--space-md) 0; border-bottom: 1px solid var(--line);
}
.cart-line__img { width: 64px; height: 80px; object-fit: cover; border-radius: 3px; background: var(--soft); }
.cart-line__img--empty { display: block; }
.cart-line__name { font-weight: 700; font-size: var(--text-body); margin: 0 0 2px; }
.cart-line__meta { color: var(--sub); font-size: var(--text-label); margin: 0 0 var(--space-sm); }
.cart-line__qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 4px; }
.cart-line__step {
  width: 32px; height: 32px; background: none; border: 0; cursor: pointer;
  font-size: 1rem; line-height: 1; color: var(--ink);
}
.cart-line__qval { min-width: 26px; text-align: center; font-size: var(--text-body); }
.cart-line__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-line__price { font-weight: 700; font-size: var(--text-body); }
.cart-line__remove {
  background: none; border: 0; cursor: pointer; padding: 0;
  font-size: var(--text-label); color: var(--sub); text-decoration: underline;
}
.cart-line__remove:hover { color: var(--ink); }

.cart-drawer__foot { border-top: 1px solid var(--line); padding: var(--space-lg); }
.cart-drawer__subtotal {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: 1rem; margin-bottom: var(--space-xs);
}
.cart-drawer__subtotal strong { font-weight: 800; }
.cart-drawer__note { color: var(--sub); font-size: var(--text-label); margin: 0 0 var(--space-md); }
.cart-drawer__checkout {
  display: block; width: 100%; height: 52px;
  background: var(--ink); color: var(--bg);
  border: 0; border-radius: 4px; cursor: pointer;
  font-size: var(--text-body); font-weight: 700; letter-spacing: 0.01em;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.cart-drawer__checkout:hover { background: #FF1493; color: #000; }
.cart-drawer__checkout:disabled { opacity: 0.4; cursor: not-allowed; }
.cart-drawer__cont {
  display: block; text-align: center; margin-top: var(--space-md);
  font-size: var(--text-label); color: var(--sub); text-decoration: underline;
}
.cart-drawer__cont:hover { color: var(--ink); }

/* Newsletter / form inline status (assets/newsletter.js) */
.form-status { margin: var(--space-sm) 0 0; font-size: var(--text-label); line-height: 1.4; }
.form-status--ok  { color: var(--ink); font-weight: 600; }
.form-status--err { color: #b00020; }
