/* ============================================================
   LUMIÈRE — Luxury Jewellery Brand
   Production-Ready Stylesheet
   ============================================================
   Table of Contents:
   1.  Design Tokens (Custom Properties)
   2.  CSS Reset / Normalize
   3.  Base Styles
   4.  Navigation
   5.  Hero Section
   6.  Section Headers (Reusable)
   7.  Featured Collections
   8.  Best Sellers
   9.  Brand Story
   10. Trust Indicators
   11. Testimonials
   12. Instagram Gallery
   13. Newsletter
   14. Footer
   15. Utility Classes
   16. Quick View Modal
   17. Mobile Sticky CTA
   18. Scroll Progress Bar
   19. Back to Top Button
   20. Keyframe Animations
   21. Responsive — Tablet (768–1023)
   22. Responsive — Mobile (max 767)
   23. Responsive — Large (1440+)
   24. Reduced Motion
   ============================================================ */


/* =============================================================
   1. DESIGN TOKENS (Custom Properties)
   ============================================================= */

:root {
  /* ── Colour Palette ── */
  --color-gold:            #C9A96E;
  --color-gold-light:      #E8D5A8;
  --color-gold-dark:       #B08D4F;
  --color-black:           #0F0F0F;
  --color-ivory:           #FAF7F2;
  --color-beige:           #E8E0D3;
  --color-charcoal:        #1F1F1F;
  --color-white:           #FFFFFF;
  --color-muted:           #8A8680;
  --color-muted-light:     rgba(255, 255, 255, 0.55);
  --color-border:          rgba(201, 169, 110, 0.25);

  /* ── Gradients ── */
  --gradient-gold:         linear-gradient(135deg, #C9A96E, #E8D5A8);
  --gradient-hero-overlay: linear-gradient(
                             to bottom,
                             rgba(15, 15, 15, 0.4),
                             rgba(15, 15, 15, 0.6)
                           );

  /* ── Typography — Families ── */
  --font-heading:  'Cormorant Garamond', serif;
  --font-body:     'Inter', sans-serif;

  /* ── Typography — Sizes (responsive clamp) ── */
  --text-xs:    clamp(0.6875rem, 0.65rem + 0.15vw, 0.75rem);   /* ~11–12 */
  --text-sm:    clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);      /* ~12–14 */
  --text-base:  clamp(0.875rem, 0.85rem + 0.2vw, 1rem);        /* ~14–16 */
  --text-md:    clamp(1rem, 0.95rem + 0.25vw, 1.125rem);       /* ~16–18 */
  --text-lg:    clamp(1.125rem, 1rem + 0.5vw, 1.5rem);         /* ~18–24 */
  --text-xl:    clamp(1.5rem, 1.2rem + 1vw, 2rem);             /* ~24–32 */
  --text-2xl:   clamp(1.75rem, 1.5rem + 1.5vw, 2.5rem);       /* ~28–40 */
  --text-3xl:   clamp(2rem, 1.5rem + 2.5vw, 3rem);             /* ~32–48 */
  --text-4xl:   clamp(2.5rem, 2rem + 3vw, 3.75rem);            /* ~40–60 */
  --text-hero:  clamp(2.5rem, 2rem + 5vw, 4.5rem);             /* ~40–72 */

  /* ── Spacing — 4 px scale ── */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-7:   28px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-14:  56px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;
  --space-28:  112px;
  --space-32:  128px;

  /* ── Border Radius ── */
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* ── Transitions ── */
  --ease-smooth:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out-expo:  cubic-bezier(0.19, 1, 0.22, 1);
  --transition-fast:   0.2s var(--ease-smooth);
  --transition-base:   0.3s var(--ease-smooth);
  --transition-slow:   0.6s var(--ease-out-expo);

  /* ── Shadows ── */
  --shadow-sm:   0 1px  3px rgba(0, 0, 0, 0.06);
  --shadow-md:   0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg:   0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-xl:   0 16px 48px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.20);

  /* ── Z-Index Layers ── */
  --z-base:       1;
  --z-dropdown:   100;
  --z-sticky:     200;
  --z-nav:        500;
  --z-overlay:    800;
  --z-modal:      900;
  --z-toast:      1000;

  /* ── Layout ── */
  --container-max:  1320px;
  --container-pad:  clamp(20px, 4vw, 80px);
  --section-pad-y:  clamp(64px, 8vw, 128px);
}


/* =============================================================
   2. CSS RESET / NORMALIZE
   ============================================================= */

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

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  line-height: 1.2;
}

p {
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* =============================================================
   3. BASE STYLES
   ============================================================= */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-charcoal);
  background-color: var(--color-white);
}

::selection {
  background-color: var(--color-gold);
  color: var(--color-black);
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}


/* =============================================================
   4. NAVIGATION
   ============================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  transition: background-color var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── Logo ── */
.nav__logo {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  transition: color var(--transition-base);
  flex-shrink: 0;
}

/* ── Links ── */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.nav__link {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  transition: color var(--transition-base);
  padding-block: var(--space-2);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--color-gold);
}

/* ── Icons ── */
.nav__icons {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__icon {
  color: var(--color-white);
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.nav__icon:hover {
  color: var(--color-gold);
}

.nav__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ── Scrolled State ── */
.nav-scrolled {
  background-color: rgba(250, 247, 242, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--color-beige);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

.nav-scrolled .nav__link {
  color: var(--color-charcoal);
}

.nav-scrolled .nav__link:hover {
  color: var(--color-gold);
}

.nav-scrolled .nav__icon {
  color: var(--color-charcoal);
}

.nav-scrolled .nav__icon:hover {
  color: var(--color-gold);
}

/* ── Hamburger ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  gap: 6px;
  position: relative;
  z-index: calc(var(--z-overlay) + 2);
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-white);
  transition: transform var(--transition-base),
              opacity var(--transition-base),
              background-color var(--transition-base);
  transform-origin: center;
}

.nav-scrolled .nav__hamburger-line {
  background-color: var(--color-charcoal);
}

/* Hamburger open state */
.nav__hamburger--open .nav__hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__hamburger--open .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--open .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav__hamburger--open .nav__hamburger-line {
  background-color: var(--color-white);
}

/* ── Mobile Overlay ── */
.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background-color: rgba(15, 15, 15, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-smooth),
              visibility 0.4s var(--ease-smooth);
}

.nav__mobile-overlay--open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-overlay .nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-smooth),
              transform 0.4s var(--ease-out-expo),
              color var(--transition-base);
}

.nav__mobile-overlay--open .nav__link {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile-overlay--open .nav__link:nth-child(1) { transition-delay: 0.1s; }
.nav__mobile-overlay--open .nav__link:nth-child(2) { transition-delay: 0.15s; }
.nav__mobile-overlay--open .nav__link:nth-child(3) { transition-delay: 0.2s; }
.nav__mobile-overlay--open .nav__link:nth-child(4) { transition-delay: 0.25s; }
.nav__mobile-overlay--open .nav__link:nth-child(5) { transition-delay: 0.3s; }
.nav__mobile-overlay--open .nav__link:nth-child(6) { transition-delay: 0.35s; }


/* =============================================================
   5. HERO SECTION
   ============================================================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Parallax fallback for mobile (fixed bg not well supported) */
@supports (-webkit-touch-callout: none) {
  .hero__bg {
    background-attachment: scroll;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding-inline: var(--container-pad);
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--text-hero);
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

/* Decorative gold line below headline */
.hero__headline::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gradient-gold);
  margin: var(--space-8) auto 0;
}

.hero__subheadline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-12);
  max-width: 540px;
  margin-inline: auto;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* ── Primary CTA ── */
.btn-primary {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-black);
  padding: 16px 48px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--color-gold);
  transition: background-color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-base);
}

.btn-primary:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.btn-primary:active {
  transform: scale(0.98);
}

/* ── Secondary CTA ── */
.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--color-white);
  padding: 16px 48px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-base);
}

.btn-secondary:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-secondary:active {
  transform: scale(0.98);
}

/* ── Scroll Indicator ── */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.hero__scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  animation: bounce 2s var(--ease-smooth) infinite;
}


/* =============================================================
   6. SECTION HEADERS (Reusable)
   ============================================================= */

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
}

.section-header__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.section-header__label::before,
.section-header__label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--color-gold);
}

.section-header__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--text-3xl);
  color: var(--color-charcoal);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-4);
}

.section-header__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-base);
  color: var(--color-muted);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Light variant for dark backgrounds */
.section-header--light .section-header__title {
  color: var(--color-white);
}

.section-header--light .section-header__subtitle {
  color: var(--color-muted-light);
}


/* =============================================================
   7. FEATURED COLLECTIONS
   ============================================================= */

.collections {
  background-color: var(--color-ivory);
  padding-block: var(--section-pad-y);
}

.collections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-6);
}

/* First card spans two rows for visual hierarchy */
.collections__card:first-child {
  grid-row: 1 / 3;
}

.collections__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.collections__card-image-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 120%;              /* Fallback aspect ratio */
  overflow: hidden;
}

.collections__card:first-child .collections__card-image-wrap {
  padding-bottom: 100%;               /* Tall spanning card fills 2 rows */
  height: 100%;
}

.collections__card-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.collections__card:hover .collections__card-image-wrap img {
  transform: scale(1.05);
}

/* Card overlay gradient */
.collections__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  z-index: 1;
  transition: background var(--transition-slow);
}

.collections__card:hover .collections__card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}

.collections__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-8);
}

.collections__card-name {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1rem + 0.75vw, 1.75rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.collections__card-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.collections__card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-white);
  transition: color var(--transition-base);
}

.collections__card-link::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition-base);
}

.collections__card:hover .collections__card-link {
  color: var(--color-gold);
}

.collections__card:hover .collections__card-link::after {
  width: 40px;
}


/* =============================================================
   8. BEST SELLERS
   ============================================================= */

.bestsellers {
  background-color: var(--color-beige);
  padding-block: var(--section-pad-y);
}

.bestsellers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

/* ── Product Card ── */
.product-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-xs);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--color-ivory);
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 3 / 4) {
  .product-card__image-wrap {
    padding-bottom: 133.33%;
  }
  .product-card__image-wrap img {
    position: absolute;
    inset: 0;
  }
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.03);
}

/* ── Wishlist Heart ── */
.product-card__wishlist {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: background-color var(--transition-base),
              transform var(--transition-base);
}

.product-card__wishlist:hover {
  background-color: var(--color-ivory);
  transform: scale(1.08);
}

.product-card__wishlist svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-charcoal);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition-base), fill var(--transition-base);
}

.product-card__wishlist--active svg {
  fill: var(--color-gold);
  stroke: var(--color-gold);
}

/* ── Tag / Badge ── */
.product-card__tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 4px 14px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: var(--color-gold);
  color: var(--color-black);
  border-radius: var(--radius-full);
  z-index: 2;
}

/* ── Quick View ── */
.product-card__quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-gold);
  color: var(--color-black);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity var(--transition-base),
              transform var(--transition-base);
}

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

/* ── Product Info ── */
.product-card__info {
  padding: var(--space-6);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: var(--space-1);
  line-height: 1.3;
}

.product-card__material {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.product-card__price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-charcoal);
}


/* =============================================================
   9. BRAND STORY
   ============================================================= */

.brand-story {
  padding-block: var(--section-pad-y);
  background-color: var(--color-white);
}

.brand-story__grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: center;
}

/* ── Image with Decorative Frame ── */
.brand-story__image-wrap {
  position: relative;
}

.brand-story__image-wrap::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--color-gold);
  pointer-events: none;
  z-index: 0;
}

.brand-story__image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ── Text ── */
.brand-story__text {
  padding-block: var(--space-8);
}

.brand-story__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.brand-story__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: var(--space-6);
  line-height: 1.15;
}

.brand-story__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

/* ── Quote ── */
.brand-story__quote {
  border-left: 2px solid var(--color-gold);
  padding-left: var(--space-6);
  margin-bottom: var(--space-10);
}

.brand-story__quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-charcoal);
  line-height: 1.6;
}

.brand-story__quote cite {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-muted);
}

/* ── Counters ── */
.brand-story__counters {
  display: flex;
  gap: var(--space-10);
}

.brand-story__counter {
  text-align: left;
}

.brand-story__counter-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.brand-story__counter-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}


/* =============================================================
   10. TRUST INDICATORS
   ============================================================= */

.trust {
  background-color: var(--color-ivory);
  padding-block: var(--section-pad-y);
}

.trust__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.trust__item {
  flex: 1;
  text-align: center;
  padding-inline: var(--space-6);
  position: relative;
}

/* Vertical separator between items */
.trust__item + .trust__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: var(--color-beige);
}

.trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: transform var(--transition-base);
}

.trust__item:hover .trust__icon {
  transform: translateY(-4px);
}

.trust__icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1;
}

.trust__heading {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.trust__desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.6;
}


/* =============================================================
   11. TESTIMONIALS
   ============================================================= */

.testimonials {
  background-color: var(--color-charcoal);
  padding-block: var(--section-pad-y);
  overflow: hidden;
}

.testimonials__slider {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.testimonials__slide {
  display: none;
}

.testimonials__slide--active {
  display: block;
  animation: fadeIn 0.6s var(--ease-smooth);
}

/* Decorative opening quote */
.testimonials__quote-mark {
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 0.8;
  color: var(--color-gold);
  opacity: 0.3;
  margin-bottom: var(--space-4);
  user-select: none;
  pointer-events: none;
}

.testimonials__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* Stars */
.testimonials__stars {
  display: flex;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.testimonials__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

/* Author */
.testimonials__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.testimonials__author-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid rgba(201, 169, 110, 0.3);
}

.testimonials__author-info {
  text-align: left;
}

.testimonials__author-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--color-white);
}

.testimonials__author-title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-sm);
  color: var(--color-muted-light);
}

/* ── Navigation Dots ── */
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-10);
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-base),
              transform var(--transition-base);
}

.testimonials__dot--active {
  background-color: var(--color-gold);
  transform: scale(1.3);
}

.testimonials__dot:hover {
  background-color: var(--color-gold);
}

/* ── Prev / Next Arrows ── */
.testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  transition: color var(--transition-base);
}

.testimonials__arrow svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition-base);
}

.testimonials__arrow:hover svg {
  stroke: var(--color-gold);
}

.testimonials__arrow--prev {
  left: -60px;
}

.testimonials__arrow--next {
  right: -60px;
}


/* =============================================================
   12. INSTAGRAM GALLERY
   ============================================================= */

.instagram {
  background-color: var(--color-ivory);
  padding-block: var(--section-pad-y);
}

.instagram__handle {
  text-align: center;
  margin-bottom: var(--space-10);
}

.instagram__handle a {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
}

.instagram__handle a:hover {
  color: var(--color-gold);
}

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

.instagram__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.instagram__item::before {
  content: '';
  display: block;
  padding-bottom: 100%;    /* Square */
}

.instagram__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.instagram__item:hover img {
  transform: scale(1.05);
}

/* Hover overlay */
.instagram__item-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 15, 15, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

.instagram__item:hover .instagram__item-overlay {
  opacity: 1;
}

.instagram__item-overlay svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

.instagram__item-overlay span {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-white);
}


/* =============================================================
   13. NEWSLETTER
   ============================================================= */

.newsletter {
  position: relative;
  background-color: var(--color-charcoal);
  padding-block: var(--section-pad-y);
  overflow: hidden;
}

/* Subtle CSS pattern overlay */
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(201, 169, 110, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(201, 169, 110, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.newsletter__content {
  position: relative;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  z-index: 1;
}

.newsletter__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.newsletter__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-base);
  color: var(--color-muted-light);
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.newsletter__input {
  flex: 1;
  padding: var(--space-4) 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 300;
  transition: border-color var(--transition-base);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter__input:focus {
  border-bottom-color: var(--color-gold);
}

.newsletter__submit {
  padding: var(--space-4) var(--space-8);
  background-color: var(--color-gold);
  color: var(--color-black);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background-color var(--transition-base);
  white-space: nowrap;
}

.newsletter__submit:hover {
  background-color: var(--color-gold-dark);
}

.newsletter__privacy {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

.newsletter__privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}

.newsletter__privacy a:hover {
  color: var(--color-gold);
}


/* =============================================================
   14. FOOTER
   ============================================================= */

.footer {
  background-color: var(--color-black);
  color: rgba(255, 255, 255, 0.55);
  padding-top: var(--section-pad-y);
}

/* ── Top Columns ── */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-16);
}

.footer__brand-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
  display: block;
}

.footer__brand-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  max-width: 300px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.footer__links li + li {
  margin-top: var(--space-3);
}

.footer__links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-base);
}

.footer__links a:hover {
  color: var(--color-gold);
}

/* ── Social ── */
.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  padding-block: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
  color: rgba(255, 255, 255, 0.45);
}

.footer__social-link:hover {
  color: var(--color-gold);
}

.footer__social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ── Bottom ── */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-8);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition-base);
}

.footer__legal a:hover {
  color: var(--color-gold);
}


/* =============================================================
   15. UTILITY CLASSES
   ============================================================= */

/* ── Scroll-triggered reveal ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-smooth),
              transform 0.6s var(--ease-out-expo);
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s var(--ease-smooth);
}

.fade-in.is-visible {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s var(--ease-smooth),
              transform 0.6s var(--ease-out-expo);
}

.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Gold text ── */
.gold-text {
  color: var(--color-gold);
}

/* ── Screen-reader only ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =============================================================
   16. QUICK VIEW MODAL
   ============================================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-smooth),
              visibility 0.35s var(--ease-smooth);
}

.modal-overlay--open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.35s var(--ease-out-expo);
}

.modal-overlay--open .modal {
  transform: scale(1) translateY(0);
}

.modal__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__details {
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--color-gold);
  cursor: pointer;
  transition: transform var(--transition-base);
  z-index: 2;
  line-height: 1;
}

.modal__close:hover {
  transform: rotate(90deg);
}


/* =============================================================
   17. MOBILE STICKY CTA
   ============================================================= */

.mobile-cta {
  display: none;            /* Shown only on mobile via media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: var(--color-gold);
  padding: var(--space-3) var(--container-pad);
  transform: translateY(0);
  transition: transform var(--transition-base);
}

.mobile-cta--hidden {
  transform: translateY(100%);
}

.mobile-cta__button {
  display: block;
  width: 100%;
  padding: var(--space-4);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-black);
  background: none;
}


/* =============================================================
   18. SCROLL PROGRESS BAR
   ============================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-gold);
  z-index: calc(var(--z-nav) + 1);
  transition: width 0.05s linear;
  pointer-events: none;
}


/* =============================================================
   19. BACK TO TOP BUTTON
   ============================================================= */

.back-to-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--color-gold);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-base),
              visibility var(--transition-base),
              transform var(--transition-base),
              background-color var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: scale(1.08);
  background-color: var(--color-gold-dark);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}


/* =============================================================
   20. KEYFRAME ANIMATIONS
   ============================================================= */

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

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

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

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes bounce {
  0%, 100% {
    top: -100%;
  }
  50% {
    top: 100%;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(201, 169, 110, 0);
  }
}

/* Shimmer utility (apply to any element needing a gold shimmer sweep) */
.shimmer {
  background-image: linear-gradient(
    110deg,
    transparent 25%,
    rgba(201, 169, 110, 0.12) 37%,
    transparent 50%
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}


/* =============================================================
   21. RESPONSIVE — Tablet (768–1023)
   ============================================================= */

@media (max-width: 1023px) {

  /* Collections */
  .collections__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .collections__card:first-child {
    grid-row: auto;          /* Reset spanning */
  }

  .collections__card-image-wrap,
  .collections__card:first-child .collections__card-image-wrap {
    padding-bottom: 110%;
    height: auto;
  }

  /* Best Sellers */
  .bestsellers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  /* Brand Story */
  .brand-story__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Trust */
  .trust__grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
  }

  .trust__item {
    flex: 0 0 calc(50% - var(--space-4));
    max-width: calc(50% - var(--space-4));
  }

  .trust__item + .trust__item::before {
    display: none;
  }

  /* Instagram */
  .instagram__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Testimonial Arrows */
  .testimonials__arrow--prev { left: -20px; }
  .testimonials__arrow--next { right: -20px; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10) var(--space-8);
  }
}


/* =============================================================
   22. RESPONSIVE — Mobile (max 767px)
   ============================================================= */

@media (max-width: 767px) {

  /* Nav */
  .nav__links {
    display: none;           /* Hidden; use mobile overlay */
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__inner {
    height: 64px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero__bg {
    background-attachment: scroll;     /* Fixed bg unreliable on mobile */
  }

  .hero__ctas {
    flex-direction: column;
    gap: var(--space-4);
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* Collections */
  .collections__grid {
    grid-template-columns: 1fr;
  }

  .collections__card-image-wrap,
  .collections__card:first-child .collections__card-image-wrap {
    padding-bottom: 100%;
    height: auto;
  }

  /* Best Sellers */
  .bestsellers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .product-card__info {
    padding: var(--space-4);
  }

  .product-card__name {
    font-size: 1.05rem;
  }

  /* Brand Story */
  .brand-story__grid {
    grid-template-columns: 1fr;
  }

  .brand-story__image-wrap::before {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
  }

  .brand-story__counters {
    gap: var(--space-6);
    justify-content: space-between;
  }

  /* Trust */
  .trust__grid {
    flex-wrap: wrap;
    gap: var(--space-8);
  }

  .trust__item {
    flex: 0 0 calc(50% - var(--space-4));
    max-width: calc(50% - var(--space-4));
  }

  .trust__item + .trust__item::before {
    display: none;
  }

  /* Testimonials */
  .testimonials__quote-mark {
    font-size: 80px;
  }

  .testimonials__arrow--prev,
  .testimonials__arrow--next {
    display: none;
  }

  .testimonials__author {
    flex-direction: column;
    gap: var(--space-3);
  }

  .testimonials__author-info {
    text-align: center;
  }

  /* Instagram */
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Newsletter */
  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__submit {
    width: 100%;
    padding-block: var(--space-4);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  /* Modal */
  .modal {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }

  .modal__image {
    aspect-ratio: 4 / 3;
  }

  .modal__details {
    padding: var(--space-6);
  }

  /* Mobile Sticky CTA */
  .mobile-cta {
    display: block;
  }

  /* Back-to-top nudge away from CTA */
  .back-to-top {
    bottom: calc(var(--space-8) + 60px);
  }
}


/* =============================================================
   23. RESPONSIVE — Large (1440+)
   ============================================================= */

@media (min-width: 1440px) {

  .container {
    max-width: 1400px;
  }

  .bestsellers__grid {
    gap: var(--space-10);
  }

  .instagram__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}


/* =============================================================
   24. REDUCED MOTION
   ============================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in-up,
  .fade-in,
  .scale-in {
    opacity: 1;
    transform: none;
  }

  .hero__scroll-line::after {
    animation: none;
  }
}
