/* ==========================================================================
   SANTE DESIGNS — style.css
   Single stylesheet: tokens → reset → base → layout → components
   ========================================================================== */

/* --------------------------------------------------------------------------
   TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --c-black: #000;
  --c-white: #fff;
  --c-off-white: #f5f5f5;
  --c-gray-100: #e5e5e5;
  --c-gray-200: #ccc;
  --c-gray-500: #808080;
  --c-gray-800: #333;
  --c-accent: #4cff16;
  --c-overlay: rgba(0, 0, 0, 0.75);
  --c-overlay-light: rgba(0, 0, 0, 0.3);

  /* Typography */
  --f-logo: Impact, 'Arial Black', sans-serif;
  --f-display: 'UnifrakturCook', cursive;
  --f-nav: 'Pirata One', cursive;
  --f-body: 'Inconsolata', monospace;
  --f-sans: 'Inter', sans-serif;

  --text-xs: clamp(0.625rem, 0.55rem + 0.2vw, 0.75rem);
  --text-sm: clamp(0.75rem, 0.68rem + 0.2vw, 0.875rem);
  --text-base: clamp(0.875rem, 0.8rem + 0.2vw, 1rem);
  --text-lg: clamp(1rem, 0.9rem + 0.3vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1rem + 0.5vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 1.2rem + 1vw, 2.5rem);
  --text-3xl: clamp(2.5rem, 1.5rem + 2vw, 4rem);
  --text-hero: clamp(3.5rem, 2rem + 4vw, 8rem);
  --text-marquee: clamp(4rem, 2rem + 5vw, 10rem);

  --leading-tight: 1.1;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
  --tracking-tight: -0.02em;
  --tracking-wide: 0.05em;
  --tracking-mono: 0.08em;

  /* Spacing — 8px base */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-24: 6rem;
  --s-32: 8rem;
  --s-48: 12rem;

  /* Layout */
  --cart-w: 360px;
  --nav-h-mobile: 56px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 200ms;
  --dur-normal: 400ms;
  --dur-slow: 800ms;

  /* Z-index */
  --z-base: 1;
  --z-nav: 100;
  --z-overlay: 200;
  --z-cart: 300;
  --z-modal: 400;
}


/* --------------------------------------------------------------------------
   RESET — Modern minimal reset
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}


/* --------------------------------------------------------------------------
   BASE — Typography & body
   -------------------------------------------------------------------------- */
body {
  font-family: var(--f-body);
  font-size: var(--text-base);
  letter-spacing: var(--tracking-mono);
  color: var(--c-black);
  background-color: var(--c-white);
}

body[data-page="home"] {
  background-color: var(--c-black);
}

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); font-family: var(--f-body); font-weight: 700; }

p {
  max-width: 65ch;
  line-height: var(--leading-relaxed);
}

small {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

::selection {
  background: var(--c-black);
  color: var(--c-white);
}


/* --------------------------------------------------------------------------
   LAYOUT — Portal (homepage gateway)
   -------------------------------------------------------------------------- */
.c-portal {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-black);
}

.c-portal__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* Hide iOS Safari default video controls / play button */
.c-portal__bg::-webkit-media-controls {
  display: none !important;
}
.c-portal__bg::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.c-portal__bg::-webkit-media-controls-panel {
  display: none !important;
}

.c-portal__content {
  position: relative;
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
  color: var(--c-white);
  text-align: center;
  padding: var(--s-6);
  padding-top: calc(var(--s-6) + env(safe-area-inset-top));
  padding-bottom: calc(var(--s-6) + env(safe-area-inset-bottom));
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.c-portal__logo {
  font-family: var(--f-logo);
  font-size: var(--text-hero);
  font-weight: 400;
  font-style: normal;
  opacity: 1;
  margin-bottom: var(--s-4);
  letter-spacing: 0.15em;
  transform: scaleX(1.2);
  transform-origin: center;
  text-transform: uppercase;
}

.c-portal__logo img {
  max-height: 120px;
  margin: 0 auto;
}

.c-portal__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}

.c-portal__link {
  font-family: var(--f-nav);
  font-size: var(--text-2xl);
  color: var(--c-white);
  transition: opacity var(--dur-fast) var(--ease-out);
  padding: var(--s-2) var(--s-4);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.c-portal__link:hover {
  opacity: 0.5;
}

.c-portal__link:active {
  opacity: 0.3;
}

.c-portal__social {
  margin-top: var(--s-6);
}

.c-portal__social a {
  color: var(--c-white);
  opacity: 0.6;
  transition: opacity var(--dur-fast);
  padding: var(--s-3);
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-portal__social a:hover {
  opacity: 1;
}

.c-portal__social img {
  filter: invert(1);
}

/* Short viewports (landscape phones, iPhone SE) */
@media (max-height: 600px) {
  .c-portal__content {
    gap: var(--s-3);
    padding: var(--s-4);
  }

  .c-portal__link {
    font-size: var(--text-lg);
    padding: var(--s-1) var(--s-3);
    min-height: 36px;
  }

  .c-portal__logo {
    font-size: var(--text-3xl);
    margin-bottom: var(--s-2);
  }

  .c-portal__nav {
    gap: var(--s-2);
  }

  .c-portal__social {
    margin-top: var(--s-3);
  }
}


/* --------------------------------------------------------------------------
   LAYOUT — Top nav bar (inner pages)
   -------------------------------------------------------------------------- */
.site-topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h-mobile);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-nav);
  background: var(--c-white);
}

.site-topnav__logo {
  font-family: var(--f-logo);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: normal;
  opacity: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-topnav__actions {
  position: absolute;
  right: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

/* --- Inner page shell --- */
.site-shell {
  min-height: 100vh;
}

.site-main {
  min-height: 100vh;
  padding-top: var(--nav-h-mobile);
}

/* --- Legacy sidebar (kept for potential future use, hidden by default) --- */
.site-sidebar {
  display: none;
}

/* --- Mobile header (replaced by site-topnav, hidden) --- */
.site-header-mobile {
  display: none;
}


/* --------------------------------------------------------------------------
   COMPONENT — Navigation
   -------------------------------------------------------------------------- */
.c-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.c-nav__link {
  font-family: var(--f-nav);
  font-size: var(--text-lg);
  display: block;
  padding: var(--s-1) 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.c-nav__link:hover {
  opacity: 0.5;
}

.c-nav__link--active {
  opacity: 1;
  border-bottom: 1px solid var(--c-black);
}

.c-nav__footer {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.c-nav__cart-btn {
  font-family: var(--f-body);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-mono);
  text-transform: lowercase;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  min-height: 44px;
}

.c-nav__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  font-size: var(--text-xs);
  background: var(--c-black);
  color: var(--c-white);
  border-radius: 50%;
  transition: transform var(--dur-fast) var(--ease-out);
}

.c-nav__cart-count.pulse {
  animation: pulse 0.3s var(--ease-out);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.c-nav__instagram {
  font-family: var(--f-body);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity var(--dur-fast);
}

.c-nav__instagram:hover {
  opacity: 1;
}


/* --------------------------------------------------------------------------
   COMPONENT — Menu sidebar (push from left)
   -------------------------------------------------------------------------- */
.c-menu-backdrop {
  position: fixed;
  inset: 0;
  background: var(--c-overlay-light);
  z-index: calc(var(--z-overlay) - 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* transition removed — GSAP animates via autoAlpha */
}

.c-menu-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(200px, 25vw);
  background: var(--c-black);
  color: var(--c-white);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  padding: var(--s-6) var(--s-4);
  transform: translateX(-100%);
  /* transition removed — GSAP animates open/close */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.c-menu-sidebar__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--s-6);
}

.c-menu-sidebar__close {
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: var(--text-sm);
  padding: var(--s-2);
  min-width: 44px;
  min-height: 44px;
}

.c-menu-sidebar__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}

.c-menu-sidebar__link {
  font-family: var(--f-nav);
  font-size: var(--text-base);
  transition: opacity var(--dur-fast);
  padding: var(--s-1) 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.c-menu-sidebar__link:hover {
  opacity: 0.5;
}

.c-menu-sidebar__footer {
  margin-top: auto;
  padding-top: var(--s-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.c-menu-sidebar__cart {
  font-family: var(--f-body);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity var(--dur-fast);
  padding: var(--s-3) 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--c-white);
  margin-bottom: var(--s-2);
}

.c-menu-sidebar__cart:hover {
  opacity: 1;
}

.c-menu-sidebar__social {
  font-family: var(--f-body);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity var(--dur-fast);
  padding: var(--s-3) 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.c-menu-sidebar__social:hover {
  opacity: 1;
}

/* Push wrapper — wraps all page content for push animation */
/* transition/transform removed — GSAP animates open/close in sync with sidebar */
.site-push-wrapper {
  /* no transition; GSAP owns the transform */
}

/* Hamburger — keep existing styles */
.c-hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: calc(var(--z-overlay) + 1);
  position: relative;
}

.c-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-black);
  transition: all var(--dur-fast) var(--ease-out);
}

.c-hamburger.is-open span {
  background: var(--c-black);
}

.c-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* --------------------------------------------------------------------------
   COMPONENT — Hero
   -------------------------------------------------------------------------- */
.c-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-black);
}

.c-hero__media {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.c-hero__content {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  color: var(--c-white);
  padding: var(--s-8);
}

.c-hero__title {
  font-family: var(--f-display);
  font-size: var(--text-hero);
  line-height: var(--leading-tight);
  margin-bottom: var(--s-4);
}

.c-hero__sub {
  font-family: var(--f-body);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.7;
}


/* --------------------------------------------------------------------------
   COMPONENT — Marquee
   -------------------------------------------------------------------------- */
.c-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--s-6) 0;
  border-top: 1px solid var(--c-gray-100);
  border-bottom: 1px solid var(--c-gray-100);
}

.c-marquee__track {
  display: inline-flex;
  gap: var(--s-16);
  will-change: transform;
}

.c-marquee__item {
  font-family: var(--f-display);
  font-size: var(--text-marquee);
  line-height: 1;
  color: var(--c-black);
  flex-shrink: 0;
  user-select: none;
}

.c-marquee__item--accent {
  color: var(--c-accent);
}

.c-marquee__separator {
  font-family: var(--f-body);
  font-size: var(--text-marquee);
  line-height: 1;
  opacity: 0.2;
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   COMPONENT — Product card
   -------------------------------------------------------------------------- */
.c-product-card {
  position: relative;
  overflow: hidden;
}

.c-product-card__image-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--c-off-white);
}

.c-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.c-product-card:hover .c-product-card__image {
  transform: scale(1.05);
}

.c-product-card__info {
  padding: var(--s-4) 0;
}

.c-product-card__title {
  font-family: var(--f-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  margin-bottom: var(--s-1);
}

.c-product-card__price {
  font-family: var(--f-body);
  font-size: var(--text-sm);
  opacity: 0.6;
}


/* --------------------------------------------------------------------------
   COMPONENT — Product grid (archive)
   -------------------------------------------------------------------------- */
.c-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  padding: var(--s-4);
}

@media (max-width: 480px) {
  .c-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3);
    padding: var(--s-3);
  }
}


/* --------------------------------------------------------------------------
   COMPONENT — Donate grid
   -------------------------------------------------------------------------- */
.c-donate-grid {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  padding: 0 var(--s-8) var(--s-8);
  max-width: 480px;
}

.c-donate-card {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}

.c-donate-card__image {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 8px;
  background: var(--c-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-donate-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--s-2);
}

.c-donate-card__info {
  flex: 1;
  min-width: 0;
}

.c-donate-card__name {
  font-family: var(--f-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-mono);
  margin-bottom: var(--s-1);
}

.c-donate-card__desc {
  font-size: var(--text-xs);
  opacity: 0.6;
  margin-bottom: var(--s-2);
  line-height: var(--leading-normal);
}

.c-donate-card .c-btn--outline {
  font-size: var(--text-xs);
  padding: var(--s-1) var(--s-3);
  min-height: 32px;
}


/* --------------------------------------------------------------------------
   COMPONENT — Featured section (homepage)
   -------------------------------------------------------------------------- */
.c-featured {
  padding: var(--s-24) var(--s-8);
}

.c-featured__header {
  margin-bottom: var(--s-12);
}

.c-featured__label {
  font-family: var(--f-body);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: var(--s-2);
}

.c-featured__title {
  font-family: var(--f-display);
  font-size: var(--text-3xl);
}

.c-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

@media (max-width: 768px) {
  .c-featured {
    padding: var(--s-16) var(--s-4);
  }

  .c-featured__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
  }
}

@media (max-width: 480px) {
  .c-featured__grid {
    grid-template-columns: 1fr;
  }
}


/* --------------------------------------------------------------------------
   COMPONENT — Editorial block (split text + image)
   -------------------------------------------------------------------------- */
.c-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.c-editorial__image {
  overflow: hidden;
}

.c-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-editorial__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-16) var(--s-8);
}

.c-editorial__text h3 {
  margin-bottom: var(--s-6);
}

.c-editorial__text p {
  opacity: 0.7;
  margin-bottom: var(--s-6);
}

@media (max-width: 768px) {
  .c-editorial {
    grid-template-columns: 1fr;
  }

  .c-editorial__image {
    aspect-ratio: 4 / 3;
  }

  .c-editorial__text {
    padding: var(--s-8) var(--s-4);
  }
}


/* --------------------------------------------------------------------------
   COMPONENT — Product page (split-screen)
   -------------------------------------------------------------------------- */
.c-product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.c-product-page__gallery {
  position: sticky;
  top: var(--nav-h-mobile);
  height: calc(100vh - var(--nav-h-mobile));
  overflow: hidden;
  background: var(--c-off-white);
}

.c-product-page__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-product-page__details {
  padding: var(--s-16) var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.c-product-page__title {
  font-family: var(--f-display);
  font-size: var(--text-3xl);
}

.c-product-page__price {
  font-family: var(--f-body);
  font-size: var(--text-xl);
  font-weight: 700;
}

.c-product-page__description {
  opacity: 0.7;
  line-height: var(--leading-relaxed);
}

.c-product-page__meta {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.5;
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-gray-100);
}

@media (max-width: 768px) {
  .c-product-page {
    grid-template-columns: 1fr;
  }

  .c-product-page__gallery {
    position: relative;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .c-product-page__details {
    padding: var(--s-8) var(--s-4);
  }
}


/* --------------------------------------------------------------------------
   COMPONENT — Buttons
   -------------------------------------------------------------------------- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--s-4) var(--s-8);
  border: 1px solid var(--c-black);
  background: var(--c-black);
  color: var(--c-white);
  transition: all var(--dur-fast) var(--ease-out);
  cursor: pointer;
}

.c-btn:hover {
  background: var(--c-white);
  color: var(--c-black);
}

.c-btn:active {
  opacity: 0.7;
  transform: scale(0.98);
}

.c-btn--outline {
  background: transparent;
  color: var(--c-black);
}

.c-btn--outline:hover {
  background: var(--c-black);
  color: var(--c-white);
}

.c-btn--full {
  width: 100%;
}


/* --------------------------------------------------------------------------
   COMPONENT — Drop gate (password page)
   -------------------------------------------------------------------------- */
.c-drop-gate {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: var(--c-black);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
  transition: opacity var(--dur-slow) var(--ease-out);
}

.c-drop-gate.is-unlocked {
  opacity: 0;
  pointer-events: none;
}

.c-drop-gate__title {
  font-family: var(--f-display);
  font-size: var(--text-3xl);
}

.c-drop-gate__input {
  font-family: var(--f-body);
  font-size: var(--text-base);
  letter-spacing: var(--tracking-mono);
  background: transparent;
  border: 1px solid var(--c-white);
  color: var(--c-white);
  padding: var(--s-3) var(--s-4);
  width: min(300px, 80vw);
  text-align: center;
  outline: none;
}

.c-drop-gate__input::placeholder {
  color: var(--c-gray-500);
}

.c-drop-gate__input:focus {
  border-color: var(--c-accent);
}

.c-drop-gate__error {
  font-size: var(--text-xs);
  color: var(--c-accent);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.c-drop-gate__error.is-visible {
  opacity: 1;
}


/* --------------------------------------------------------------------------
   COMPONENT — Lookbook gallery
   -------------------------------------------------------------------------- */
.c-lookbook {
  display: flex;
  flex-direction: column;
}

.c-lookbook__item {
  width: 100%;
  overflow: hidden;
}

.c-lookbook__item img {
  width: 100%;
  height: auto;
  display: block;
}

.c-lookbook__item--full {
  min-height: 100vh;
}

.c-lookbook__item--full img {
  height: 100vh;
  object-fit: cover;
}

.c-lookbook__caption {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.5;
  padding: var(--s-4) var(--s-8);
}


/* --------------------------------------------------------------------------
   COMPONENT — Story / manifesto
   -------------------------------------------------------------------------- */
.c-story {
  padding: var(--s-12) var(--s-8);
}

.c-story__headline,
.c-story__body {
  max-width: 700px;
}

.c-story__headline {
  font-family: var(--f-display);
  font-size: var(--text-hero);
  margin-bottom: var(--s-8);
}

.c-story__body {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  opacity: 0.8;
}

.c-story__body p + p {
  margin-top: var(--s-4);
}


/* --------------------------------------------------------------------------
   COMPONENT — Sound / embeds
   -------------------------------------------------------------------------- */
.c-embed {
  padding: var(--s-16) var(--s-8);
}

.c-embed__label {
  font-family: var(--f-body);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: var(--s-4);
}

.c-embed__frame {
  width: 100%;
  max-width: 600px;
  border: none;
  border-radius: 0;
}

.c-embed__discord {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-6);
  border: 1px solid var(--c-gray-100);
  margin-top: var(--s-8);
  max-width: 400px;
}


/* --------------------------------------------------------------------------
   COMPONENT — Countdown timer
   -------------------------------------------------------------------------- */
.c-countdown {
  display: flex;
  gap: var(--s-4);
  font-family: var(--f-body);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: var(--tracking-mono);
}

.c-countdown__unit {
  text-align: center;
}

.c-countdown__label {
  font-size: var(--text-xs);
  font-weight: 400;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-top: var(--s-1);
}


/* --------------------------------------------------------------------------
   COMPONENT — Footer
   -------------------------------------------------------------------------- */
.c-footer {
  border-top: 1px solid var(--c-gray-100);
  padding: var(--s-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}

.c-footer__copy {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.5;
}

.c-footer__links {
  display: flex;
  gap: var(--s-6);
}

.c-footer__links a {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity var(--dur-fast);
  padding: var(--s-3) var(--s-2);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.c-footer__links a:hover {
  opacity: 1;
}

.c-footer__instagram {
  opacity: 0.5;
  transition: opacity var(--dur-fast);
  padding: var(--s-2);
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-footer__instagram:hover {
  opacity: 1;
}


/* --------------------------------------------------------------------------
   COMPONENT — Snipcart overrides
   -------------------------------------------------------------------------- */
.snipcart-modal__container {
  z-index: var(--z-cart) !important;
}


/* --------------------------------------------------------------------------
   FOCUS & KEYBOARD ACCESSIBILITY
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--c-black);
  outline-offset: 3px;
}

.c-nav__link:focus-visible,
.c-menu-sidebar__link:focus-visible {
  outline-color: var(--c-accent);
}

.c-btn:focus-visible {
  outline-color: var(--c-accent);
  outline-offset: 4px;
}

.c-drop-gate__input:focus-visible {
  outline-color: var(--c-accent);
  border-color: var(--c-accent);
}

.c-footer__links a:focus-visible {
  opacity: 1;
  outline-offset: 2px;
}

.c-menu-sidebar__close:focus-visible {
  outline-color: var(--c-white);
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s-4);
  z-index: calc(var(--z-modal) + 1);
  padding: var(--s-2) var(--s-4);
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: var(--text-sm);
}

.skip-link:focus {
  top: var(--s-4);
}

/* Legal page layout */
.c-legal-page {
  padding: var(--s-16) var(--s-8);
  font-family: var(--f-sans);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.c-legal-page > * {
  max-width: 700px;
}

.c-legal-page__title {
  font-family: var(--f-body);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  margin-bottom: var(--s-8);
}

.c-legal-page__date {
  opacity: 0.5;
  margin-bottom: var(--s-8);
}

.c-legal-page h2 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: var(--text-base);
  margin: var(--s-8) 0 var(--s-4);
}

.c-legal-page ul {
  list-style: disc;
  padding-left: var(--s-6);
  margin: var(--s-4) 0;
}

/* Mobile header logo — blackletter needs 24px+ to be legible */
.site-header-mobile__logo {
  font-family: var(--f-display);
  font-size: var(--text-2xl);
}

.site-header-mobile__actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}


/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.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;
}

.placeholder {
  background: var(--c-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray-500);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
}

/* Fallback: if GSAP hasn't revealed elements after 3s, show them */
@keyframes gsap-fallback {
  to { opacity: 1; transform: none; }
}
[data-animate] {
  animation: gsap-fallback 0s 3s forwards;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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