/* ================================================================
   MONARCH — COMPLETE STYLESHEET
   Rule Quietly. Dress Loudly.
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ----------------------------------------------------------------
   VARIABLES
---------------------------------------------------------------- */
:root {
  --black:      #000000;
  --off-black:  #080808;
  --gray-dark:  #0D0D0D;
  --gray-mid:   #1A1A1A;
  --gray-light: #2A2A2A;
  --white:      #FFFFFF;
  --off-white:  #F5F4F2;
  --sand:       #C4955A;
  --sand-light: #D4A96A;
  --gold:       #B8932A;
  --muted:      #666666;
  --muted-light:#999999;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 72px;
  --wordmark-bar-h: 110px;
  --pad-x: clamp(20px, 5vw, 80px);
  --pad-y: clamp(70px, 10vw, 140px);
  --max-w: 1440px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }


/* ----------------------------------------------------------------
   LOADER
---------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__logo {
  width: 75px;
  height: auto;
  mix-blend-mode: screen;
  animation: loaderPulse 1.5s ease infinite;
}

.loader__bar {
  width: 150px;
  height: 1px;
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.loader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  animation: loaderFill 1.5s var(--ease-smooth) forwards;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes loaderFill {
  to { transform: translateX(0); }
}

/* ----------------------------------------------------------------
   NAVIGATION
---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 800;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  isolation: isolate;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color 0.2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__link.active::after { width: 100%; }

.nav__logo {
  justify-self: center;
  display: flex;
  align-items: center;
}

.nav__home-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  height: var(--nav-h);
  top: 0;
}

.nav__logo-img {
  height: 22px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.nav__icon-btn {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s;
  position: relative;
}
.nav__icon-btn:hover { opacity: 1; }

.nav__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--white);
  color: var(--black);
  font-size: 8px;
  font-weight: 700;
  width: 19px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 799;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--pad-x);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-smooth);
}

.nav__drawer.open {
  transform: translateX(0);
}

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__drawer-link {
  font-family: var(--font-serif);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 400;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  transition: color 0.2s, padding-left 0.3s var(--ease-smooth);
  display: block;
}
.nav__drawer-link:hover {
  color: var(--sand);
  padding-left: 16px;
}

.nav__drawer-footer {
  margin-top: auto;
  display: flex;
  gap: 24px;
}

.nav__drawer-social {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__drawer-social:hover { color: var(--white); }

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-hero {
  position: relative;
  height: calc(100svh - var(--nav-h) - var(--wordmark-bar-h));
  min-height: 480px;
}

.video-hero__frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--black);
}

.video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
}

.hero-wordmark-bar {
  position: relative;
  margin-top: var(--nav-h);
  height: var(--wordmark-bar-h);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-wordmark-bar__img {
  height: clamp(36px, 5vh, 60px);
  width: auto;
}

.video-hero__caption {
  position: absolute;
  bottom: 32px;
  left: var(--pad-x);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
}

.video-hero__actions {
  position: absolute;
  bottom: 32px;
  right: var(--pad-x);
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}

.video-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 5px;
  transition: all 0.3s;
}

.video-hero__cta:hover {
  color: var(--sand);
  border-color: var(--sand);
  gap: 13px;
}

@media (max-width: 640px) {
  .video-hero__actions { display: none; }
}

@media (max-width: 640px) {
  .video-hero__wordmark { width: clamp(180px, 55vw, 300px); }
  .video-hero__caption { font-size: 9px; letter-spacing: 0.16em; }
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero__video,
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroZoom 10s var(--ease-smooth) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.45) 70%,
    rgba(0,0,0,0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 var(--pad-x);
}

.hero__mark {
  width: clamp(60px, 8vw, 100px);
  margin-bottom: 4px;
  animation: fadeDown 1s 0.5s ease both;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.15));
}

.hero__eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 40px rgba(255,255,255,0.4);
  animation: fadeDown 1s 0.7s ease both;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero__title span {
  display: block;
  overflow: hidden;
}

.hero__title span em {
  display: block;
  font-style: italic;
  animation: slideUp 1s var(--ease-smooth) both;
}

.hero__title span:nth-child(1) em { animation-delay: 0.8s; }
.hero__title span:nth-child(2) em { animation-delay: 0.95s; }
.hero__title span:nth-child(3) em { animation-delay: 1.1s; }

.hero__sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  animation: fadeUp 1s 1.3s ease both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  animation: fadeUp 1s 1.5s ease both;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s 2s ease both;
}

.hero__scroll-text {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  animation: scrollDrop 2s ease infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ----------------------------------------------------------------
   MARQUEE
---------------------------------------------------------------- */
.marquee-wrap {
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  padding: 13px 0;
  position: relative;
  z-index: 1;
}

.marquee-wrap--dark {
  background: var(--gray-dark);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-wrap--tan {
  background: var(--sand);
  color: var(--black);
}

.marquee-wrap--tan .marquee-track em {
  color: var(--black);
  opacity: 0.5;
}

/* ----------------------------------------------------------------
   COLOR DIVIDER — thin solid-color break, no text
---------------------------------------------------------------- */
.color-divider {
  height: 28px;
}

.color-divider--tan {
  background: var(--sand);
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  will-change: transform;
}

.marquee-track--reverse {
  animation-direction: reverse;
}

.marquee-track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 24px;
}

.marquee-track em {
  font-style: normal;
  color: var(--sand);
  padding: 0 4px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Photo Carousel — Asymmetric Editorial Grid ──────── */
/* Every source photo is the same native 4:5 ratio. Instead of forcing
   them into arbitrary fr-sized boxes (which either cropped content or
   left letterbox gaps), each cell is sized to that same 4:5 ratio, so
   cover fills it edge-to-edge with no crop and no gaps — the box and
   the image are the same shape. */
.photo-carousel {
  display: flex;
  align-items: stretch;
  gap: 3px;
  width: 100%;
  background: var(--black);
}

.photo-carousel__col {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  flex: 2 1 0;
}

.photo-carousel__mid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1 1 0;
}

.photo-carousel__mid .photo-carousel__col {
  flex: 1 1 0;
  width: 100%;
}

.photo-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s ease-in-out, transform 1.6s ease-in-out;
}

.photo-carousel__slide.active {
  opacity: 1;
  transform: scale(1.0);
}

.photo-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: opacity, transform;
}

@media (max-width: 700px) {
  .photo-carousel { flex-direction: column; }
  .photo-carousel__mid { flex-direction: row; }
}

/* ----------------------------------------------------------------
   SECTION COMMONS
---------------------------------------------------------------- */
.section-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
}

.section-title--dark { color: var(--black); }

.section-title em {
  font-style: italic;
  color: var(--sand);
}

/* ----------------------------------------------------------------
   BRAND QUOTE SECTION
---------------------------------------------------------------- */
.brand-quote-section {
  padding: clamp(70px, 10vw, 130px) var(--pad-x);
  background: var(--white);
  text-align: left;
}

.brand-quote-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
}

.brand-quote-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.4vw, 92px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
}

.brand-quote-headline em {
  font-style: normal;
}

.brand-quote-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.85;
  padding-top: 12px;
}

.brand-quote-section .editorial__cta {
  color: var(--black);
  border-bottom-color: rgba(0,0,0,0.3);
  margin-top: 20px;
}
.brand-quote-section .editorial__cta:hover {
  color: var(--sand);
  border-color: var(--sand);
}

@media (max-width: 760px) {
  .brand-quote-inner { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   SPLIT EDITORIAL
---------------------------------------------------------------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}

.editorial--flip .editorial__media { order: 2; }

/* Vintage frame */
.editorial__media--framed {
  background: #080808;
  padding: 22px;
  display: flex;
  align-items: stretch;
}

.vintage-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vintage-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.12) contrast(1.05);
}

.vintage-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,147,42,0.35);
  z-index: 3;
  pointer-events: none;
}

.vintage-frame::after {
  content: '';
  position: absolute;
  inset: 7px;
  border: 2px solid var(--gold);
  z-index: 3;
  pointer-events: none;
  box-shadow:
    inset 0 0 24px rgba(0,0,0,0.3),
    0 0 24px rgba(184,147,42,0.12);
}

.frame-corner {
  position: absolute;
  width: 25px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 4;
}
.frame-corner--tl { top: 15px;    left: 15px;   border-width: 2px 0 0 2px; }
.frame-corner--tr { top: 15px;    right: 15px;  border-width: 2px 2px 0 0; }
.frame-corner--bl { bottom: 15px; left: 15px;   border-width: 0 0 2px 2px; }
.frame-corner--br { bottom: 15px; right: 15px;  border-width: 0 2px 2px 0; }
.editorial--flip .editorial__copy  { order: 1; }

.editorial__media {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.editorial__media img,
.editorial__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-smooth);
}

.editorial__media:hover img,
.editorial__media:hover video {
  transform: scale(1.04);
}

.editorial__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 100px) clamp(30px, 6vw, 90px);
  background: var(--black);
}

.editorial__copy--sand {
  background: #111;
}


.editorial__headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}

.editorial__headline em {
  font-style: italic;
  color: var(--sand);
}

.editorial__body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 475px;
}

.editorial__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 5px;
  align-self: flex-start;
  transition: all 0.3s;
}
.editorial__cta:hover {
  color: var(--sand);
  border-color: var(--sand);
  gap: 16px;
}

/* ----------------------------------------------------------------
   HAT FEATURE — split editorial with rotating crossfade imagery
---------------------------------------------------------------- */
.hat-feature {
  background: #080808;
}

.hat-feature__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
  overflow: hidden;
}

.hat-feature__media,
.hat-feature__swatch {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #080808;
}

/* Show the full images — nothing cropped — and pull them toward
   the shared centerline so they meet instead of floating apart
   inside their own letterboxed halves. */
.hat-feature__media .product-card__color-img {
  object-fit: contain;
  object-position: right center;
  background: #080808;
}

.hat-feature__swatch .product-card__color-img {
  object-fit: contain;
  object-position: left center;
  background: #080808;
}

/* Thin band, but bold, bigger type inside it */
.hat-feature__copy {
  text-align: center;
  align-items: center;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 5vw, 60px);
}

.hat-feature__copy .section-tag {
  margin-bottom: 10px;
}

.hat-feature__copy .editorial__headline {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 600;
  margin-bottom: 14px;
}

.hat-feature__copy .editorial__body {
  font-size: 15px;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.hat-feature__copy .editorial__cta {
  align-self: center;
}

/* Pan the two images in from opposite edges to meet in the center.
   Uses its own trigger (see main.js) instead of the shared reveal
   observer's 10% threshold — this section is tall enough that the
   shared threshold fires while it's still mostly off-screen, so the
   slide finishes before anyone can see it happen. */
.hat-pan-left,
.hat-pan-right {
  opacity: 0;
  transition: opacity 1.3s var(--ease-smooth), transform 1.3s var(--ease-smooth);
}

.hat-pan-left { transform: translateX(-32%); }
.hat-pan-right { transform: translateX(32%); }

.hat-pan-left.in-view,
.hat-pan-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 760px) {
  .hat-feature__row { grid-template-columns: 1fr; min-height: auto; }
  .hat-feature__media,
  .hat-feature__swatch { min-height: 90vw; }
  .hat-feature__swatch { border-top: 1px solid rgba(255,255,255,0.06); }
  .hat-feature__media .product-card__color-img,
  .hat-feature__swatch .product-card__color-img { object-position: center; }
  .hat-pan-left,
  .hat-pan-right { transform: translateY(24px); }
}

/* ----------------------------------------------------------------
   PHILOSOPHY BREAK BAR — horizontal text band between carousel + video
---------------------------------------------------------------- */
.break-bar {
  background: #111;
  text-align: center;
  padding: clamp(50px, 8vw, 90px) clamp(20px, 8vw, 120px);
}

.break-bar .section-tag {
  display: block;
  margin-bottom: 18px;
}

.break-bar__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(24px, 3.4vw, 46px);
  line-height: 1.3;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 24px;
}

.break-bar__headline em {
  font-style: italic;
  color: var(--sand);
}

.break-bar__body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 32px;
}

.break-bar__cta {
  align-self: center;
}

/* ----------------------------------------------------------------
   PHILOSOPHY VIDEO — full landscape, full bleed
---------------------------------------------------------------- */
.philosophy-video {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #000;
}

.philosophy-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.5);
}

@media (max-width: 700px) {
  .philosophy-video { aspect-ratio: 4 / 5; }
  .philosophy-video video { object-fit: contain; }
}

/* ----------------------------------------------------------------
   STATEMENT — Full width text
---------------------------------------------------------------- */
.statement {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.statement--white {
  background: var(--white);
  color: var(--black);
}

.statement__inner {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.statement__icon {
  width: clamp(50px, 7vw, 90px);
  margin-bottom: 8px;
  mix-blend-mode: screen;
}

.statement__display {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
}

.statement--white .statement__display {
  color: var(--black);
}

.statement__serif {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  max-width: 875px;
}

.statement--white .statement__serif {
  color: var(--muted);
}

/* ----------------------------------------------------------------
   REGAL BLOCK — split editorial with oversized type
---------------------------------------------------------------- */
.regal-block {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
}

.regal-block .photo-carousel--embed {
  height: 100%;
}

.regal-block__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Revolving-door crossfade — slides pivot on the Y axis instead of
   the plain opacity fade used by the main carousel, so this instance
   reads as a distinct rhythm rather than just different photos. */
.photo-carousel--embed .photo-carousel__col {
  perspective: 1400px;
}

.photo-carousel--embed .photo-carousel__slide {
  opacity: 0;
  transform: rotateY(90deg) scale(1.04);
  transform-origin: center;
  backface-visibility: hidden;
  transition: opacity 1s ease-in-out, transform 1.1s var(--ease-spring);
}

.photo-carousel--embed .photo-carousel__slide.active {
  opacity: 1;
  transform: rotateY(0deg) scale(1.0);
}

@media (max-width: 640px) {
  .regal-block { height: 70vh; }
}

/* ----------------------------------------------------------------
   WORDMARK STRIP — solid black separator w/ gold wordmark
---------------------------------------------------------------- */
.wordmark-strip {
  position: relative;
  background: var(--black);
  padding: clamp(50px, 9vw, 110px) var(--pad-x);
  text-align: center;
  overflow: hidden;
}

.wordmark-strip__grain {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/grain.png');
  background-repeat: repeat;
  background-size: 220px 220px;
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.wordmark-strip__word {
  position: relative;
  z-index: 2;
  width: min(85%, 980px);
  aspect-ratio: 1400 / 383;
  margin: 0 auto;
  background-color: var(--white);
  -webkit-mask-image: url('../assets/images/logo-wordmark-flat.png');
  mask-image: url('../assets/images/logo-wordmark-flat.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

@media (max-width: 640px) {
  .wordmark-strip__word { width: 92%; }
}

/* ----------------------------------------------------------------
   QUOTE STRIP
---------------------------------------------------------------- */
.quote-strip {
  background: var(--white);
  color: var(--black);
  padding: clamp(60px, 9vw, 120px) clamp(20px, 10vw, 160px);
  text-align: center;
}

.quote-strip__text {
  font-family: var(--font-serif);
  font-size: clamp(32px, 6vw, 78px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  max-width: 1250px;
  margin: 0 auto;
  color: var(--black);
}

.quote-strip__attr {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
}

/* ----------------------------------------------------------------
   PHOTO CAROUSEL
---------------------------------------------------------------- */

/* ----------------------------------------------------------------
   PRODUCT GRID
---------------------------------------------------------------- */
.products-section {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.products-header__right {
  display: flex;
  gap: 24px;
}

.filter-btn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  color: var(--white);
  border-color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.products-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

/* Floating stagger — middle tile lifts, outer tiles sit lower */
.products-grid--3col .product-card:nth-child(2) {
  transform: translateY(-36px);
}

.products-grid--3col .product-card:nth-child(1),
.products-grid--3col .product-card:nth-child(3) {
  transform: translateY(24px);
}

/* ----------------------------------------------------------------
   PRODUCT CARD
---------------------------------------------------------------- */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease-smooth);
}

.product-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-mid);
  border-radius: 6px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.45);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

/* Color cycle crossfade */
.product-card__color-cycle {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease-smooth);
}

.product-card:hover .product-card__color-cycle {
  transform: scale(1.06);
}

.product-card__color-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.product-card__color-img.active {
  opacity: 1;
}

.product-card__hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.product-card:hover .product-card__hover-overlay {
  opacity: 1;
}

.product-card__quick {
  width: 100%;
  padding: 12px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.2s;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s var(--ease-smooth);
}

.product-card:hover .product-card__quick {
  transform: translateY(0);
  opacity: 1;
}

.product-card__quick:hover {
  background: var(--black);
  color: var(--white);
  outline: 1px solid var(--white);
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--black);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

.product-card__badge--new  { background: var(--gold);  color: var(--white); }
.product-card__badge--lim  { background: var(--sand);  color: var(--white); }
.product-card__badge--sold { background: var(--gray-light); color: var(--muted-light); }

.product-card__colors {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.color-dot {
  width: 18px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
}

.color-dot--black  { background: #000; border-color: rgba(255,255,255,0.5); }
.color-dot--white  { background: #fff; }
.color-dot--sand   { background: var(--sand); border-color: transparent; }

.product-card__info {
  padding: 16px 4px 28px;
  flex: 1;
}

.product-card__name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}

.product-card__sub {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}

.product-card__price {
  font-size: 13px;
  color: var(--white);
  font-weight: 400;
}

.product-card__price--soldout {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: line-through;
}

.product-card__price--soldout::after {
  content: "Sold Out";
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 3px 8px;
}

/* ----------------------------------------------------------------
   FULL-WIDTH SHOWCASE
---------------------------------------------------------------- */
.showcase {
  position: relative;
  overflow: hidden;
}

.showcase__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding: var(--pad-x) clamp(40px, 7vw, 120px);
}

.showcase__content {
  max-width: 600px;
}

.showcase__headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.showcase__sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   MANIFESTO SECTION
---------------------------------------------------------------- */
.manifesto {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  background: var(--black);
  overflow: hidden;
}

.manifesto__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.manifesto__bg img {
  width: 60%;
  max-width: 625px;
  object-fit: contain;
  opacity: 0.03;
}

.manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 1075px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.manifesto__quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.2vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
}

.manifesto__body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.9;
  max-width: 800px;
}

/* ----------------------------------------------------------------
   3-COL EDITORIAL GRID
---------------------------------------------------------------- */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-mid);
}

.editorial-grid__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--gray-dark);
}

.editorial-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-smooth);
}

.editorial-grid__item:hover img {
  transform: scale(1.05);
}

.editorial-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.editorial-grid__item:hover .editorial-grid__caption {
  transform: translateY(0);
  opacity: 1;
}

.editorial-grid__caption span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

/* ----------------------------------------------------------------
   ACCESSORIES SECTION
---------------------------------------------------------------- */
.accessories {
  background: var(--off-black);
  padding: var(--pad-y) var(--pad-x);
}

.accessories__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.accessories__header {
  text-align: center;
  margin-bottom: 60px;
}

.accessories__showcase {
  max-width: 875px;
  margin: 0 auto 70px;
}

.accessories__showcase img {
  width: 100%;
  height: auto;
}

.accessories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
}

/* ----------------------------------------------------------------
   EXCLUSIVE DROPS
---------------------------------------------------------------- */
.drops {
  position: relative;
  padding: clamp(100px, 14vw, 180px) var(--pad-x);
  background: var(--black);
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.drops__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(140px, 25vw, 300px);
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
}

.drops__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.drops__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 110px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
}

.drops__sub {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 8px;
}

.drops__form {
  display: flex;
  width: 100%;
  max-width: 575px;
  border: 1px solid rgba(255,255,255,0.18);
  margin-top: 6px;
  transition: border-color 0.3s;
}
.drops__form:focus-within {
  border-color: rgba(255,255,255,0.5);
}

.drops__input {
  flex: 1;
  background: none;
  border: none;
  padding: 15px 22px;
  color: var(--white);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  letter-spacing: 0.05em;
}
.drops__input::placeholder { color: var(--muted); }

.drops__btn {
  padding: 15px 28px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.25s;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.drops__btn:hover {
  background: var(--sand);
  color: var(--white);
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
  opacity: 0.08;
}

.btn:hover::before { transform: scaleX(1); }

.btn--white {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.35);
}
.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--sand {
  background: var(--sand);
  color: var(--white);
  border: 1px solid var(--sand);
}
.btn--sand:hover {
  background: transparent;
  color: var(--sand);
}

.btn--black {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn--black:hover {
  background: transparent;
  color: var(--black);
}

/* ----------------------------------------------------------------
   ABOUT PAGE HERO
---------------------------------------------------------------- */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) var(--pad-x);
}

.page-hero__img,
.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 875px;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
}

.page-hero__title em { font-style: italic; color: var(--sand); }

/* ----------------------------------------------------------------
   ABOUT CONTENT
---------------------------------------------------------------- */
.about-body {
  max-width: 950px;
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}

.about-body p {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.about-body p strong {
  font-weight: 500;
  color: var(--white);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-mid);
  margin: var(--pad-y) 0;
}

.about-value {
  background: var(--black);
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.about-value:last-child { border-right: none; }

.about-value__num {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.about-value__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  margin-bottom: 12px;
}

.about-value__body {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
}

/* ----------------------------------------------------------------
   SHOP PAGE
---------------------------------------------------------------- */
.shop-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
}

.shop-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 5% top;
  display: block;
}

.shop-hero__title-block {
  padding: clamp(24px, 4vw, 48px) var(--pad-x);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.shop-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.shop-hero__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 150px);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 0.03em;
}

.shop-filters {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 var(--pad-x);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.shop-filters::-webkit-scrollbar { display: none; }

.shop-filter {
  padding: 18px 24px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  background: none;
}
.shop-filter.active,
.shop-filter:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.footer {
  background: var(--off-black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: clamp(60px, 7vw, 90px) var(--pad-x) clamp(40px, 5vw, 60px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__brand-logo {
  width: 55px;
  height: auto;
  margin-bottom: 20px;
  mix-blend-mode: screen;
}

.footer__brand-desc {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
  line-height: 1.6;
  max-width: 325px;
  margin-bottom: 28px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  width: 45px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.25s;
}
.footer__social-link:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.footer__heading {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__link {
  font-size: 13px;
  font-weight: 300;
  color: var(--sand);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__copy {
  font-size: 11px;
  color: var(--sand);
  letter-spacing: 0.05em;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  color: var(--sand);
}

/* ----------------------------------------------------------------
   REVEAL ANIMATIONS
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(56px) scale(0.97);
  transition: opacity 1.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-56px) scale(0.97);
  transition: opacity 1.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.in-view { opacity: 1; transform: translateX(0) scale(1); }

.reveal-right {
  opacity: 0;
  transform: translateX(56px) scale(0.97);
  transition: opacity 1.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0) scale(1); }

/* Philosophy pull-in — both sides slide toward center simultaneously */
.pull-in-left {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pull-in-right {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pull-in-left.in-view,
.pull-in-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .editorial { grid-template-columns: 1fr; min-height: auto; }
  .editorial--flip .editorial__media { order: 0; }
  .editorial--flip .editorial__copy  { order: 0; }
  .editorial__media { min-height: 55vw; }

  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .about-values { grid-template-columns: 1fr 1fr; }
  .accessories__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 20px; }

  .hero__actions { flex-direction: column; gap: 10px; }

  .drops__form { flex-direction: column; }
  .drops__btn { width: 100%; padding: 15px; }

  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 540px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .accessories__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-values { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
}

@media (hover: none) {
  .product-card__hover-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%); }
  .product-card__quick { transform: none; opacity: 1; }
}
