:root {
  --bg: #FFFFFF;
  --text: #111111;
  --text-muted: #666666;
  --border: #E5E5E5;
  --surface: #F5F5F5;
  --accent: #111111;
  --max-width: 1400px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 3.5rem; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 200;
  padding: 0.5rem 1rem; background: var(--accent); color: #fff; font-size: 0.8rem;
}
.skip-link:focus { top: 1rem; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto;
  padding: 1rem 1.25rem;
}

.logo {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.75rem; font-weight: 400;
  position: absolute; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}

.main-nav {
  display: none; gap: 1.5rem;
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
}
.main-nav a { opacity: 0.85; transition: opacity 0.2s ease; }
.main-nav a:hover { opacity: 1; }

.header-actions {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em;
}
.icon-btn {
  display: inline-flex; align-items: center; gap: 0.15rem;
  opacity: 0.85; transition: opacity 0.2s ease;
  background: none; border: none;
}
.icon-btn:hover { opacity: 1; }
.icon-btn sup {
  font-size: 0.6rem; font-weight: 600; vertical-align: super;
}

.menu-toggle { display: block; padding: 0.25rem; opacity: 0.85; }
.menu-toggle:hover { opacity: 1; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--bg); color: var(--text);
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__header { display: flex; align-items: center; justify-content: space-between; }
.menu-close { padding: 0.25rem; }
.mobile-nav { display: flex; flex-direction: column; gap: 1rem; font-size: 1.5rem; font-weight: 500; }
.mobile-nav a { padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%; height: 100vh; min-height: 600px; max-height: 100vh;
  overflow: hidden;
}

.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background: #1a1a1a;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: absolute; left: 1.5rem; bottom: 5rem; z-index: 2;
  color: #fff; max-width: 50ch;
}

.hero-eyebrow {
  font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 0.75rem; opacity: 0.8;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 600; line-height: 1.0;
  letter-spacing: -0.04em; margin-bottom: 1.5rem;
}

.hero-cta {
  display: inline-block; padding: 0.85rem 2.25rem;
  background: #fff; color: var(--text);
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  transition: background 0.25s ease, transform 0.15s ease;
}
.hero-cta:hover { background: var(--surface); }
.hero-cta:active { transform: translateY(1px); }

/* Hero product card */
.hero-product-card {
  position: absolute; right: 1.5rem; bottom: 5rem; z-index: 2;
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  padding: 0.75rem; max-width: 240px;
}
.product-card__prev,
.product-card__next {
  width: 1.5rem; height: 1.5rem;
  display: grid; place-items: center;
  font-size: 0.7rem; color: var(--text-muted);
  transition: color 0.2s ease;
}
.product-card__prev:hover, .product-card__next:hover { color: var(--text); }

.product-card__slides { position: relative; width: 120px; height: 140px; overflow: hidden; }
.product-card__slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.product-card__slide.is-active { opacity: 1; pointer-events: auto; }
.product-card__slide img { width: 100%; height: 100px; object-fit: cover; background: var(--surface); }
.product-card__label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.product-card__name { font-size: 0.8rem; font-weight: 500; }

/* ── Marquee ── */
.marquee-bar {
  background: var(--text); color: #fff;
  padding: 0.6rem 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 3rem;
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
  animation: marquee 20s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Product Section ── */
.product-section { padding: 4rem 1.25rem; max-width: var(--max-width); margin: 0 auto; }
.section-header { margin-bottom: 2rem; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; letter-spacing: -0.03em; }

.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}

.product-tile { cursor: pointer; }
.product-tile__image {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  background: var(--surface);
}
.product-tile__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-tile:hover .product-tile__image img { transform: scale(1.04); }

.wishlist-btn {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--text);
  display: grid; place-items: center; font-size: 1rem;
  transition: background 0.2s ease;
}
.wishlist-btn:hover { background: #fff; }
.wishlist-btn.is-active { color: #E10A0A; }

.product-tile__info { padding-top: 0.75rem; }
.product-tile__info h3 { font-size: 0.85rem; font-weight: 500; margin-bottom: 0.2rem; }
.price { font-size: 0.8rem; color: var(--text-muted); }

/* ── Editorial Section ── */
.editorial-section { padding: 4rem 1.25rem; max-width: var(--max-width); margin: 0 auto; }
.editorial-image { overflow: hidden; margin-bottom: 2rem; }
.editorial-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--surface); }
.editorial-text { max-width: 48ch; }
.editorial-text h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1rem; }
.editorial-text p { color: var(--text-muted); margin-bottom: 1.25rem; }
.text-link {
  display: inline-block;
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em;
  border-bottom: 1px solid var(--text); padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.text-link:hover { color: var(--text-muted); border-color: var(--text-muted); }

/* ── Footer ── */
.site-footer { padding: 3rem 1.25rem 2rem; border-top: 1px solid var(--border); }
.footer-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  max-width: var(--max-width); margin: 0 auto 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h3 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--text); }
.footer-copy { text-align: center; font-size: 0.75rem; color: var(--text-muted); max-width: var(--max-width); margin: 0 auto; }

/* ── Model Marquee ── */
.model-marquee {
  background: #fff;
  padding: 4rem 0 3rem;
  overflow: hidden;
}
.model-marquee__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}
.model-marquee__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 32ch;
}
.model-marquee__track {
  display: flex;
  overflow: hidden;
}
.model-marquee__inner {
  display: flex;
  gap: 0.25rem;
  animation: modelScroll 30s linear infinite;
  will-change: transform;
}
.model-marquee__inner img {
  flex-shrink: 0;
  width: 220px;
  height: 320px;
  object-fit: cover;
  background: #f5f5f5;
}
@keyframes modelScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero-content { left: 2.5rem; bottom: 6rem; }
  .hero-product-card { right: 2.5rem; bottom: 6rem; }
  .model-marquee__inner img { width: 260px; height: 380px; }
  .model-marquee__header { padding-left: 2.5rem; padding-right: 2.5rem; }
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .main-nav { display: flex; }
  .logo { position: static; transform: none; order: -1; margin-right: auto; }
  .header-inner { padding: 1rem 2.5rem; }
  .hero-content { left: 3rem; bottom: 7rem; }
  .hero-product-card { right: 3rem; bottom: 7rem; }
  .product-section { padding: 6rem 2.5rem; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .editorial-section { padding: 6rem 2.5rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
  .editorial-image { margin-bottom: 0; }
  .editorial-image img { aspect-ratio: 4 / 3; }
  .footer-inner { grid-template-columns: repeat(4, 1fr); }
  .site-footer { padding: 4rem 2.5rem 3rem; }
  .model-marquee { padding: 6rem 0 4rem; }
  .model-marquee__header h2 { font-size: clamp(2rem, 3.5vw, 3rem); max-width: 28ch; }
  .model-marquee__inner img { width: 300px; height: 440px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .model-marquee__inner { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .product-tile__image img { transition: none; }
}
