/* ============================================
   MAISON ÉLISE — BOUTIQUE STYLESHEET
   Palette: Rosewood Library
   ============================================ */

:root {
  --rose-deep:    #4A1C2B;
  --rose-mid:     #7D3C50;
  --gold:         #C9A87C;
  --gold-light:   #E2C9A0;
  --cream:        #F2EDE4;
  --cream-dark:   #E8DDD0;
  --ink:          #1A0A10;
  --white:        #FDFAF7;
  --text-body:    #3D2030;
  --text-muted:   #8A6070;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;

  --shadow-soft:  0 4px 24px rgba(74,28,43,0.10);
  --shadow-card:  0 8px 40px rgba(74,28,43,0.13);
  --shadow-hover: 0 16px 56px rgba(74,28,43,0.20);

  --transition:   0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
p { line-height: 1.7; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--rose-deep);
  color: var(--cream);
  border: 1.5px solid var(--rose-deep);
}
.btn--primary:hover {
  background: var(--rose-mid);
  border-color: var(--rose-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(242,237,228,0.5);
}
.btn--ghost:hover {
  background: rgba(242,237,228,0.12);
  border-color: var(--cream);
}
.btn--outline {
  background: transparent;
  color: var(--rose-deep);
  border: 1.5px solid var(--rose-deep);
}
.btn--outline:hover {
  background: var(--rose-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ── SECTION SHARED ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--rose-deep);
  line-height: 1.15;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(253,250,247,0.97);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 2px 20px rgba(74,28,43,0.08);
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color 0.4s;
}
.nav.scrolled .nav__logo-main { color: var(--rose-deep); }
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--gold); }
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover { color: var(--rose-deep); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__search, .nav__bag {
  color: rgba(242,237,228,0.85);
  padding: 6px;
  transition: color 0.3s, transform 0.3s;
}
.nav__search:hover, .nav__bag:hover { color: var(--gold); transform: scale(1.1); }
.nav.scrolled .nav__search,
.nav.scrolled .nav__bag { color: var(--text-muted); }
.nav.scrolled .nav__search:hover,
.nav.scrolled .nav__bag:hover { color: var(--rose-deep); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: background 0.3s;
}
.nav.scrolled .nav__hamburger span { background: var(--rose-deep); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--rose-deep);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.4rem;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.mobile-menu__close:hover { opacity: 1; }
.mobile-menu ul { text-align: center; }
.mobile-menu ul li { margin-bottom: 8px; }
.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-menu ul a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__image-wrap {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,10,16,0.85) 0%,
    rgba(74,28,43,0.35) 50%,
    rgba(26,10,16,0.15) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 80px 100px;
  max-width: 760px;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.3s both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title-line {
  display: block;
  animation: fadeUp 0.9s 0.5s both;
}
.hero__title-line--italic {
  font-style: italic;
  color: var(--gold-light);
  animation-delay: 0.65s;
}
.hero__desc {
  font-size: 1.05rem;
  color: rgba(242,237,228,0.8);
  margin-bottom: 36px;
  max-width: 420px;
  animation: fadeUp 0.8s 0.85s both;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 1s both;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(242,237,228,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,124,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.marquee-strip {
  background: var(--rose-deep);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.marquee-track .dot {
  color: var(--gold);
  font-style: normal;
  font-size: 0.7rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   COLLECTIONS
══════════════════════════════════════ */
.collections {
  padding: 100px 64px;
  background: var(--white);
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.collection-card {
  position: relative;
  cursor: pointer;
}
.collection-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.collection-card__img-wrap img {
  transition: transform 0.7s ease;
}
.collection-card:hover .collection-card__img-wrap img {
  transform: scale(1.07);
}
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,28,43,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.collection-card:hover .collection-card__overlay { opacity: 1; }
.collection-card__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.collection-card__link:hover { color: var(--gold); }
.collection-card__info {
  padding: 16px 4px 0;
}
.collection-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--rose-deep);
  margin-bottom: 4px;
}
.collection-card__info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   FEATURED PRODUCTS
══════════════════════════════════════ */
.featured {
  padding: 80px 64px 100px;
  background: var(--cream);
}
.featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-card__img-wrap img {
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__img-wrap img {
  transform: scale(1.05);
}
.product-card__wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(253,250,247,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--rose-mid);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  backdrop-filter: blur(4px);
}
.product-card__wishlist:hover {
  background: var(--rose-deep);
  color: var(--cream);
  transform: scale(1.1);
}
.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--rose-deep);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-card__badge--sale {
  background: var(--gold);
  color: var(--rose-deep);
}
.product-card__info {
  padding: 18px 20px 20px;
}
.product-card__info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--rose-deep);
  margin-bottom: 4px;
}
.product-card__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--rose-deep);
  font-weight: 500;
}
.product-card__price s {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 6px;
  font-weight: 300;
}
.product-card__add {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.product-card__add:hover {
  color: var(--gold);
  border-color: var(--rose-mid);
}

/* ══════════════════════════════════════
   EDITORIAL BANNER
══════════════════════════════════════ */
.editorial {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.editorial__img-wrap {
  position: absolute;
  inset: 0;
}
.editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,10,16,0.88) 0%,
    rgba(74,28,43,0.55) 55%,
    rgba(26,10,16,0.2) 100%
  );
}
.editorial__content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 680px;
}
.editorial__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 36px;
}
.editorial__title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  padding: 100px 64px;
  gap: 80px;
  align-items: center;
  background: var(--white);
}
.about__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}
.about__content .section-title {
  margin-bottom: 24px;
}
.about__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  max-width: 480px;
}
.about__stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--rose-deep);
  font-weight: 400;
  line-height: 1;
}
.about__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials {
  padding: 100px 64px;
  background: var(--cream);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--rose-deep);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial p::before { content: '\201C'; }
.testimonial p::after  { content: '\201D'; }
.testimonial footer {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.newsletter {
  background: var(--rose-deep);
  padding: 100px 64px;
  text-align: center;
}
.newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
}
.newsletter__sub {
  color: rgba(242,237,228,0.65);
  font-size: 0.9rem;
  margin-bottom: 36px;
}
.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.newsletter__input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: none;
  background: rgba(242,237,228,0.12);
  color: var(--cream);
  outline: none;
  border-right: 1px solid rgba(201,168,124,0.2);
}
.newsletter__input::placeholder { color: rgba(242,237,228,0.4); }
.newsletter__form .btn {
  border-radius: 0;
  background: var(--gold);
  color: var(--rose-deep);
  border-color: var(--gold);
  font-weight: 600;
}
.newsletter__form .btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: none;
}
.newsletter__note {
  font-size: 0.72rem;
  color: rgba(242,237,228,0.35);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--white);
}
.contact__map {
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__map-placeholder {
  text-align: center;
  color: var(--text-muted);
}
.contact__map-placeholder svg { margin: 0 auto 16px; }
.contact__map-placeholder p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.contact__info {
  padding: 80px 64px;
}
.contact__info .section-title { margin-bottom: 36px; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose-mid);
}
.contact__detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact__detail p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact__social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-mid);
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.social-link:hover {
  color: var(--rose-deep);
  border-color: var(--gold);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(242,237,228,0.65);
  padding: 72px 64px 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201,168,124,0.15);
  margin-bottom: 32px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 0.85rem;
  color: rgba(242,237,228,0.5);
  transition: color 0.3s;
}
.footer__col ul a:hover { color: var(--cream); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(242,237,228,0.3);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  color: rgba(242,237,228,0.3);
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--cream); }

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--rose-deep);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-card);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 999;
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .featured__grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 48px; padding: 80px 48px; }
  .about__img-wrap { max-width: 500px; }
}

@media (max-width: 900px) {
  .nav { padding: 18px 28px; }
  .nav.scrolled { padding: 12px 28px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__content { padding: 0 40px 80px; }
  .hero__scroll-hint { right: 28px; }
  .collections { padding: 72px 32px; }
  .featured { padding: 72px 32px 80px; }
  .featured__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .testimonials { padding: 72px 32px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .newsletter { padding: 72px 32px; }
  .contact { grid-template-columns: 1fr; }
  .contact__map { min-height: 280px; }
  .contact__info { padding: 56px 32px; }
  .footer { padding: 56px 32px 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .editorial__content { padding: 0 40px; }
}

@media (max-width: 640px) {
  .hero__content { padding: 0 24px 72px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { text-align: center; justify-content: center; }
  .collections { padding: 56px 20px; }
  .collections__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .featured { padding: 56px 20px 72px; }
  .featured__grid { grid-template-columns: 1fr; }
  .about { padding: 56px 20px; }
  .about__stats { gap: 24px; }
  .testimonials { padding: 56px 20px; }
  .newsletter { padding: 56px 20px; }
  .newsletter__form { flex-direction: column; border-radius: var(--radius-sm); }
  .newsletter__input { border-right: none; border-bottom: 1px solid rgba(201,168,124,0.2); }
  .newsletter__form .btn { border-radius: 0; }
  .contact__info { padding: 40px 20px; }
  .footer { padding: 48px 20px 24px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .editorial__content { padding: 0 24px; }
}