/*
 * ============================================================
 * MARILAG ACCESSORIES — styles.css
 * Design Rationale:
 *   Logo: warm terracotta/dusty-rose background (#C49A7A)
 *   with minimalist white line-art figure holding a flower.
 *   Brand: "marilag" = beautiful/elegant in Filipino.
 *   Founded 2020, Bocaue Bulacan. 49K+ Instagram followers.
 *   Personalized custom jewelry — non-tarnish, waterproof.
 *
 *   Palette: warm terracotta-blush pulled directly from logo.
 *   --dark: deep warm coffee-noir (#1C0E08)
 *   --accent: terracotta blush (#C49A7A) — exact logo background
 *   --highlight: soft sage (#8A9E7A) — natural complement
 *   --cream: warm ivory (#FAF5EF)
 *
 *   Fonts: Unna (display — warm elegant serif with Latin roots,
 *          strong vertical stress, a graceful beauty that mirrors
 *          the word "marilag") +
 *          Source Sans 3 (body — clean humanist, highly legible,
 *          first use of this pairing in portfolio)
 *
 *   No @import here — Google Fonts loaded via HTML <link> tags.
 * ============================================================
 *
 * SECTIONS:
 *   1.  CSS Custom Properties (Variables)
 *   2.  CSS Reset & Base
 *   3.  Typography
 *   4.  Navbar
 *   5.  Hero / Page Hero
 *   6.  Buttons & CTAs
 *   7.  Sections & Layout
 *   8.  Cards (Product + Collection)
 *   9.  Homepage Product Grid
 *  10.  About Page
 *  11.  Collections Page
 *  12.  Gallery Page
 *  13.  Contact Page (Form + FAQ)
 *  14.  Footer
 *  15.  Scroll-to-Top
 *  16.  Animations & Transitions
 *  17.  Lightbox
 *  18.  Filter Buttons
 *  19.  Hamburger Menu
 *  20.  Accessibility & Focus
 *  21.  Responsive (Tablet)
 *  22.  Responsive (Mobile)
 */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --dark:        #1C0E08;
  --bg-alt:      #261508;
  --accent:      #C49A7A;
  --highlight:   #8A9E7A;
  --cream:       #FAF5EF;
  --cream-dim:   rgba(250, 245, 239, 0.65);
  --accent-dim:  rgba(196, 154, 122, 0.14);
  --border:      rgba(196, 154, 122, 0.22);
  --ff-display:  'Unna', Georgia, serif;
  --ff-body:     'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  --nav-h: 70px;
  --section-pad: 5rem 0;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
  --shadow: 0 2px 16px rgba(28, 14, 8, 0.18);
  --shadow-hover: 0 8px 32px rgba(28, 14, 8, 0.28);
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

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

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }

p { margin-bottom: 1rem; }

.text-accent  { color: var(--accent); }
.text-cream   { color: var(--cream); }
.text-muted   { color: var(--cream-dim); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(28, 14, 8, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.navbar-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar-logo-text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.82;
  transition: opacity var(--transition), color var(--transition);
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
}

.navbar-links a:hover,
.navbar-links a.active {
  opacity: 1;
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.navbar-cta {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  opacity: 1 !important;
  border-bottom: none !important;
  transition: background var(--transition), transform var(--transition);
}

.navbar-cta:hover {
  background: #d4aa8a;
  transform: translateY(-1px);
  color: var(--dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

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

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(28, 14, 8, 0.5);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--cream);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-nav .mobile-cta {
  display: inline-block;
  margin-top: 1.2rem;
  background: var(--accent);
  color: var(--dark);
  padding: 0.65rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.06em;
  border-bottom: none;
}

/* ============================================================
   5. HERO / PAGE HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-h) 1.5rem 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 14, 8, 0.55) 0%,
    rgba(28, 14, 8, 0.4) 40%,
    rgba(28, 14, 8, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero-content .eyebrow {
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(28, 14, 8, 0.6);
}

.hero-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (internal pages) */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3.5rem;
  overflow: hidden;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 14, 8, 0.45) 0%,
    rgba(28, 14, 8, 0.75) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

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

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

/* ============================================================
   6. BUTTONS & CTAs
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border: 1.5px solid var(--accent);
}

.btn-primary:hover {
  background: #d4aa8a;
  border-color: #d4aa8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 154, 122, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-accent {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-accent:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================================
   7. SECTIONS & LAYOUT
   ============================================================ */
.section {
  padding: var(--section-pad);
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-accent {
  background-color: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-header h2 {
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

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

/* ============================================================
   8. CARDS (Product + Collection)
   ============================================================ */
.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.card-body {
  padding: 1.1rem 1.25rem 1.4rem;
}

.card-body h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  margin: 0;
  line-height: 1.55;
}

.card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
  display: block;
}

/* ============================================================
   9. HOMEPAGE — PRODUCT GRID & FEATURED SECTIONS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Best Seller badge */
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.card-wrap {
  position: relative;
}

/* Features strip */
.features-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature-item {
  padding: 2rem 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.feature-item h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

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

/* ============================================================
   10. ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow);
}

.about-story-text .eyebrow {
  margin-bottom: 0.5rem;
}

.about-story-text h2 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.about-story-text p {
  color: var(--cream-dim);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 2.5rem;
}

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

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.15rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
}

.timeline-year {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.timeline-item h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin: 0;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.value-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

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

.value-card h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

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

/* Social proof stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  margin: 0;
  letter-spacing: 0.06em;
}

/* ============================================================
   11. COLLECTIONS PAGE
   ============================================================ */
.collection-category {
  margin-bottom: 4rem;
}

.collection-category-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.collection-category-header h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--cream);
}

.category-count {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 2px 10px;
  border-radius: 20px;
}

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

.collection-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  transition: border-color var(--transition);
}

.collection-item:hover {
  border-color: var(--accent);
}

.collection-item-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius);
  object-fit: cover;
}

.collection-item-info h4 {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.collection-item-info p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin: 0;
  line-height: 1.5;
}

/* Filter */
.filter-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

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

/* ============================================================
   12. GALLERY PAGE
   ============================================================ */
.gallery-grid {
  columns: 3;
  gap: 1.1rem;
}

.gallery-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.gallery-grid .gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 14, 8, 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-overlay svg {
  width: 36px;
  height: 36px;
  color: var(--cream);
}

/* ============================================================
   13. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.contact-info p {
  color: var(--cream-dim);
  font-size: 0.95rem;
}

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

.contact-detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  width: 100%;
  resize: vertical;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 245, 239, 0.35);
}

.form-group select option {
  background: var(--bg-alt);
  color: var(--cream);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-success.show {
  display: block;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 1rem;
  cursor: pointer;
  gap: 1rem;
}

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

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

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

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

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

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

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

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.footer-brand p {
  font-size: 0.87rem;
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px 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);
}

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

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

.footer-col ul li {
  margin-bottom: 0.6rem;
}

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

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

.footer-col p {
  font-size: 0.87rem;
  color: var(--cream-dim);
  margin-bottom: 0.6rem;
}

.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: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250, 245, 239, 0.4);
  margin: 0;
}

/* ============================================================
   15. SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(196, 154, 122, 0.4);
  border: none;
}

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

.scroll-top:hover {
  background: #d4aa8a;
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   16. ANIMATIONS & TRANSITIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   17. LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 14, 8, 0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(28, 14, 8, 0.8);
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(250, 245, 239, 0.12);
  transition: background var(--transition);
  border: none;
  z-index: 2001;
}

.lightbox-close:hover {
  background: rgba(250, 245, 239, 0.22);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 245, 239, 0.12);
  border-radius: 50%;
  transition: background var(--transition);
  border: none;
  z-index: 2001;
}

.lightbox-nav:hover {
  background: rgba(250, 245, 239, 0.22);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ============================================================
   18. FILTER BUTTONS (Collections)
   ============================================================ */
[data-filter-target] {
  transition: all 0.35s ease;
}

[data-filter-target].hidden {
  display: none;
}

/* ============================================================
   19. HAMBURGER MENU (handled above in Navbar section)
   ============================================================ */

/* ============================================================
   20. ACCESSIBILITY & FOCUS
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.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;
}

/* ============================================================
   21. RESPONSIVE — TABLET (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
  :root { --section-pad: 4rem 0; }

  .navbar-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .about-story-img {
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .gallery-grid {
    columns: 2;
  }
}

/* ============================================================
   22. RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --section-pad: 3rem 0; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero { min-height: 90vh; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .gallery-grid {
    columns: 2;
    gap: 0.6rem;
  }

  .collection-items-list {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    min-height: 300px;
  }
}
