/*
 * enigma Beauty — styles.css
 * ============================================================
 * Design rationale:
 *   Brand: "Where beauty meets a little mystery." — lipstick brand
 *   founded by Raiza Contawi, Quezon City, Philippines.
 *   Flagship: LIPLORE Fixing Matte Lipstick (12 shades).
 *   Palette is anchored in the logo's deep carmine-crimson field
 *   and the product's dramatic dark editorial aesthetics.
 *
 *   --dark       #0D0C0B   Near-black (almost organic, not cold)
 *   --bg-alt     #1A1210   Slightly warmer dark alt, like dried blood
 *   --accent     #B01E1A   Deep carmine-crimson — exact logo hue
 *   --highlight  #E8C4A8   Warm nude / champagne — skin undertone
 *   --cream      #F5EFE8   Parchment cream, lipstick swatch paper
 *   --cream-dim  #EAE1D6   Slightly darker cream for borders/alt bg
 *   --accent-dim rgba(176,30,26,.14)  Transparent crimson fill
 *   --border     rgba(176,30,26,.22)  Crimson border tint
 *   --ff-display "IM Fell English", Georgia, serif
 *   --ff-body    "Barlow", "Helvetica Neue", sans-serif
 *
 *   Fonts: IM Fell English (display — dramatic editorial serif with
 *          natural quill-pen contrast; first use in this portfolio)
 *          + Barlow (body — clean humanist grotesque; new pairing)
 *
 * Sections:
 *   1. Reset & Custom Properties
 *   2. Typography
 *   3. Utility Classes
 *   4. Navbar
 *   5. Hero
 *   6. Page Hero
 *   7. Features Strip
 *   8. Offerings Grid
 *   9. Brand Teaser / Story Split
 *  10. Stats Row
 *  11. Reviews
 *  12. Social CTA
 *  13. Social Feed
 *  14. About Sections
 *  15. Products Page
 *  16. Gallery
 *  17. Lightbox
 *  18. Contact Page
 *  19. FAQ Accordion
 *  20. Inquiry Form
 *  21. Footer
 *  22. Scroll-to-top & Misc
 * ============================================================
 */

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

:root {
  --dark:         #0D0C0B;
  --bg-alt:       #1A1210;
  --accent:       #B01E1A;
  --highlight:    #E8C4A8;
  --cream:        #F5EFE8;
  --cream-dim:    #EAE1D6;
  --accent-dim:   rgba(176,30,26,.14);
  --border:       rgba(176,30,26,.22);
  --page-hero-bg: #140F0E;
  --ff-display:   "IM Fell English", Georgia, serif;
  --ff-body:      "Barlow", "Helvetica Neue", Arial, sans-serif;
  --nav-h:        72px;
  --section-gap:  96px;
  --radius:       4px;
  --shadow:       0 8px 32px rgba(0,0,0,.45);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

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

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&family=Barlow:wght@300;400;500;600&display=swap');

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.15rem; }
h5 { font-family: var(--ff-body); font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }

p { color: rgba(245,239,232,.8); }
.text-accent { color: var(--accent); }
.text-highlight { color: var(--highlight); }

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-gap) 0; }
.section--alt { background: var(--bg-alt); }
.section--cream { background: var(--cream-dim); color: var(--dark); }
.section--cream p { color: rgba(13,12,11,.75); }
.section--cream h2, .section--cream h3, .section--cream h4 { color: var(--dark); }

.label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .22s, color .22s, border-color .22s, transform .18s;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  border: 2px solid var(--accent);
}
.btn-primary:hover { background: #8e1512; border-color: #8e1512; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245,239,232,.35);
}
.btn-outline:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn-dark {
  background: var(--dark);
  color: var(--cream);
  border: 2px solid var(--dark);
}
.btn-dark:hover { background: var(--bg-alt); border-color: var(--bg-alt); transform: translateY(-2px); }

.tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--highlight);
}

/* Visually hidden (accessible text) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(13,12,11,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.55);
}
.navbar__inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.navbar__name {
  font-family: var(--ff-display);
  font-size: 1.18rem;
  letter-spacing: .02em;
  color: var(--cream);
  line-height: 1;
  font-style: italic;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__nav a {
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,239,232,.75);
  transition: color .2s;
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .22s;
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--cream); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 100%; }
.navbar__cta { flex-shrink: 0; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform .28s, opacity .28s;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,12,11,.98);
    padding: 32px 24px 40px;
    gap: 20px;
    align-items: flex-start;
    z-index: 899;
  }
  .navbar__nav.open + .navbar__cta {
    display: block;
    padding: 0 24px 32px;
    position: fixed;
    top: calc(var(--nav-h) + 200px);
    left: 0; right: 0;
    z-index: 899;
    background: rgba(13,12,11,.98);
  }
}

/* ============================================================
   5. HERO
   ============================================================ */
.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 30%;
  background-repeat: no-repeat;
  filter: brightness(.45);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.08); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,12,11,.75) 0%,
    rgba(176,30,26,.12) 50%,
    rgba(13,12,11,.9) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
  margin-left: clamp(24px, 8vw, 120px);
  padding-top: var(--nav-h);
}
.hero__tagline {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
}
.hero__h1 { color: var(--cream); margin-bottom: 18px; }
.hero__sub {
  font-size: 1.05rem;
  color: rgba(245,239,232,.82);
  margin-bottom: 10px;
  max-width: 540px;
}
.hero__bio {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--highlight);
  margin-bottom: 36px;
  letter-spacing: .01em;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,239,232,.45);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,239,232,.45), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ============================================================
   6. PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--page-hero-bg);
  padding: calc(var(--nav-h) + 72px) 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,30,26,.18), transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--cream); position: relative; z-index: 1; }
.page-hero p {
  color: rgba(245,239,232,.65);
  max-width: 520px;
  margin: 16px auto 0;
  position: relative; z-index: 1;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,239,232,.4);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero .breadcrumb span { color: var(--highlight); }

/* ============================================================
   7. FEATURES STRIP
   ============================================================ */
.features {
  padding: 72px 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: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-item__icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-item__title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.feature-item__desc {
  font-size: .82rem;
  color: rgba(245,239,232,.6);
  line-height: 1.55;
}

/* ============================================================
   8. OFFERINGS GRID
   ============================================================ */
.offerings-grid { padding: var(--section-gap) 0; }
.offerings-grid__header { text-align: center; margin-bottom: 56px; }
.offerings-grid__header h2 { margin-bottom: 14px; }
.offerings-grid__header p { max-width: 540px; margin: 0 auto; }

.offerings-grid__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.offering-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
}
.offering-tile__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.8);
}
.offering-tile:hover .offering-tile__img {
  transform: scale(1.06);
  filter: brightness(.6);
}
.offering-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,12,11,.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background .35s;
}
.offering-tile:hover .offering-tile__overlay {
  background: linear-gradient(to top, rgba(13,12,11,.97) 0%, rgba(176,30,26,.25) 100%);
}
.offering-tile__shade {
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 6px;
}
.offering-tile__name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.offering-tile__desc {
  font-size: .78rem;
  color: rgba(245,239,232,.65);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.offering-tile:hover .offering-tile__desc { max-height: 80px; }

/* ============================================================
   9. BRAND TEASER / STORY SPLIT
   ============================================================ */
.brand-teaser {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}
.brand-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-teaser__img-wrap {
  position: relative;
}
.brand-teaser__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.brand-teaser__accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}
.brand-teaser__content h2 { margin-bottom: 18px; }
.brand-teaser__content p { margin-bottom: 16px; }
.brand-teaser__content .btn { margin-top: 12px; }

/* ============================================================
   10. STATS ROW
   ============================================================ */
.stats-row {
  padding: 72px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,232,.5);
}

/* ============================================================
   11. REVIEWS
   ============================================================ */
.reviews { padding: var(--section-gap) 0; }
.reviews__header { text-align: center; margin-bottom: 52px; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 24px;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .4;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-card__stars svg { width: 16px; height: 16px; color: var(--highlight); }
.review-card__text {
  font-size: .9rem;
  color: rgba(245,239,232,.8);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__author {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--highlight);
}
.review-card__platform {
  font-size: .7rem;
  color: rgba(245,239,232,.4);
  margin-top: 2px;
}

/* ============================================================
   12. SOCIAL CTA
   ============================================================ */
.social-cta {
  padding: var(--section-gap) 0;
  background: var(--accent);
  text-align: center;
}
.social-cta h2 { color: var(--cream); margin-bottom: 12px; }
.social-cta p { color: rgba(245,239,232,.85); max-width: 520px; margin: 0 auto 36px; }
.social-cta__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s, background .2s;
}
.social-link--wa { background: #25D366; color: #fff; }
.social-link--wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.social-link--ig { background: rgba(255,255,255,.15); color: var(--cream); border: 1px solid rgba(255,255,255,.3); }
.social-link--ig:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.social-link--fb { background: #1877F2; color: #fff; }
.social-link--fb:hover { background: #1568d3; transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   13. SOCIAL FEED
   ============================================================ */
.social-feed { padding: var(--section-gap) 0; background: var(--bg-alt); }
.social-feed__header { text-align: center; margin-bottom: 40px; }
.social-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin-bottom: 32px;
}
.feed-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--dark);
}
.feed-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(.9);
}
.feed-item:hover .feed-item__img { transform: scale(1.08); filter: brightness(.6); }
.feed-item__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.feed-item__hover svg { width: 28px; height: 28px; color: var(--cream); }
.feed-item:hover .feed-item__hover { opacity: 1; }
.social-feed__cta { text-align: center; }

/* ============================================================
   14. ABOUT SECTIONS
   ============================================================ */
.origin-split {
  padding: var(--section-gap) 0;
}
.origin-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.origin-split__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}
.origin-split__text h2 { margin-bottom: 28px; }
.origin-split__text p { margin-bottom: 20px; }

.philosophy-cards {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}
.philosophy-cards__header { text-align: center; margin-bottom: 52px; }
.philosophy-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}
.philosophy-card__icon {
  width: 56px; height: 56px;
  color: var(--accent);
  margin: 0 auto 20px;
}
.philosophy-card h3 { margin-bottom: 12px; }

.values-list { padding: var(--section-gap) 0; }
.values-list__inner { max-width: 760px; margin: 0 auto; }
.values-list__header { text-align: center; margin-bottom: 52px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-item__num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--accent);
  opacity: .45;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: right;
}
.value-item__body h4 { color: var(--cream); margin-bottom: 8px; }
.value-item__body p { font-size: .9rem; }

.timeline { padding: var(--section-gap) 0; background: var(--bg-alt); }
.timeline__header { text-align: center; margin-bottom: 52px; }
.timeline__track {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.timeline__track::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  padding: 0 0 40px 40px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline-item__year {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.timeline-item h4 { color: var(--cream); margin-bottom: 8px; }
.timeline-item p { font-size: .88rem; }

.about-cta {
  padding: var(--section-gap) 0;
  background: var(--dark);
}
.about-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-cta__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-cta__text h2 { margin-bottom: 18px; }
.about-cta__text p { margin-bottom: 24px; }
.about-cta__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   15. PRODUCTS PAGE
   ============================================================ */
.disclaimer-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  text-align: center;
}
.disclaimer-bar p {
  font-size: .78rem;
  color: rgba(245,239,232,.55);
  font-weight: 500;
}
.disclaimer-bar strong { color: var(--highlight); font-weight: 600; }

.category-tiles {
  padding: 72px 0 48px;
  background: var(--dark);
}
.category-tiles__header { text-align: center; margin-bottom: 40px; }
.category-tiles__grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cat-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,239,232,.7);
  background: none;
  transition: background .22s, color .22s, border-color .22s;
}
.cat-tile:hover, .cat-tile.active {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}
.cat-tile svg { width: 18px; height: 18px; flex-shrink: 0; }

.product-category { padding: 64px 0; }
.product-category + .product-category {
  border-top: 1px solid var(--border);
}
.product-category__header { margin-bottom: 40px; }
.product-category__header h2 { margin-bottom: 10px; }
.product-category__header p { max-width: 580px; }

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: border-color .2s;
}
.product-item:hover { border-color: var(--accent); }
.product-item__name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.product-item__desc {
  font-size: .87rem;
  color: rgba(245,239,232,.7);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-item__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-item__variant {
  display: inline-block;
  padding: 3px 12px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--highlight);
}
.products-bottom-cta {
  padding: var(--section-gap) 0;
  text-align: center;
  background: var(--bg-alt);
}
.products-bottom-cta h2 { margin-bottom: 14px; }
.products-bottom-cta p { max-width: 480px; margin: 0 auto 32px; }
.products-bottom-cta__btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   16. GALLERY
   ============================================================ */
.gallery-section { padding: var(--section-gap) 0; }
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: none;
  color: rgba(245,239,232,.65);
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .22s, color .22s, border-color .22s;
}
.filter-btn:hover { border-color: rgba(245,239,232,.5); color: var(--cream); }
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}

.masonry {
  columns: 4;
  column-gap: 8px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(.9);
}
.masonry-item:hover img { transform: scale(1.04); filter: brightness(.65); }
.masonry-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(176,30,26,.15);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.masonry-item__overlay svg { width: 32px; height: 32px; color: var(--cream); }
.masonry-item:hover .masonry-item__overlay { opacity: 1; }

.gallery-cta {
  padding: var(--section-gap) 0;
  text-align: center;
  background: var(--bg-alt);
}
.gallery-cta h2 { margin-bottom: 14px; }
.gallery-cta p { max-width: 480px; margin: 0 auto 32px; }
.gallery-cta__btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   17. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox__img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: fixed;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  padding: 8px;
  opacity: .7;
  transition: opacity .2s;
  z-index: 10000;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(176,30,26,.5);
  border: none;
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox__nav:hover { background: var(--accent); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__counter {
  margin-top: 16px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,239,232,.5);
}

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-blocks { padding: var(--section-gap) 0; }
.contact-blocks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.contact-block__icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin: 0 auto 20px;
}
.contact-block h3 { color: var(--cream); margin-bottom: 10px; font-size: 1.1rem; }
.contact-block p { font-size: .88rem; margin-bottom: 16px; }
.contact-block a { color: var(--highlight); transition: color .2s; }
.contact-block a:hover { color: var(--accent); }
.contact-block .btn { margin: 0 auto; display: inline-flex; }

.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(245,239,232,.4);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); opacity: .4; }

/* ============================================================
   19. FAQ ACCORDION
   ============================================================ */
.faq-section { padding: var(--section-gap) 0; background: var(--bg-alt); }
.faq-section__header { text-align: center; margin-bottom: 52px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: .92rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: .02em;
  cursor: pointer;
  transition: color .2s;
}
.faq-btn:hover { color: var(--highlight); }
.faq-btn__icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--accent);
  transition: transform .28s;
}
.faq-item.open .faq-btn__icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: .88rem; color: rgba(245,239,232,.7); line-height: 1.65; }

/* ============================================================
   20. INQUIRY FORM
   ============================================================ */
.inquiry-form-section { padding: var(--section-gap) 0; }
.inquiry-form-section__inner {
  max-width: 680px;
  margin: 0 auto;
}
.inquiry-form-section__header { text-align: center; margin-bottom: 40px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,239,232,.6);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: .9rem;
  transition: border-color .2s;
  -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-group select option { background: var(--dark); }
.form-submit { text-align: center; margin-top: 8px; }
.form-submit .btn { min-width: 200px; justify-content: center; }
.form-error {
  font-size: .78rem;
  color: #e87070;
  margin-top: 4px;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #e87070; }
.form-group.has-error .form-error { display: block; }
#formSuccess {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
#formSuccess svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 16px; }
#formSuccess h3 { margin-bottom: 10px; }

/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
}
.footer__tagline { font-size: .88rem; color: rgba(245,239,232,.55); line-height: 1.6; }
.footer__socials { display: flex; gap: 12px; }
.footer__social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(245,239,232,.07);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,239,232,.6);
  transition: background .2s, color .2s;
}
.footer__social-icon:hover { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.footer__social-icon svg { width: 17px; height: 17px; }

.footer__col h5 {
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: .2em;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a {
  font-size: .87rem;
  color: rgba(245,239,232,.55);
  transition: color .2s;
}
.footer__col li a:hover { color: var(--highlight); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: rgba(245,239,232,.55);
}
.footer__contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item a { color: rgba(245,239,232,.55); transition: color .2s; }
.footer__contact-item a:hover { color: var(--highlight); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: .76rem;
  color: rgba(245,239,232,.35);
  margin: 0;
}

/* ============================================================
   22. SCROLL-TO-TOP & MISC
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 800;
  font-size: 1rem;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-4px); }

/* Responsive */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
  .feature-item:nth-child(4) { border-top: 1px solid var(--border); }
  .feature-item:nth-child(5) { border-top: 1px solid var(--border); }
  .offerings-grid__tiles { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser__inner { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-row__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .masonry { columns: 3; }
  .social-feed__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-blocks__grid { grid-template-columns: 1fr 1fr; }
  .product-list { grid-template-columns: 1fr; }
  .about-cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-cta__img { max-height: 400px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .hero__content { margin-left: 0; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .offerings-grid__tiles { grid-template-columns: 1fr; }
  .brand-teaser__inner { grid-template-columns: 1fr; gap: 40px; }
  .origin-split__inner { grid-template-columns: 1fr; gap: 40px; }
  .origin-split__img { position: static; max-height: 380px; }
  .philosophy-cards__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-row__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-blocks__grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .social-feed__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  :root { --section-gap: 48px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .masonry { columns: 2; }
  .social-feed__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row__grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .social-cta__links { flex-direction: column; align-items: stretch; }
  .hero__bio { font-size: .95rem; }
}
