/*
 * ============================================================
 * GLAD2GLOW — styles.css
 * Design Rationale:
 * The Glad2Glow brand is a Gen-Z Filipino beauty label centered
 * on affordable, natural-ingredient lip care and skincare.
 * The logo is a soft pastel pink circle (#F4A8C6) on white,
 * giving a playful, feminine, and approachable identity.
 *
 * Palette strategy: Deep charcoal-mauve dark base to provide
 * contrast against the brand's soft pinks without using the
 * cliché white-on-white approach. Hot pink --accent echoes
 * the brand's Strawberry Glaze and Cherry Fizz product tones.
 * Berry --highlight adds depth (Berry Soda, Red Velvet Latte).
 * --cream is warm ivory for text legibility on dark.
 *
 * Fonts: Nunito (display) — rounded, playful, approachable
 * sans-serif that matches G2G's youthful brand voice.
 * Mulish (body) — clean, modern, legible humanist sans.
 * Both are new pairings not previously used in this portfolio.
 *
 * ============================================================
 * SECTION INDEX
 * 1.  CSS Variables / Design Tokens
 * 2.  Reset & Base
 * 3.  Typography
 * 4.  Utility Classes
 * 5.  Animations
 * 6.  Navbar
 * 7.  Page Hero
 * 8.  Footer
 * 9.  Buttons
 * 10. Home — Hero Section
 * 11. Home — Features Strip
 * 12. Home — Products Grid
 * 13. Home — Brand Teaser
 * 14. Home — Stats Row
 * 15. Home — Review Cards
 * 16. Home — Social CTA
 * 17. Home — Social Feed
 * 18. About — Origin / Philosophy / Values / Timeline
 * 19. Products Page
 * 20. Gallery Page
 * 21. Contact Page
 * 22. Scroll-to-Top Button
 * ============================================================
 */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --dark:       #1A0F1E;
  --bg-alt:     #261530;
  --accent:     #E8317A;
  --highlight:  #A0274F;
  --cream:      #FAF3F0;
  --cream-dim:  rgba(250, 243, 240, 0.65);
  --accent-dim: rgba(232, 49, 122, 0.14);
  --border:     rgba(232, 49, 122, 0.22);
  --ff-display: 'Nunito', sans-serif;
  --ff-body:    'Mulish', sans-serif;
  --radius:     12px;
  --radius-sm:  6px;
  --transition: 0.3s ease;
  --shadow:     0 4px 24px rgba(0,0,0,0.35);
}

/* ============================================================
   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: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { font-size: 1rem; line-height: 1.75; }

.section-label {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--cream);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }

section { padding: 90px 0; }

.divider {
  width: 60px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1rem 0 2rem;
}
.divider.center { margin: 1rem auto 2rem; }

/* ============================================================
   5. ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.5; }
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  padding: 0.65rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.navbar-brand img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.navbar-brand span {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.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%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--highlight);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity 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 {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--accent-dim); color: var(--cream); }

/* ============================================================
   7. PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  padding-bottom: 3rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,15,30,0.45) 0%,
    rgba(26,15,30,0.75) 100%
  );
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--cream); margin-bottom: 0.4rem; }
.page-hero p { color: var(--cream-dim); font-size: 1.05rem; }
.page-hero-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--cream-dim);
}
.page-hero-breadcrumb a { color: var(--accent); }
.page-hero-breadcrumb svg { width: 12px; height: 12px; opacity: 0.6; }

/* ============================================================
   8. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  object-fit: cover;
}
.footer-brand .brand-name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.footer-contact-item span {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.footer-contact-item a {
  color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--cream-dim);
}
.footer-bottom .badge {
  font-size: 0.75rem;
  color: var(--cream-dim);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}

/* ============================================================
   9. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 49, 122, 0.4);
}
.btn-primary:hover {
  background: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 49, 122, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

/* ============================================================
   10. HOME — HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,15,30,0.88) 0%,
    rgba(26,15,30,0.70) 50%,
    rgba(26,15,30,0.40) 100%
  );
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-tag svg { width: 14px; height: 14px; }
.hero h1 { margin-bottom: 1rem; color: var(--cream); }
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-bio {
  font-size: 1.05rem;
  color: var(--cream-dim);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-social-proof {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-sp-item {
  display: flex;
  flex-direction: column;
}
.hero-sp-item strong {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
}
.hero-sp-item span {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream-dim);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* ============================================================
   11. HOME — FEATURES STRIP
   ============================================================ */
.features {
  padding: 70px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--accent-dim);
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h4 {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 700;
}
.feature-card p {
  font-size: 0.8rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ============================================================
   12. HOME — PRODUCTS GRID
   ============================================================ */
.products-grid-section { background: var(--dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover img { transform: scale(1.07); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,30,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-label {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}
.product-card-overlay h4 { color: var(--cream); font-size: 1rem; }
.product-card-overlay p { color: var(--cream-dim); font-size: 0.8rem; margin-top: 0.3rem; }

/* ============================================================
   13. HOME — BRAND TEASER
   ============================================================ */
.brand-teaser {
  background: var(--bg-alt);
  padding: 90px 0;
}
.brand-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.brand-teaser-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.brand-teaser-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.brand-teaser-img-badge {
  position: absolute;
  bottom: 1.5rem; right: -1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
  box-shadow: var(--shadow);
  line-height: 1.4;
}
.brand-teaser-content .section-label { margin-bottom: 0.5rem; }
.brand-teaser-content h2 { margin-bottom: 1rem; }
.brand-teaser-content p {
  color: var(--cream-dim);
  margin-bottom: 1rem;
}
.brand-teaser-content .btn { margin-top: 1rem; }

/* ============================================================
   14. HOME — STATS ROW
   ============================================================ */
.stats-row {
  background: var(--dark);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item span {
  font-size: 0.875rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ============================================================
   15. HOME — REVIEW CARDS
   ============================================================ */
.reviews { background: var(--bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), border-color var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--accent);
}
.review-stars svg { width: 18px; height: 18px; }
.review-card blockquote {
  font-size: 0.925rem;
  color: var(--cream-dim);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}
.review-author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cream);
}
.review-author-info span {
  font-size: 0.775rem;
  color: var(--cream-dim);
}

/* ============================================================
   16. HOME — SOCIAL CTA
   ============================================================ */
.social-cta {
  background: var(--dark);
  padding: 90px 0;
  text-align: center;
}
.social-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }

.btn-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.btn-ig:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-fb {
  background: #1877F2;
  color: #fff;
}
.btn-fb:hover { background: #0c5fc8; transform: translateY(-2px); }

.btn-shopee {
  background: #EE4D2D;
  color: #fff;
}
.btn-shopee:hover { background: #c63d22; transform: translateY(-2px); }

/* ============================================================
   17. HOME — SOCIAL FEED
   ============================================================ */
.social-feed { background: var(--bg-alt); }
.social-feed-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.feed-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}
.feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 49, 122, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; color: #fff; }

/* ============================================================
   18. ABOUT PAGE
   ============================================================ */
.origin-section { background: var(--dark); }
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.origin-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.origin-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.origin-content p { color: var(--cream-dim); margin-bottom: 1rem; }
.origin-content h2 { margin-bottom: 1rem; }

.philosophy-section { background: var(--bg-alt); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.philosophy-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.philosophy-card .ph-icon {
  width: 60px; height: 60px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.philosophy-card .ph-icon svg { width: 28px; height: 28px; }
.philosophy-card h3 { margin-bottom: 0.75rem; color: var(--cream); }
.philosophy-card p { font-size: 0.9rem; color: var(--cream-dim); }

.values-section { background: var(--dark); }
.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 3rem auto 0;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  transition: border-color var(--transition);
}
.value-item:hover { border-color: var(--accent); }
.value-number {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.value-item h4 { color: var(--accent); margin-bottom: 0.4rem; }
.value-item p { font-size: 0.9rem; color: var(--cream-dim); }

.timeline-section { background: var(--bg-alt); }
.timeline {
  position: relative;
  max-width: 700px;
  margin: 3rem auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.timeline-dot::before {
  content: '';
  width: 14px; height: 14px;
  background: var(--accent);
  border: 3px solid var(--dark);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.timeline-year {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.timeline-body h4 { color: var(--cream); margin-bottom: 0.3rem; }
.timeline-body p { font-size: 0.875rem; color: var(--cream-dim); }

.about-cta-split {
  background: var(--dark);
  padding: 90px 0;
}
.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-cta-content h2 { margin-bottom: 1rem; }
.about-cta-content p { color: var(--cream-dim); margin-bottom: 2rem; }
.about-cta-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-cta-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================================
   19. PRODUCTS PAGE
   ============================================================ */
.disclaimer-bar {
  background: var(--accent-dim);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  text-align: center;
}
.disclaimer-bar p {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.category-tiles-section { background: var(--bg-alt); padding: 50px 0; }
.category-tiles {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cat-tile {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cream-dim);
  background: var(--dark);
  transition: all var(--transition);
  cursor: pointer;
}
.cat-tile:hover,
.cat-tile.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.cat-tile svg { width: 16px; height: 16px; }

.product-cat-section { padding: 70px 0; }
.product-cat-section:nth-child(even) { background: var(--bg-alt); }
.product-cat-section:nth-child(odd) { background: var(--dark); }
.product-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.product-cat-header svg {
  width: 28px; height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}
.product-cat-header h2 { margin-bottom: 0; }

.product-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--accent-dim);
  transition: border-color var(--transition), transform var(--transition);
}
.product-list-item:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.product-list-item h4 {
  color: var(--cream);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}
.product-list-item p {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.variant-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.product-bottom-cta {
  background: var(--accent);
  padding: 70px 0;
  text-align: center;
}
.product-bottom-cta h2 { color: #fff; margin-bottom: 0.75rem; }
.product-bottom-cta p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* ============================================================
   20. GALLERY PAGE
   ============================================================ */
.filter-bar {
  background: var(--bg-alt);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 100;
}
.filter-bar .container {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cream-dim);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-section { background: var(--dark); padding: 60px 0 90px; }
.gallery-group { margin-bottom: 4rem; }
.gallery-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.masonry {
  columns: 4;
  column-gap: 0.75rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 49, 122, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { width: 32px; height: 32px; color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26,15,30,0.97);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--highlight); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  transition: background var(--transition);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--accent); color: #fff; }
.lightbox-prev svg,
.lightbox-next svg { width: 20px; height: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--cream-dim);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.gallery-cta { background: var(--bg-alt); padding: 70px 0; text-align: center; }
.gallery-cta h2 { margin-bottom: 0.75rem; }
.gallery-cta p { color: var(--cream-dim); margin-bottom: 2rem; }

/* ============================================================
   21. CONTACT PAGE
   ============================================================ */
.contact-blocks { background: var(--dark); padding: 70px 0; }
.contact-blocks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.contact-block:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.contact-block-icon {
  width: 60px; height: 60px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.contact-block-icon svg { width: 26px; height: 26px; }
.contact-block h4 { color: var(--cream); margin-bottom: 0.5rem; }
.contact-block p { font-size: 0.875rem; color: var(--cream-dim); margin-bottom: 1rem; }
.contact-block a {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}
.contact-block a:hover { color: var(--cream); }

.inquiry-form-section { background: var(--bg-alt); padding: 90px 0; }
.inquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.inquiry-info h2 { margin-bottom: 1rem; }
.inquiry-info p { color: var(--cream-dim); margin-bottom: 1.5rem; }
.inquiry-info-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.inquiry-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--cream-dim);
}
.inquiry-info-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.inquiry-form {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--cream-dim);
  opacity: 0.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--bg-alt); }
.form-group textarea { min-height: 120px; resize: vertical; }

#formSuccess {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 200, 100, 0.12);
  border: 1px solid rgba(0, 200, 100, 0.3);
  border-radius: var(--radius-sm);
  color: #4caf82;
  font-size: 0.9rem;
  font-weight: 600;
}

.map-section { background: var(--dark); padding: 70px 0; }
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); opacity: 0.5; }
.map-placeholder p { font-size: 0.9rem; color: var(--cream-dim); }

.faq-section { background: var(--bg-alt); padding: 90px 0; }
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--cream);
  font-size: 0.95rem;
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--accent); transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--accent); }
.faq-item.open .faq-icon svg { color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 0.75rem; }
.faq-answer p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; }

/* ============================================================
   22. SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 49, 122, 0.45);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 500;
  border: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--highlight); }
.scroll-top svg { width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .brand-teaser-img-badge { right: 0; }
  .inquiry-form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .masonry { columns: 3; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero .container { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .origin-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .about-cta-grid { grid-template-columns: 1fr; }
  .contact-blocks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .social-cta-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .page-hero { height: 280px; }
}
