/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Variables ─────────────────────────────────────── */
:root {
  --black:   #1a1005;
  --white:   #fff9ed;
  --off:     #ede0c4;
  --muted:   #8a7860;
  --line:    #c8b090;
  --red:     #c41e1e;
  --gold:    #d9950a;
}

/* ── CHECKER STRIP ─────────────────────────────────── */
.checker-strip {
  height: 20px;
  background-image: repeating-conic-gradient(var(--black) 0% 25%, var(--white) 0% 50%);
  background-size: 20px 20px;
  flex-shrink: 0;
}

/* ── NAV ───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 54px;
  background: var(--white);
  border-bottom: 2.5px solid var(--black);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--black);
}
.nav-logo .h { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--black); }
.nav-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 8px 20px;
  border-radius: 50px;
  transition: background 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { background: var(--black); box-shadow: 0 3px 12px rgba(26,16,5,0.22); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 54px;
  border-bottom: 2.5px solid var(--black);
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px;
  border-right: 2.5px solid var(--black);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Moving dot-grid background on hero left */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,16,5,0.05) 1px, transparent 0);
  background-size: 26px 26px;
  animation: dot-drift 18s linear infinite;
  pointer-events: none;
}
@keyframes dot-drift {
  from { background-position: 0 0; }
  to   { background-position: 26px 26px; }
}

.hero-right {
  flex: 0 0 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

/* Animated diagonal stripe on hero right (red panel) */
.hero-right::after {
  content: '';
  position: absolute;
  inset: -100%;
  width: 300%;
  height: 300%;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 22px,
    rgba(255,255,255,0.04) 22px,
    rgba(255,255,255,0.04) 24px
  );
  animation: stripe-drift 10s linear infinite;
  pointer-events: none;
}
@keyframes stripe-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(33.94px); } /* sqrt(24²+24²) for seamless diagonal */
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  position: relative;
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(78px, 10.5vw, 148px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  position: relative;
}
.hero-h1 .solid  { display: block; color: var(--black); }
.hero-h1 .outline { display: block; -webkit-text-stroke: 2px var(--black); color: transparent; }
.hero-h1 .hot   { display: block; color: var(--red); }
.hero-sub {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 42px;
  position: relative;
}
.hero-sub strong { color: var(--black); font-weight: 600; }
.hero-btns { display: flex; align-items: center; gap: 18px; position: relative; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 50px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { background: var(--red); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(196,30,30,0.28); }
.btn-ghost {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--black); }

/* Hero image box — cream matte in the red panel */
.hero-img-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--off);
  padding: 20px;
  border: 2.5px solid var(--black);
  z-index: 1;
}
.hero-img-box img {
  width: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.5s;
}
.hero-img-box img.on { opacity: 1; }
.hero-tag {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--black);
  color: var(--white);
  padding: 7px 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.hero-tag span { color: var(--gold); }
.hero-spin {
  position: absolute;
  top: -14px; right: -14px;
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--black);
  line-height: 1.3;
  animation: spin 14s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── TICKER ────────────────────────────────────────── */
.ticker {
  background: var(--black);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner { display: inline-flex; animation: marquee 28s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255,249,237,0.55);
  flex-shrink: 0;
}
.dot { width: 3px; height: 3px; background: var(--red); border-radius: 50%; display: inline-block; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── COLLECTION ────────────────────────────────────── */
.collection {
  padding: 56px 0 80px;
  background: var(--white);
}
.inner { max-width: 1500px; margin: 0 auto; padding: 0 40px; }

.sec-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--line);
  margin-bottom: 0;
}
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: 0.04em;
  color: var(--black);
  line-height: 1;
}
.sec-title .h { color: var(--red); }
.sec-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.sec-count { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.sec-link { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.sec-link:hover { text-decoration: underline; }

/* ── TABS ──────────────────────────────────────────── */
.tab-bar {
  position: relative;
  display: flex;
  border-bottom: 1.5px solid var(--line);
  margin-bottom: 0;
}
.tab {
  padding: 12px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}
.tab:first-child { padding-left: 0; }
.tab.active { color: var(--black); }
.tab:hover:not(.active) { color: var(--black); }

/* Sliding indicator bar */
.tab-indicator {
  position: absolute;
  bottom: -1.5px;
  height: 3px;
  background: var(--red);
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}

/* ── CATEGORY ROWS ─────────────────────────────────── */
.cat-row {
  padding-top: 28px;
  padding-bottom: 8px;
  /* Slide-in from alternating sides */
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.cat-row:nth-child(even) { transform: translateX(36px); }
.cat-row.slide-in { opacity: 1; transform: translateX(0); }
.cat-row.hidden { display: none; }

.cat-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--line);
  margin-bottom: 14px;
}
.crh-left { display: flex; align-items: baseline; gap: 10px; }
.cat-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--black);
  line-height: 1;
}
.cat-count {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.crh-arrows { display: flex; gap: 5px; }

.row-arrow {
  width: 30px; height: 30px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s, transform 0.15s;
  border-radius: 50%;
  user-select: none;
}
.row-arrow:hover {
  border-color: var(--black);
  color: var(--black);
  transform: scale(1.08);
}
.row-arrow:active { background: var(--off); }

/* Horizontal scroll track */
.cat-row-track {
  display: flex;
  gap: 1.5px;
  background: var(--black); /* ink gap between cards */
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) var(--white);
  /* Negative margin to allow card hover shadow to peek */
  padding-top: 4px;
  margin-top: -4px;
}
.cat-row-track::-webkit-scrollbar { height: 3px; }
.cat-row-track::-webkit-scrollbar-track { background: var(--off); }
.cat-row-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

/* ── CARD ──────────────────────────────────────────── */
.card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
  /* Fixed width in horizontal track */
  flex: 0 0 252px;
  scroll-snap-align: start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  z-index: 2;
  box-shadow: 0 8px 36px rgba(26,16,5,0.18);
  transform: translateY(-3px);
}

/* Image zone */
.c-img {
  position: relative;
  background: var(--off);
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  cursor: zoom-in;
}
.c-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.4s ease, opacity 0.15s ease;
}
.card:hover .c-img img { transform: scale(1.05); }

/* Zoom hint icon — appears on hover */
.c-img::after {
  content: '⤢';
  position: absolute;
  bottom: 8px; left: 8px;
  width: 22px; height: 22px;
  background: rgba(26,16,5,0.72);
  color: rgba(255,249,237,0.9);
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  line-height: 22px;
  text-align: center;
}
.card:hover .c-img::after { opacity: 1; }

/* ── IMAGE MODAL ───────────────────────────────────── */
.img-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26,16,5,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  cursor: zoom-out;
}
.img-modal.open {
  opacity: 1;
  pointer-events: all;
}
.img-modal-inner {
  position: relative;
  background: var(--off);
  border: 2.5px solid var(--black);
  padding: 20px;
  max-width: min(520px, 90vw);
  transform: scale(0.94);
  transition: transform 0.22s ease;
  cursor: default;
}
.img-modal.open .img-modal-inner { transform: scale(1); }
.img-modal-img {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.img-modal-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 28px; height: 28px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  border: 2px solid var(--red);
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.img-modal-close:hover { background: var(--red); }

.c-soon {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--black);
  color: rgba(255,249,237,0.75);
  border-radius: 50px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
}
.c-toggle {
  position: absolute;
  bottom: 8px; right: 8px;
  display: flex;
  gap: 3px;
}
.tog {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255,249,237,0.92);
  border: 1px solid rgba(26,16,5,0.15);
  color: var(--muted);
  transition: all 0.15s;
}
.tog.on { background: var(--red); border-color: var(--red); color: #fff; }
.tog:not(.on):hover { color: var(--black); }

/* Card body */
.c-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1.5px solid var(--line);
}
.c-phrase {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.c-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 10px;
}
.c-name .food { color: var(--red); }

/* ── TWO-BUTTON LAYOUT — PERMANENT ─────────────────── */
.c-btns {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.garment-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  background: var(--black);
  color: #fff;
}
.garment-btn:hover { background: var(--red); transform: translateY(-1px); }
.garment-btn.soon {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: default;
  pointer-events: none;
}
.gb-label { flex: 1; }
.gb-price { font-weight: 700; color: var(--gold); }
.garment-btn.soon .gb-price { color: var(--muted); }
.gb-soon-tag { font-size: 7px; letter-spacing: 0.06em; opacity: 0.6; }

/* No-image placeholder */
.no-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.no-img-phrase { font-size: 10px; font-style: italic; color: var(--muted); text-align: center; padding: 0 12px; }
.no-img-yo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--black); line-height: 1; }
.no-img-yo span { color: var(--red); }

/* ── STRIP ─────────────────────────────────────────── */
.strip {
  border-top: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
  padding: 72px 0;
  background: var(--white);
}
.strip-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.strip-item {
  padding: 0 52px 0 0;
  border-right: 1.5px solid var(--line);
}
.strip-item:last-child { border-right: none; padding-right: 0; }
.strip-item + .strip-item { padding-left: 52px; }
.s-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 84px;
  color: var(--red);
  line-height: 0.88;
  margin-bottom: 6px;
}
.s-stat-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.07em;
  color: var(--black);
  margin-bottom: 10px;
}
.s-desc { font-size: 13px; color: var(--muted); line-height: 1.85; }

/* ── CTA ────────────────────────────────────────────── */
.cta {
  background: var(--black);
  padding: 110px 48px;
  text-align: center;
}
.cta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.cta-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 40px;
}
.cta-h .outline {
  display: block;
  -webkit-text-stroke: 1.5px rgba(255,249,237,0.2);
  color: transparent;
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: #100a03;
  border-top: 1px solid #2a1e0a;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.f-brand { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.1em; color: var(--white); }
.f-brand span { color: var(--gold); }
.f-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 11px; color: rgba(255,249,237,0.28); margin-top: 3px; }
.f-links { display: flex; align-items: center; gap: 24px; }
.f-links a { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,249,237,0.32); transition: color 0.2s; }
.f-links a:hover { color: var(--white); }
.f-copy { font-size: 10px; color: rgba(255,249,237,0.2); text-align: right; line-height: 1.7; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  #nav { padding: 0 28px; }
  .hero { flex-direction: column; }
  .hero-left { padding: 64px 28px; border-right: none; border-bottom: 2.5px solid var(--black); }
  .hero-right { flex: none; padding: 48px 28px; }
  .inner { padding: 0 28px; }
  .strip-grid { padding: 0 28px; }
  .cta { padding: 80px 28px; }
  footer { padding: 36px 28px; }
  .card { flex: 0 0 220px; }
}
@media (max-width: 600px) {
  #nav { padding: 0 18px; }
  .nav-link { display: none; }
  .hero-left { padding: 50px 18px; }
  .hero-right { padding: 36px 18px; }
  .inner { padding: 0 18px; }
  .strip-grid { padding: 0 18px; grid-template-columns: 1fr; }
  .strip-item { border-right: none; padding: 0 0 28px; border-bottom: 1.5px solid var(--line); }
  .strip-item:last-child { border-bottom: none; padding-bottom: 0; }
  .strip-item + .strip-item { padding-left: 0; }
  .cta { padding: 70px 18px; }
  footer { flex-direction: column; text-align: center; padding: 28px 18px; }
  .f-copy { text-align: center; }
  .sec-title-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .card { flex: 0 0 200px; }
  .tab { padding: 10px 14px; font-size: 10px; }
  .tab:first-child { padding-left: 0; }
}
