/* ============================================
   ALERELA COSMETICS - Luxury Lip Stain Brand
   ============================================ */

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

:root {
  --blush: #F5E1E0;
  --blush-light: #FDF5F4;
  --blush-dark: #E8C4C0;
  --berry: #8C3050;
  --berry-deep: #5C1830;
  --mauve: #A04060;
  --rose-gold: #C4907C;
  --rose-gold-light: #D4B0A0;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #F8F4F0;
  --charcoal: #2C2428;
  --charcoal-light: #4A3C44;
  --text: #3C2C34;
  --text-light: #7A6870;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Typography --- */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
}

.section-label--light {
  color: var(--rose-gold-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.section-title--light {
  color: var(--white);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn--primary {
  background: var(--berry);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--berry-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140, 48, 80, 0.4);
}

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

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}

.nav__logo img {
  height: 80px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--transition), opacity var(--transition);
}

.nav.scrolled .nav__logo img {
  filter: none;
}

.nav.scrolled .nav__logo {
  opacity: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-gold);
  transition: width var(--transition);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav.scrolled .nav__links a {
  color: var(--text);
}

.nav__links a:hover {
  color: var(--white);
}

.nav.scrolled .nav__links a:hover {
  color: var(--berry);
}

.nav__cta {
  padding: 0.6rem 1.5rem !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  transition: all var(--transition) !important;
}

.nav__cta:hover {
  background: rgba(255,255,255,0.15);
}

.nav.scrolled .nav__cta {
  border-color: var(--berry) !important;
  color: var(--berry) !important;
}

.nav.scrolled .nav__cta:hover {
  background: var(--berry);
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.nav.scrolled .nav__toggle span {
  background: var(--charcoal);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 144, 124, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(140, 48, 80, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(92, 24, 48, 0.2) 0%, transparent 70%),
    linear-gradient(135deg, #2C1820 0%, #3C2030 30%, #4A2840 60%, #2C1820 100%);
  animation: heroBgShift 12s ease-in-out infinite alternate;
}

@keyframes heroBgShift {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(20, 8, 14, 0.3) 100%);
}

.hero__split {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  padding: 6rem 2rem 2rem;
}

.hero__content {
  position: relative;
  text-align: left;
  flex: 1;
  max-width: 550px;
}

.hero__product {
  flex: 0 0 auto;
  position: relative;
}

.hero__product-img {
  width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transform: rotate(-15deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: floatProduct 4s ease-in-out infinite;
}

.hero__product-img:hover {
  transform: rotate(-10deg) scale(1.05);
}

@keyframes floatProduct {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-15deg) translateY(-12px); }
}

.hero__pre {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--white);
}

.hero__title-line--accent {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose-gold-light) 50%, var(--blush-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   BRAND STORY
   ============================================ */
.story {
  padding: 7rem 0;
  background: var(--white);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story__image-col {
  position: relative;
  height: 600px;
}

.story__image {
  position: absolute;
  overflow: hidden;
}

.story__image--1 {
  width: 70%;
  height: 75%;
  top: 0;
  left: 0;
}

.story__image--2 {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 1;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.08);
}

.story__image-inner {
  width: 100%;
  height: 100%;
  transition: transform 1.2s ease;
}

.story__image:hover .story__image-inner {
  transform: scale(1.05);
}

.story__divider {
  width: 60px;
  height: 1px;
  background: var(--rose-gold);
  margin-bottom: 2rem;
}

.story__text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.story__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--blush);
}

.story__stat {
  text-align: center;
}

.story__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--berry);
  line-height: 1;
}

.story__stat-plus {
  font-size: 1.5rem;
  color: var(--rose-gold);
}

.story__stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.features__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C1820 0%, #3C2030 50%, #2C1820 100%);
}

.features__header {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
}

.features__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196, 144, 124, 0.3);
  transform: translateY(-8px);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  color: var(--rose-gold-light);
  transition: all var(--transition);
}

.feature-card:hover .feature-card__icon {
  color: var(--blush);
  transform: scale(1.1);
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.feature-card__text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   SHADES
   ============================================ */
.shades {
  padding: 7rem 0;
  background: var(--off-white);
}

.shades__header {
  text-align: center;
  margin-bottom: 4rem;
}

.shades__subtitle {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
}

.shades__filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.shades__filter {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--blush-dark);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}

.shades__filter:hover,
.shades__filter.active {
  background: var(--berry);
  border-color: var(--berry);
  color: var(--white);
}

.shades__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.shade-card {
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0.5rem;
}

.shade-card:hover {
  transform: translateY(-6px);
}

.shade-card.hidden {
  display: none;
}

.shade-card__swatch {
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
}

.shade-card__swatch::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.shade-card:hover .shade-card__swatch {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.shade-card:hover .shade-card__swatch::after {
  border-color: var(--rose-gold);
}

.shade-card__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.shade-card__number {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.shades__cta {
  text-align: center;
}

.shades__cta p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ============================================
   PARALLAX DIVIDER
   ============================================ */
.parallax-divider {
  position: relative;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
}

.parallax-divider__bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(196, 144, 124, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 40%, rgba(140, 48, 80, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #3C2030, #2C1820, #4A2840);
  will-change: transform;
}

.parallax-divider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-divider__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   VALUES
   ============================================ */
.values {
  padding: 7rem 0;
  background: var(--white);
}

.values__header {
  text-align: center;
  margin-bottom: 4rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-card__icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.value-card__icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--blush-light);
  transition: all var(--transition);
}

.value-card:hover .value-card__icon-wrap::before {
  transform: scale(1.15);
  background: var(--blush);
}

.value-card__icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  padding-top: 16px;
  color: var(--berry);
  transition: all var(--transition);
}

.value-card:hover .value-card__icon {
  transform: scale(1.1);
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.value-card__text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

.values__ingredients {
  background: var(--blush-light);
  padding: 4rem;
}

.values__ingredients-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2.5rem;
}

.values__ingredients-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ingredient {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--white);
  transition: all var(--transition);
}

.ingredient:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ingredient__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
}

.ingredient__benefit {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-gold);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 7rem 0;
  background: var(--off-white);
}

.gallery__header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1.25rem;
}

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

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 32, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery__item-icon {
  width: 32px;
  height: 32px;
  color: var(--white);
  transform: scale(0.8);
  transition: transform var(--transition);
}

.gallery__item:hover .gallery__item-icon {
  transform: scale(1);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.newsletter__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(196, 144, 124, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #2C1820 0%, #3C2030 50%, #2C1820 100%);
}

.newsletter__content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter__text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
}

.newsletter__form {
  width: 100%;
}

.newsletter__input-group {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto 1rem;
}

.newsletter__input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--charcoal);
  background: var(--white);
  border: none;
  outline: none;
}

.newsletter__input::placeholder {
  color: var(--text-light);
}

.newsletter__btn {
  white-space: nowrap;
}

.newsletter__disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer__logo:hover .footer__logo-img {
  opacity: 1;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
}

.footer__social-link:hover {
  color: var(--white);
  border-color: var(--rose-gold);
  background: rgba(196, 144, 124, 0.15);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 1.5rem;
}

.footer__list li {
  margin-bottom: 0.75rem;
}

.footer__list a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__list a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

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

.footer__bottom-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .story {
    padding: 5rem 0;
  }

  .features {
    padding: 5rem 0;
  }

  .shades {
    padding: 5rem 0;
  }

  .values {
    padding: 5rem 0;
  }

  .gallery {
    padding: 5rem 0;
  }

  .newsletter {
    padding: 5rem 0;
  }

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

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

  .values__ingredients-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav__logo img {
    height: 60px;
    max-width: 240px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem;
    gap: 2rem;
    transition: right var(--transition);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__links a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.85rem;
  }

  .nav__links a:hover {
    color: var(--white) !important;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .hero__split {
    flex-direction: column;
    text-align: center;
    padding: 5rem 1.5rem 2rem;
    gap: 2rem;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__product-img {
    width: 300px;
    transform: rotate(-10deg);
  }

  @keyframes floatProduct {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50% { transform: rotate(-10deg) translateY(-8px); }
  }

  .hero__title-line {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .story {
    padding: 3.5rem 0;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story__image-col {
    height: 300px;
  }

  .story__stats {
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .features {
    padding: 3.5rem 0;
  }

  .features__header {
    margin-bottom: 2.5rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .shades {
    padding: 3.5rem 0;
  }

  .shades__header {
    margin-bottom: 2.5rem;
  }

  .shades__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .shade-card__swatch {
    width: 80%;
  }

  .parallax-divider {
    padding: 3.5rem 0;
  }

  .values {
    padding: 3.5rem 0;
  }

  .values__header {
    margin-bottom: 2.5rem;
  }

  .values__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .values__ingredients {
    padding: 2.5rem 1.5rem;
  }

  .values__ingredients-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery {
    padding: 3.5rem 0;
  }

  .gallery__header {
    margin-bottom: 2.5rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 0.75rem;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .newsletter {
    padding: 3.5rem 0;
  }

  .newsletter__input-group {
    flex-direction: column;
  }

  .footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero__split {
    padding: 5rem 1rem 2rem;
    gap: 1.5rem;
  }

  .hero__product-img {
    width: 240px;
  }

  .shades__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .shade-card__swatch {
    width: 75%;
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.5rem;
  }

  .features__grid {
    gap: 1.25rem;
  }

  .feature-card {
    padding: 2.5rem 1.5rem;
  }

  .newsletter__content {
    padding: 0 0.5rem;
  }

  .values__ingredients {
    padding: 2rem 1rem;
  }
}
