/* =========================================================
   THATH — FW26 Home Page
   Fonts: The Seasons (display + body), Darker Grotesque (UI)
   Palette: Vanilla #F7EFE1 · Rouge #7A1F21 · Almost Black #250000
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "The Seasons";
  src: url("../assets/fonts/TheSeasons-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "The Seasons";
  src: url("../assets/fonts/TheSeasons-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "The Seasons";
  src: url("../assets/fonts/TheSeasons-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "The Seasons";
  src: url("../assets/fonts/TheSeasons-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root{
  --vanilla: #f7efe1;
  --vanilla-deep: #efe4cf;
  --rouge: #7a1f21;
  --rouge-light: #9c3336;
  --black: #250000;
  --ink: #2a1712;
  --cream-line: rgba(37, 0, 0, .14);

  --font-display: "The Seasons", "Georgia", serif;
  --font-body: "The Seasons", "Georgia", serif;
  --font-ui: "Darker Grotesque", "Segoe UI", sans-serif;

  --ease: cubic-bezier(.65,0,.35,1);
  --dur-fast: .3s;
  --dur-med: .6s;
  --dur-slow: 1s;

  --container-pad: clamp(1.25rem, 4vw, 4rem);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  background: var(--vanilla);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection{ background: var(--rouge); color: var(--vanilla); }

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

img{ max-width: 100%; display: block; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  letter-spacing: .01em;
  color: var(--black);
}

p{ line-height: 1.65; margin: 0 0 1rem; }

.px-lg-5{ padding-left: var(--container-pad) !important; padding-right: var(--container-pad) !important; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Utility type ---------- */
.eyebrow{
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 1rem;
}
.eyebrow--light{ color: var(--vanilla); opacity: .85; }

.section-title{
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.section-title--light{ color: var(--vanilla); }

.text-link{
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 1.15rem;
  color: var(--rouge);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity var(--dur-fast) var(--ease), letter-spacing var(--dur-fast) var(--ease);
}
.text-link:hover{ opacity: .65; letter-spacing: .07em; }

/* ---------- Buttons ---------- */
.btn-thath{
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vanilla);
  background: var(--rouge);
  border: 1px solid var(--rouge);
  border-radius: 999px;
  padding: .85rem 2.1rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.btn-thath::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vanilla);
  transform: translateY(101%);
  transition: transform var(--dur-med) var(--ease);
  z-index: -1;
  border-radius: inherit;
}
.btn-thath:hover{ color: var(--rouge); }
.btn-thath:hover::before{ transform: translateY(0); }

.btn-thath--light{
  background: transparent;
  border-color: var(--vanilla);
  color: var(--vanilla);
}
.btn-thath--light::before{ background: var(--vanilla); }
.btn-thath--light:hover{ color: var(--rouge); }

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
#preloader.is-hidden{ opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__mark{
  width: 64px; height: auto;
  filter: brightness(0) saturate(100%) invert(15%) sepia(78%) saturate(3000%) hue-rotate(340deg);
  filter: none;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}
@keyframes preloaderPulse{
  0%,100%{ opacity: .35; transform: scale(.92); }
  50%{ opacity: 1; transform: scale(1); }
}

/* =========================================================
   CUSTOM CURSOR (desktop)
   ========================================================= */
.cursor-dot{
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--rouge);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  mix-blend-mode: normal;
  transition: width .25s var(--ease), height .25s var(--ease), opacity .25s var(--ease);
  opacity: 0;
}
.cursor-dot.is-active{ opacity: 1; }
.cursor-dot.is-hover{ width: 34px; height: 34px; background: transparent; border: 1px solid var(--rouge); }
@media (hover: none), (pointer: coarse){
  .cursor-dot{ display: none; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.35rem var(--container-pad);
  transition: background var(--dur-med) var(--ease), padding var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.site-header.is-scrolled{
  background: rgba(37,0,0,.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  padding: .8rem var(--container-pad);
  box-shadow: 0 1px 0 rgba(247,239,225,.12);
}
.site-header__inner{
  display: flex; align-items: center; justify-content: space-between;
}
.brand-logo img{ height: 26px; width: auto; transition: height var(--dur-med) var(--ease); }
.site-header.is-scrolled .brand-logo img{ height: 22px; }

.menu-toggle{
  display: flex; align-items: center; gap: .65rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-ui); font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; font-size: .95rem;
  color: var(--vanilla);
  padding: .3rem;
}
.menu-toggle__box{
  width: 30px; height: 16px; position: relative;
}
.menu-toggle__bar{
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--vanilla);
  transition: transform var(--dur-fast) var(--ease), top var(--dur-fast) var(--ease), width var(--dur-fast) var(--ease);
}
.menu-toggle__bar:first-child{ top: 0; }
.menu-toggle__bar:last-child{ top: 100%; width: 65%; }
.menu-toggle:hover .menu-toggle__bar:last-child{ width: 100%; }

/* =========================================================
   OFF-CANVAS GLASS MENU
   ========================================================= */
.menu-overlay{
  position: fixed; inset: 0;
  background: rgba(37,0,0,.35);
  backdrop-filter: blur(2px);
  z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med) var(--ease);
}
.menu-overlay.is-open{ opacity: 1; visibility: visible; }

.side-menu{
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .7s var(--ease);
  will-change: transform;
}
.side-menu.is-open{ transform: translateX(0); }

.side-menu__glass{
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
  padding: 2.2rem clamp(1.5rem, 5vw, 3rem);
  background: rgba(247, 239, 225, 0.62);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-left: 1px solid rgba(255,255,255,.4);
  box-shadow: -20px 0 60px rgba(37,0,0,.18);
  overflow-y: auto;
}

.menu-close{
  align-self: flex-end;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  position: relative;
}
.menu-close span{
  position: absolute; top: 50%; left: 50%;
  width: 22px; height: 1.5px;
  background: var(--black);
  transform-origin: center;
}
.menu-close span:first-child{ transform: translate(-50%,-50%) rotate(45deg); }
.menu-close span:last-child{ transform: translate(-50%,-50%) rotate(-45deg); }

.side-menu__mark{
  width: 46px; margin: 1.5rem 0 2.5rem;
  opacity: .9;
}

.side-menu__nav ol{
  list-style: none; margin: 0; padding: 0;
}
.side-menu__nav li{ margin-bottom: .35rem; overflow: hidden; }
.side-menu__nav a{
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--black);
  padding: .35rem 0;
  transform: translateY(115%);
  transition: color var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
  opacity: .55;
}
.side-menu.is-open .side-menu__nav a{ transform: translateY(0); }
.side-menu__nav a:hover{ color: var(--rouge); opacity: 1; }
.side-menu__num{
  font-family: var(--font-ui);
  font-size: .95rem;
  letter-spacing: .1em;
  color: var(--rouge);
}

.side-menu__footer{
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(37,0,0,.15);
}
.side-menu__eyebrow{
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .85rem;
  color: var(--rouge);
  margin-bottom: .6rem;
}
.side-menu__social{
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  margin-right: 1.2rem;
  border-bottom: 1px solid currentColor;
}
.side-menu__addr{
  margin-top: 1rem;
  font-family: var(--font-ui);
  color: var(--ink);
  opacity: .7;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  height: 100svh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: flex-end;
}
.hero__media{
  position: absolute; inset: 0;
}
.hero__video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero__video--intro.is-visible{ opacity: 1; }
.hero__video--loop.is-visible{ opacity: 1; }
.hero__fallback{
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 1;
  transition: opacity .8s var(--ease);
}
.hero__fallback.is-hidden{ opacity: 0; }

.hero__scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(37,0,0,.35) 0%, rgba(37,0,0,0) 32%, rgba(37,0,0,.15) 60%, rgba(37,0,0,.75) 100%);
  z-index: 1;
}

.hero__content{
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 var(--container-pad) clamp(3rem, 8vh, 6rem);
  text-align: center;
  margin: 0 auto;
  color: var(--vanilla);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease);
}
.hero__content.is-visible{
  opacity: 1;
  visibility: visible;
}
.hero__eyebrow{ color: var(--vanilla); opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.hero__subtitle{ opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease) .15s, transform .8s var(--ease) .15s; }
.hero__cta{ opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease) .3s, transform .8s var(--ease) .3s; }
.hero__content.is-visible .hero__eyebrow{ opacity: .9; transform: translateY(0); }
.hero__content.is-visible .hero__subtitle{ opacity: .92; transform: translateY(0); }
.hero__content.is-visible .hero__cta{ opacity: 1; transform: translateY(0); }

.hero__title{
  font-size: clamp(2.4rem, 6.4vw, 5.2rem);
  color: var(--vanilla);
  line-height: 1.08;
  min-height: 2.3em;
}
.type-line{
  display: block;
  white-space: nowrap;
}
.type-line::after{
  content: "";
  display: inline-block;
  width: .06em;
  margin-left: .1em;
  background: var(--vanilla);
  height: .85em;
  transform: translateY(.1em);
  animation: caretBlink 1s steps(1) infinite;
}
.type-line.is-done::after{ animation: none; opacity: 0; }

@keyframes caretBlink{ 50%{ opacity: 0; } }

.hero__subtitle{
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: .03em;
  margin: 1.2rem auto 2rem;
  max-width: 34ch;
  opacity: .92;
}

.hero__scroll{
  position: absolute; bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--vanilla);
  font-family: var(--font-ui);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .85;
}
.hero__scroll-line{
  width: 1px; height: 34px;
  background: linear-gradient(180deg, currentColor, transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after{
  content: "";
  position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--vanilla);
  animation: scrollDrip 2.2s var(--ease) infinite;
}
@keyframes scrollDrip{
  0%{ top: -100%; }
  60%{ top: 100%; }
  100%{ top: 100%; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee{
  background: var(--rouge);
  color: var(--vanilla);
  overflow: hidden;
  padding: .85rem 0;
  white-space: nowrap;
}
.marquee__track{
  display: inline-flex;
  gap: 1.2rem;
  animation: marqueeScroll 28s linear infinite;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: .06em;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.marquee__dot{ opacity: .6; font-size: .8rem; }
@keyframes marqueeScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================
   SPOTLIGHT (Collection)
   ========================================================= */
.spotlight{
  padding: clamp(4rem, 10vh, 7rem) 0;
}
.spotlight__list{
  list-style: none; margin: 1.5rem 0 2rem; padding: 0;
}
.spotlight__list li{
  display: flex; align-items: baseline; justify-content: space-between;
  padding: .85rem 0;
  border-bottom: 1px solid var(--cream-line);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  color: var(--black);
  opacity: .45;
  transition: opacity var(--dur-fast) var(--ease), padding-left var(--dur-fast) var(--ease);
  cursor: pointer;
}
.spotlight__list li:focus-visible{
  outline: 1px solid var(--rouge);
  outline-offset: 4px;
  opacity: 1;
}
.spotlight__list li:first-child{ border-top: 1px solid var(--cream-line); }
.spotlight__list li.is-active,
.spotlight__list li:hover{
  opacity: 1;
  padding-left: .4rem;
  color: var(--rouge);
}
.spotlight__list em{
  font-family: var(--font-ui);
  font-style: normal;
  font-size: .95rem;
  letter-spacing: .08em;
  opacity: .6;
}

.spotlight__frame{
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
}
.spotlight__frame img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease), opacity .4s var(--ease);
}
.spotlight__frame:hover img{ transform: scale(1.05); }
.spotlight__frame img.is-fading{ opacity: 0; }
.spotlight__badge{
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  background: rgba(247,239,225,.9);
  backdrop-filter: blur(6px);
  color: var(--black);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: .04em;
  padding: .7rem 1.1rem;
  border-radius: 3px;
  font-size: 1.05rem;
  line-height: 1.3;
  transition: opacity .3s var(--ease);
}
.spotlight__badge.is-fading{ opacity: 0; }
.spotlight__badge small{ opacity: .6; font-size: .8rem; }

/* =========================================================
   NEW ARRIVALS
   ========================================================= */
.arrivals{ padding: clamp(2rem, 6vh, 4rem) 0 clamp(4rem, 10vh, 7rem); }
.arrivals__head{ margin-bottom: 2.5rem; }

.arrival-card{ display: block; }
.arrival-card__img{
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 4px;
  background: var(--vanilla-deep);
}
.arrival-card__img img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.arrival-card:hover .arrival-card__img img{ transform: scale(1.06); }
.arrival-card__meta{
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: .8rem;
  font-family: var(--font-ui);
}
.arrival-card__meta span{
  font-weight: 600; font-size: 1.05rem; letter-spacing: .02em; color: var(--black);
}
.arrival-card__meta em{
  font-style: normal; font-size: .9rem; color: var(--rouge); opacity: .85;
}

/* =========================================================
   COLLECTION BANNER (full-bleed)
   ========================================================= */
.collection-banner{
  position: relative;
  height: 78vh;
  min-height: 460px;
  overflow: hidden;
}
.collection-banner__media{
  position: absolute; inset: -8% 0;
  height: 116%;
}
.collection-banner__media img{
  width: 100%; height: 100%; object-fit: cover;
}
.collection-banner::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(37,0,0,.15), rgba(37,0,0,.55));
}
.collection-banner__content{
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  color: var(--vanilla);
  padding: 0 1.5rem;
}
.collection-banner__content h2{
  color: var(--vanilla);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

/* =========================================================
   BRAND STORY
   ========================================================= */
.story{ padding: clamp(5rem, 12vh, 8rem) 0; }
.story__frame{
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 460px;
  margin: 0 auto;
}
.story__frame img{ width: 100%; height: 100%; object-fit: cover; }
.story__lede{
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--rouge);
}
.story p:not(.story__lede){
  font-size: 1.08rem;
  max-width: 56ch;
  color: var(--ink);
  opacity: .88;
}

/* =========================================================
   VALUES
   ========================================================= */
.values{
  position: relative;
  padding: clamp(5rem, 12vh, 8rem) 0;
  overflow: hidden;
  color: var(--vanilla);
}
.values__bg{ position: absolute; inset: -6% 0; height: 112%; }
.values__bg img{ width: 100%; height: 100%; object-fit: cover; }
.values__scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(37,0,0,.82), rgba(37,0,0,.72));
}
.values__head{ max-width: 56ch; margin-bottom: 3rem; position: relative; }
.values__grid{ position: relative; }

.value-card{
  background: rgba(247,239,225,.06);
  border: 1px solid rgba(247,239,225,.22);
  border-radius: 6px;
  padding: 2rem 1.6rem;
  height: 100%;
  backdrop-filter: blur(6px);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.value-card:hover{ transform: translateY(-6px); background: rgba(247,239,225,.1); }
.value-card__mark{
  display: inline-block;
  color: var(--rouge-light);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.value-card h3{
  color: var(--vanilla);
  font-size: 1.4rem;
  margin-bottom: .6rem;
}
.value-card p{
  font-family: var(--font-ui);
  font-size: 1.05rem;
  color: var(--vanilla);
  opacity: .78;
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   QUOTE BANNER
   ========================================================= */
.quote-banner{
  position: relative;
  padding: clamp(5rem, 14vh, 9rem) var(--container-pad);
  text-align: center;
  background: var(--vanilla);
  overflow: hidden;
}
.quote-banner__mark{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(8rem, 26vw, 22rem);
  color: var(--rouge);
  opacity: .05;
  margin: 0;
  white-space: nowrap;
  pointer-events: none;
  font-family: var(--font-display);
}
.quote-banner blockquote{
  position: relative;
  max-width: 46ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.45;
  color: var(--black);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--black);
  color: var(--vanilla);
  padding: clamp(4rem, 8vh, 6rem) 0 2rem;
}
.footer__logo{
  height: 24px;
  filter: brightness(0) saturate(100%) invert(85%) sepia(15%) saturate(400%) hue-rotate(2deg) brightness(1.05);
  margin-bottom: 1.2rem;
}
.footer__tag{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  opacity: .75;
  margin-bottom: 1.8rem;
}
.footer__label{
  display: block;
  font-family: var(--font-ui);
  font-size: .95rem;
  letter-spacing: .03em;
  opacity: .7;
  margin-bottom: .7rem;
}
.footer__form-row{
  display: flex;
  border-bottom: 1px solid rgba(247,239,225,.35);
  padding-bottom: .6rem;
  max-width: 360px;
}
.footer__form-row input{
  flex: 1;
  background: none; border: none; outline: none;
  color: var(--vanilla);
  font-family: var(--font-ui);
  font-size: 1.05rem;
}
.footer__form-row input::placeholder{ color: rgba(247,239,225,.5); }
.footer__form-row button{
  background: none; border: none; color: var(--rouge-light);
  font-size: 1.3rem; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease);
}
.footer__form-row button:hover{ transform: translateX(4px); }

.footer__heading{
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .9rem;
  opacity: .6;
  margin-bottom: 1.1rem;
}
.footer__links{ list-style: none; margin: 0; padding: 0; }
.footer__links li{ margin-bottom: .65rem; }
.footer__links a{
  font-family: var(--font-ui);
  font-size: 1.05rem;
  opacity: .85;
  transition: opacity var(--dur-fast) var(--ease), padding-left var(--dur-fast) var(--ease);
}
.footer__links a:hover{ opacity: 1; padding-left: 4px; color: var(--rouge-light); }

.footer__bottom{
  margin-top: clamp(3rem, 6vh, 5rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(247,239,225,.15);
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-ui);
  font-size: .9rem;
  opacity: .6;
}
.footer__mark{ color: var(--rouge-light); margin: 0; opacity: 1; }

/* =========================================================
   SCROLL-REVEAL (JS-driven)
   ========================================================= */
[data-reveal]{
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-in{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px){
  .spotlight__list li{ font-size: 1.5rem; }
  .hero__content{ padding-bottom: 4.5rem; }
  .collection-banner{ height: 64vh; }
}

@media (max-width: 575.98px){
  .side-menu{ width: 100vw; }
  .hero__title{ font-size: clamp(2rem, 9vw, 3rem); }
  .hero__subtitle{ font-size: 1.05rem; }
  .quote-banner blockquote{ font-size: 1.4rem; }
  .footer__bottom{ flex-direction: column; gap: .6rem; text-align: center; }
}
