/* ============================================
   HELSINKI HEELS — Design System
   Bold Retro-Modernist Editorial
   ============================================ */

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

:root {
  --red: #BC2C2C;
  --blue: #5DA4C9;
  --yellow: #FCD758;
  --beige: #F5F1E3;
  --charcoal: #2C2C2C;
  --white: #FFFFFF;
  --light-gray: #E8E8E8;
  --brand-muted: #666666;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-ticker: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-editorial: 20px 20px 0 var(--charcoal);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--beige);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* --- FOCUS STATES --- */
:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 3px;
}

.btn:focus-visible {
  box-shadow: 3px 3px 0 var(--charcoal);
  outline: none;
}

.nav__icon:focus-visible,
.nav__hamburger:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.footer__social-link:focus-visible,
.footer__col a:focus-visible,
.nav__links a:focus-visible,
.nav__overlay-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.product-card__shell:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 3px;
  border-radius: 16px;
}

/* --- GRAIN OVERLAY --- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- EYEBROW TAG --- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 6px 14px;
  border: 1.5px solid var(--charcoal);
  margin-bottom: 24px;
}
.eyebrow--light { color: var(--white); border-color: rgba(255,255,255,0.7); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translate(3px, 3px) scale(0.97); }

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: transform 0.4s var(--ease-spring), background 0.3s ease;
}
.btn:hover .btn__icon { transform: translate(2px, -2px) scale(1.1); background: rgba(255,255,255,0.2); }

.btn--primary { background: var(--charcoal); color: var(--white); }
.btn--primary:hover { box-shadow: 6px 6px 0 var(--red); transform: translate(-2px, -2px); }

.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { box-shadow: 6px 6px 0 var(--yellow); transform: translate(-2px, -2px); }

.btn--outline { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--white); }
.btn--outline .btn__icon { background: rgba(44,44,44,0.1); }
.btn--outline:hover .btn__icon { background: rgba(255,255,255,0.15); }

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(44,44,44,0.96);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}
.search-overlay.active { opacity: 1; pointer-events: auto; }

.search-overlay__inner { width: 100%; max-width: 560px; padding: 0 24px; }

.search-overlay__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.search-overlay__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.search-overlay__close {
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.search-overlay__close:hover { background: rgba(255,255,255,0.1); }

.search-overlay__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  outline: none;
  transition: border-color 0.3s ease;
}
.search-overlay__input::placeholder { color: rgba(255,255,255,0.3); }
.search-overlay__input:focus { border-color: var(--yellow); }

.search-overlay__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.search-overlay__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.search-overlay__tag:hover { border-color: var(--white); color: var(--white); }

/* --- CART TOAST --- */
.cart-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 300;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}
.cart-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- EMPTY STATE --- */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}
.empty-state__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--charcoal);
  opacity: 0.3;
}
.empty-state__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.empty-state__text {
  font-size: 14px;
  color: var(--charcoal);
  opacity: 0.6;
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- SEARCH RESULTS --- */
.search-overlay__results {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.search-overlay__result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.search-overlay__result:hover { opacity: 0.7; }
.search-overlay__result-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.search-overlay__result-price {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.5;
  margin-left: auto;
}
.search-overlay__no-results {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 32px 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
  pointer-events: none;
}
.nav__pill {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(188,44,44,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  pointer-events: auto;
  transition: background 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.nav__pill.scrolled { background: rgba(188,44,44,0.97); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.3s var(--ease-out-expo);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--white);
  transition: width 0.4s var(--ease-out-expo);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__icon {
  color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.3s var(--ease-out-expo);
}
.nav__icon:hover { background: rgba(255,255,255,0.12); }
.nav__cart { position: relative; }
.nav__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--white);
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s var(--ease-spring);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.3s var(--ease-out-expo);
}
.nav__hamburger:hover { background: rgba(255,255,255,0.12); }
.nav__hamburger-line {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease-spring), opacity 0.3s ease;
}
.nav__hamburger.active .nav__hamburger-line:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__hamburger.active .nav__hamburger-line:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(44,44,44,0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}
.nav__overlay.active { opacity: 1; pointer-events: auto; }
.nav__overlay-links { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.nav__overlay-link {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), color 0.3s ease;
}
.nav__overlay.active .nav__overlay-link { opacity: 1; transform: translateY(0); }
.nav__overlay.active .nav__overlay-link:nth-child(1) { transition-delay: 80ms; }
.nav__overlay.active .nav__overlay-link:nth-child(2) { transition-delay: 140ms; }
.nav__overlay.active .nav__overlay-link:nth-child(3) { transition-delay: 200ms; }
.nav__overlay.active .nav__overlay-link:nth-child(4) { transition-delay: 260ms; }
.nav__overlay-link:hover { color: var(--yellow); }

/* ============================================
   HERO
   ============================================ */
.hero { background: var(--red); position: relative; overflow: hidden; min-height: 100dvh; }
.hero__bg-text {
  position: absolute;
  bottom: -5%;
  right: -2%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28vw;
  line-height: 0.75;
  color: var(--white);
  opacity: 0.06;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}
.hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 160px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100dvh;
  position: relative;
  z-index: 1;
}
.hero__label { color: var(--white); opacity: 0.8; margin-bottom: 24px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.75;
  max-width: 45ch;
  margin-bottom: 44px;
  line-height: 1.65;
}

.hero__image-wrapper { display: flex; justify-content: center; align-items: center; }
.hero__image-shell {
  padding: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
}
.hero__image-frame {
  position: relative;
  width: 100%;
  background: var(--blue);
  border: 10px solid var(--charcoal);
  border-radius: 14px;
  transform: translate(12px, 12px);
  box-shadow: var(--shadow-editorial);
  overflow: hidden;
}
.hero__image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.6s var(--ease-out-expo);
}
.hero__image-frame:hover .hero__image { filter: grayscale(0%); }

/* ============================================
   TICKER
   ============================================ */
.ticker { background: var(--blue); border-top: 2px solid var(--charcoal); border-bottom: 2px solid var(--charcoal); overflow: hidden; padding: 18px 0; }
.ticker--yellow { background: var(--yellow); }
.ticker__track { display: flex; width: max-content; animation: ticker-scroll 35s var(--ease-ticker) infinite; will-change: transform; }
.ticker__track--reverse { animation: ticker-scroll-reverse 35s var(--ease-ticker) infinite; }
.ticker__content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
}
.ticker--yellow .ticker__content { color: var(--charcoal); }
.ticker__dot { width: 5px; height: 5px; background: currentColor; opacity: 0.35; flex-shrink: 0; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }
@keyframes ticker-scroll-reverse { 0% { transform: translateX(-33.333%); } 100% { transform: translateX(0); } }

/* ============================================
   PRODUCT GRID — BENTO LAYOUT
   ============================================ */
.products { background: var(--beige); padding: 140px 48px; }
.products__inner { max-width: 1400px; margin: 0 auto; }
.products__header { margin-bottom: 72px; }
.products__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}

/* Featured card: spans 2 rows */
.product-card--featured {
  grid-column: 1;
  grid-row: 1 / 3;
}
.product-card--featured .product-card__image-wrap {
  aspect-ratio: 3 / 4;
}

/* Wide card: spans 2 columns */
.product-card--wide {
  grid-column: 2 / 4;
  grid-row: 3;
}
.product-card--wide .product-card__image-wrap {
  aspect-ratio: 16 / 9;
}

/* --- Product Card --- */
.product-card { cursor: pointer; }
.product-card__shell {
  display: block;
  padding: 5px;
  background: rgba(44,44,44,0.04);
  border: 1px solid rgba(44,44,44,0.08);
  border-radius: 16px;
  transition: background 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-spring);
}
.product-card:hover .product-card__shell {
  background: rgba(44,44,44,0.08);
  border-color: rgba(44,44,44,0.15);
  box-shadow: 6px 6px 0 var(--charcoal);
}
.product-card:hover .product-card__shell:focus-visible {
  box-shadow: 6px 6px 0 var(--charcoal), 3px 3px 0 var(--charcoal);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--light-gray) 25%, #f0f0f0 50%, var(--light-gray) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite linear;
}
.product-card__image-wrap.loaded { background: none; animation: none; }

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.product-card:hover .product-card__image { filter: grayscale(0%); transform: scale(1.03); }

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.product-card__meta { padding: 16px 6px 8px; }
.product-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.product-card__brand { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-muted); }
.product-card__price { font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

@keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }

/* ============================================
   EDITORIAL
   ============================================ */
.editorial { padding: 140px 48px; background: var(--beige); }
.editorial__inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 20px; }
.editorial__left {
  background: var(--beige);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}
.editorial__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.editorial__arrow-btn {
  width: 60px;
  height: 60px;
  border: 2px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  transition: background 0.4s var(--ease-spring), color 0.4s var(--ease-spring), transform 0.4s var(--ease-spring);
}
.editorial__arrow-btn:hover { background: var(--charcoal); color: var(--white); transform: translate(-3px, -3px); box-shadow: 3px 3px 0 var(--charcoal); }
.editorial__arrow-btn:active { transform: translate(0,0); box-shadow: none; }
.editorial__arrow-btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.editorial__right { display: flex; flex-direction: column; gap: 20px; }
.editorial__right-shell {
  padding: 5px;
  background: rgba(44,44,44,0.04);
  border: 1px solid rgba(44,44,44,0.08);
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  min-height: 400px;
}
.editorial__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: grayscale(100%);
  transition: filter 0.6s var(--ease-out-expo);
}
.editorial__right-shell:hover .editorial__image { filter: grayscale(0%); }

.editorial__right-content {
  padding: 32px 36px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.editorial__content-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* ============================================
   OFFSET CARD
   ============================================ */
.offset-section { padding: 140px 48px; background: var(--beige); }
.offset-section__inner { max-width: 1400px; margin: 0 auto; }
.offset-card { position: relative; }
.offset-card__shadow { position: absolute; top: 16px; left: 16px; width: 100%; height: 100%; border: 2px solid var(--charcoal); border-radius: 20px; z-index: 0; }
.offset-card__shell { position: relative; z-index: 1; padding: 6px; background: rgba(93,164,201,0.12); border: 1px solid rgba(93,164,201,0.2); border-radius: 20px; }
.offset-card__content { background: var(--blue); display: grid; grid-template-columns: 1fr 1fr; border: 10px solid var(--charcoal); border-radius: 14px; overflow: hidden; }
.offset-card__left { overflow: hidden; }
.offset-card__image { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.6s var(--ease-out-expo); }
.offset-card__content:hover .offset-card__image { filter: grayscale(0%); }
.offset-card__right { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.offset-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.offset-card__text { font-size: 15px; color: var(--white); opacity: 0.8; max-width: 380px; margin-bottom: 32px; line-height: 1.65; }

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 140px 48px; background: var(--beige); }
.about__inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.about__anchor { width: 80px; height: 80px; border: 2px solid var(--charcoal); overflow: hidden; margin-bottom: 36px; }
.about__anchor-image { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.6s var(--ease-out-expo); }
.about__anchor:hover .about__anchor-image { filter: grayscale(0%); }
.about__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.about__text { font-size: 15px; line-height: 1.75; color: var(--charcoal); opacity: 0.75; margin-bottom: 20px; max-width: 480px; }
.about__right .btn--outline { margin-top: 20px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--charcoal); color: var(--white); padding: 100px 48px 0; }
.footer__inner { max-width: 1400px; margin: 0 auto; }
.footer__main { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; padding-bottom: 64px; }
.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--white);
  opacity: 0.55;
  transition: opacity 0.3s var(--ease-out-expo), border-color 0.3s var(--ease-out-expo), transform 0.3s var(--ease-spring);
}
.footer__social-link:hover { opacity: 1; border-color: var(--white); transform: translateY(-2px); }

.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title { font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.footer__col a {
  font-size: 14px;
  color: var(--white);
  opacity: 0.6;
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-spring);
}
.footer__col a:hover { opacity: 1; transform: translateX(4px); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
.footer__bottom span { font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.4; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; padding-top: 140px; min-height: auto; gap: 48px; }
  .hero__image-shell { max-width: 380px; margin: 0 auto; }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .product-card--featured { grid-column: 1; grid-row: auto; }
  .product-card--featured .product-card__image-wrap { aspect-ratio: 4 / 5; }
  .product-card--wide { grid-column: 1 / -1; grid-row: auto; }

  .editorial__inner { grid-template-columns: 1fr; gap: 20px; }
  .editorial__left { min-height: 320px; }
  .editorial__right-shell { min-height: 350px; }
  .editorial__right-content { flex-direction: column; gap: 20px; align-items: flex-start; }

  .offset-card__content { grid-template-columns: 1fr; }
  .offset-card__left { height: 280px; }

  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__main { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
  .nav { padding: 12px 16px; }
  .nav__pill { padding: 10px 16px; }
  .nav__logo { font-size: 12px; }

  .hero__inner { padding: 120px 20px 60px; }
  .hero__title { font-size: 3.2rem; }
  .hero__image-shell { max-width: 300px; }

  .products { padding: 80px 20px; }
  .products__grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card--featured .product-card__image-wrap,
  .product-card--wide .product-card__image-wrap { aspect-ratio: 4 / 5; }

  .editorial { padding: 80px 20px; }
  .editorial__left { padding: 36px 24px; min-height: auto; }
  .editorial__right-content { padding: 24px; }

  .offset-section { padding: 80px 20px; }
  .offset-card__shadow { top: 8px; left: 8px; }
  .offset-card__shell { padding: 4px; }
  .offset-card__content { border-width: 6px; }
  .offset-card__right { padding: 32px 24px; }

  .about { padding: 80px 20px; }
  .footer { padding: 60px 20px 0; }
  .footer__links { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

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

  .ticker__track { animation: none; }
  .ticker__track--reverse { animation: none; }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero__image-frame { transform: none; }
  .hero__bg-text { display: none; }
}
