/*
 * Brilya La Moda PH — styles.css
 * Design rationale: Luminous blush-and-sage fashion palette drawn directly from the Brilya logo —
 * a soft illustrated fashion scene in blush pink (#F5C0C8), sage green (#7A9470), and dusty rose.
 * Dark background is deep plum-noir (#1E1420), evoking the mood of a curated boutique at night.
 * Accent: rose-blush (#C4788A) mirrors the logo's script "Brilya" color.
 * Highlight: sage green (#7A9470) mirrors the clothing rack and botanical accents in the logo.
 * Fonts: Poiret One (Art Deco geometric display — fashion-forward, luminous, aspirational) +
 *        Lato (clean humanist body — modern, legible, approachable).
 * Loaded via HTML <link> — NOT @import.
 */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --dark:        #1E1420;
  --bg-alt:      #281828;
  --accent:      #C4788A;
  --highlight:   #7A9470;
  --cream:       #FAF5F7;
  --cream-dim:   rgba(250, 245, 247, 0.65);
  --accent-dim:  rgba(196, 120, 138, 0.14);
  --border:      rgba(196, 120, 138, 0.22);
  --ff-display:  'Poiret One', sans-serif;
  --ff-body:     'Lato', sans-serif;

  --radius:      6px;
  --transition:  0.3s ease;
  --shadow:      0 4px 24px rgba(0,0,0,0.32);
}

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

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

body {
  font-family: var(--ff-body);
  background-color: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .label { margin-bottom: 0.5rem; display: block; }
.section-header h2 { color: var(--cream); }
.section-header p {
  color: var(--cream-dim);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 1rem auto;
  display: block;
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(30, 20, 32, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  height: 52px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 0.5rem 1.4rem;
  border: 1.5px solid var(--accent);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--accent);
  color: var(--dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   6. MOBILE NAV
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 20, 32, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
}

.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn-nav { font-size: 0.9rem; padding: 0.7rem 2rem; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 20, 32, 0.82) 0%,
    rgba(30, 20, 32, 0.55) 55%,
    rgba(30, 20, 32, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 8rem 0 4rem;
}

.hero-content .label { margin-bottom: 1rem; display: block; }

.hero-content h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--cream-dim);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.85rem 2.2rem;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: all var(--transition);
}

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

.btn-outline {
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--cream-dim);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-dim);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}

.hero-scroll svg { width: 18px; height: 18px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   8. PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 10rem 0 5rem;
  margin-top: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,20,32,0.72) 0%, rgba(30,20,32,0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero-content p { color: var(--cream-dim); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ============================================================
   9. BRAND STRIP / TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   10. COLLECTIONS GRID
   ============================================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card-body {
  padding: 1.2rem 1.4rem;
}

.product-card-body h4 {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.product-card-body p {
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-bottom: 0;
}

.product-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.badge-new { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-curated { background: rgba(122, 148, 112, 0.14); color: var(--highlight); border: 1px solid rgba(122,148,112,0.22); }

/* ============================================================
   11. ABOUT / BRAND STORY
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1.5rem -1.5rem 1.5rem 1.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  z-index: -1;
}

.about-text .label { margin-bottom: 0.5rem; display: block; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--cream-dim); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: border-color var(--transition);
}

.value-card:hover { border-color: var(--accent); }

.value-card svg {
  width: 32px; height: 32px;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.value-card h4 {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.value-card p { font-size: 0.82rem; color: var(--cream-dim); margin: 0; }

/* ============================================================
   12. TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; padding-right: 2rem; }
.timeline-item:nth-child(odd) .timeline-year { grid-column: 2; padding-left: 2rem; }
.timeline-item:nth-child(even) .timeline-year { grid-column: 1; text-align: right; padding-right: 2rem; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 2; padding-left: 2rem; }

.timeline-year {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-start;
}

.timeline-content h4 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--cream); }
.timeline-content p { font-size: 0.82rem; color: var(--cream-dim); margin: 0; }

/* ============================================================
   13. GALLERY
   ============================================================ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.45rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: transparent;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,20,32,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay svg { width: 32px; height: 32px; color: var(--cream); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(250,245,247,0.12);
  border: none;
  color: var(--cream);
  font-size: 1.4rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
  z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(196,120,138,0.4); }

.lightbox-close { top: 1.2rem; right: 1.2rem; font-size: 1.2rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   14. COLLECTIONS PAGE
   ============================================================ */
.collections-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.category-header {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.category-header h3 { color: var(--cream); }
.category-header span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
}

/* ============================================================
   15. CONTACT / FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1.5rem; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-info-item h5 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.contact-info-item p { color: var(--cream-dim); font-size: 0.88rem; margin: 0; }

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  padding: 1rem 1.4rem;
  background: rgba(122,148,112,0.15);
  border: 1px solid rgba(122,148,112,0.3);
  border-radius: var(--radius);
  color: var(--highlight);
  font-size: 0.88rem;
  margin-top: 1rem;
}

/* ============================================================
   16. FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--accent);
}

.faq-question.open svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  color: var(--cream-dim);
  font-size: 0.88rem;
  padding-bottom: 1.2rem;
  margin: 0;
}

/* ============================================================
   17. SOCIAL PROOF / STATS
   ============================================================ */
.stats-bar {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--accent);
  display: block;
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color var(--transition);
}

.testimonial-card:hover { border-color: var(--accent); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 14px; height: 14px;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-card p {
  color: var(--cream-dim);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   18. SOCIAL LINKS SECTION
   ============================================================ */
.social-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid var(--border);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: all var(--transition);
}

.social-pill svg { width: 16px; height: 16px; }

.social-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
  max-width: 220px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer-social a svg { width: 14px; height: 14px; }

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact-item span {
  font-size: 0.82rem;
  color: var(--cream-dim);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--cream-dim);
  margin: 0;
}

.footer-bottom a { color: var(--accent); }

/* ============================================================
   20. FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================================
   21. SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
  color: var(--dark);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover { background: var(--cream); }
.scroll-top svg { width: 18px; height: 18px; }

/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { gap: 2.5rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: 100%; }
  .about-split,
  .about-split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .about-split.reverse > * { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 16px; }
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 2.5rem;
  }
  .timeline-item::after { left: 10px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 1; text-align: left; padding: 0; }
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year { grid-column: 1; text-align: left; padding: 0; order: -1; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero-btns { flex-direction: column; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
