/*
  Design rationale: Warm terracotta and ink-dark espresso echo handmade paper goods and the earthy, personal feel of a Philippine stationery and custom-print shop.
  Heading: Playfair Display — elegant serif with beautiful letterforms native to high-quality stationery and print collateral.
  Body: Plus Jakarta Sans — modern, clean, exceptionally readable at small sizes; contrasts well with the expressive display font.
*/

/* ─────────────────────────────────────────────────────────────────────────────
   1. Reset & Custom Properties
   ───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --dark:        #120a07;
  --bg-alt:      #1c1009;
  --accent:      #c96a42;
  --highlight:   #e8a870;
  --cream:       #fdf5ee;
  --cream-dim:   rgba(253, 245, 238, 0.65);
  --accent-dim:  rgba(201, 106, 66, 0.14);
  --border:      rgba(201, 106, 66, 0.22);
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. Typography
   ───────────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--cream-dim); }
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. Buttons
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--cream); }
.btn-ghost   { background: transparent; color: var(--cream); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--cream); }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────────────────────
   4. Navbar
   ───────────────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}
.navbar.scrolled {
  background: var(--dark);
  padding: 0.75rem 5%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
}
.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 1.5rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.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;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--accent); }

/* ─────────────────────────────────────────────────────────────────────────────
   5. Hero
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/product-events-01.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,10,7,0.55) 0%, rgba(18,10,7,0.72) 60%, rgba(18,10,7,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 1.5rem;
}
.hero-content .label { margin-bottom: 1.2rem; }
.hero-content h1 { color: var(--cream); margin-bottom: 1rem; }
.hero-content .subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--cream-dim);
  margin-bottom: 2.2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.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.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. Features Strip
   ───────────────────────────────────────────────────────────────────────────── */
.features-strip {
  background: var(--accent);
  padding: 3rem 5%;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}
.feature-item svg {
  width: 32px;
  height: 32px;
  color: var(--cream);
  margin: 0 auto 0.75rem;
}
.feature-item h4 { color: var(--cream); font-size: 0.95rem; margin-bottom: 0.3rem; }
.feature-item p  { color: rgba(253,245,238,0.8); font-size: 0.8rem; line-height: 1.45; }

/* ─────────────────────────────────────────────────────────────────────────────
   7. Offerings Grid (homepage 3×3)
   ───────────────────────────────────────────────────────────────────────────── */
.section { padding: 5rem 5%; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 560px; margin: 0 auto; }

.offerings-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.offering-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.offering-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-tile:hover img { transform: scale(1.06); }
.offering-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,10,7,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.offering-tile:hover .offering-tile-overlay { opacity: 1; }
.offering-tile-overlay .label { margin-bottom: 0.3rem; }
.offering-tile-overlay h4 { color: var(--cream); font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   8. Brand Teaser Split
   ───────────────────────────────────────────────────────────────────────────── */
.brand-teaser {
  background: var(--bg-alt);
  padding: 5rem 5%;
}
.brand-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brand-teaser-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.brand-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-teaser-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  pointer-events: none;
}
.brand-teaser-copy .section-tag { margin-bottom: 0.5rem; }
.brand-teaser-copy h2 { margin-bottom: 1.5rem; }
.brand-teaser-copy p { margin-bottom: 1rem; }
.brand-teaser-copy .btn { margin-top: 1.5rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   9. Stats Row
   ───────────────────────────────────────────────────────────────────────────── */
.stats-row {
  padding: 4rem 5%;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item .stat-label { font-size: 0.82rem; color: var(--cream-dim); }

/* ─────────────────────────────────────────────────────────────────────────────
   10. Review Cards
   ───────────────────────────────────────────────────────────────────────────── */
.reviews {
  background: var(--bg-alt);
  padding: 5rem 5%;
}
.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 16px; height: 16px; color: var(--highlight); }
.review-text { color: var(--cream-dim); font-size: 0.92rem; line-height: 1.65; font-style: italic; }
.review-author { font-weight: 600; font-size: 0.85rem; color: var(--cream); }
.review-location { color: var(--accent); font-size: 0.78rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   11. Social CTA
   ───────────────────────────────────────────────────────────────────────────── */
.social-cta {
  padding: 5rem 5%;
  text-align: center;
  background: var(--dark);
}
.social-cta h2 { margin-bottom: 0.75rem; }
.social-cta p  { max-width: 480px; margin: 0 auto 2.5rem; }
.platform-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  border: 1.5px solid var(--border);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}
.platform-btn:hover { opacity: 0.8; transform: translateY(-1px); }
.platform-btn svg { width: 18px; height: 18px; }
.platform-btn.whatsapp { background: #128c7e; border-color: #128c7e; }
.platform-btn.instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }
.platform-btn.facebook { background: #1877f2; border-color: #1877f2; }

/* ─────────────────────────────────────────────────────────────────────────────
   12. Social Feed Grid
   ───────────────────────────────────────────────────────────────────────────── */
.social-feed {
  padding: 0 0 5rem;
  background: var(--dark);
}
.feed-header {
  text-align: center;
  padding: 0 5% 2rem;
}
.feed-header a {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.feed-item:hover img { transform: scale(1.05); }
.feed-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 106, 66, 0.25);
  opacity: 0;
  transition: opacity 0.3s;
}
.feed-item:hover::after { opacity: 1; }

/* ─────────────────────────────────────────────────────────────────────────────
   13. Footer
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  padding: 4rem 5% 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
  border: 1.5px solid var(--border);
}
.footer-brand h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-brand p  { font-size: 0.85rem; 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: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 0.85rem; color: var(--cream); margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.83rem; color: var(--cream-dim); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.83rem;
  margin-bottom: 0.75rem;
}
.footer-contact svg { width: 14px; height: 14px; color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom span { font-size: 0.78rem; color: var(--cream-dim); }
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-badge {
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--cream-dim);
}

/* ─────────────────────────────────────────────────────────────────────────────
   14. Page Hero (inner pages)
   ───────────────────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background-image: var(--page-hero-bg, url('images/banner.jpg'));
  background-size: cover;
  background-position: center;
  margin-top: 0;
  padding-top: 80px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,10,7,0.5) 0%, rgba(18,10,7,0.8) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 5%;
  max-width: 800px;
}
.page-hero-content .section-tag { margin-bottom: 0.75rem; }
.page-hero-content h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero-content p { color: var(--cream-dim); font-size: 1.05rem; max-width: 520px; }

/* ─────────────────────────────────────────────────────────────────────────────
   15. About Page Sections
   ───────────────────────────────────────────────────────────────────────────── */
.about-origin {
  padding: 5rem 5%;
  background: var(--dark);
}
.about-origin-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-origin-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1.5px solid var(--border);
}
.about-origin-img img { width: 100%; height: 100%; object-fit: cover; }
.about-origin-copy h2 { margin-bottom: 1.5rem; }
.about-origin-copy p  { margin-bottom: 1.2rem; }

.philosophy-cards {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.philosophy-grid {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}
.philosophy-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 1rem;
}
.philosophy-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.philosophy-card p  { font-size: 0.88rem; }

.brand-values {
  padding: 5rem 5%;
  background: var(--dark);
}
.values-list {
  max-width: 860px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.value-item:first-child { border-top: 1px solid var(--border); }
.value-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.5;
}
.value-copy h4 { margin-bottom: 0.4rem; }
.value-copy p  { font-size: 0.88rem; }

.timeline-section {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.timeline {
  max-width: 760px;
  margin: 3rem auto 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: 100px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  border: 2px solid var(--dark);
}
.timeline-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  padding-top: 3px;
}
.timeline-content { padding-left: 1.5rem; }
.timeline-content h4 { margin-bottom: 0.4rem; }
.timeline-content p  { font-size: 0.88rem; }

.about-cta {
  padding: 5rem 5%;
  background: var(--dark);
}
.about-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-cta-img { border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; border: 1.5px solid var(--border); }
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-copy h2 { margin-bottom: 1.25rem; }
.about-cta-copy p  { margin-bottom: 1rem; }
.about-cta-copy .btn-row { display: flex; gap: 1rem; margin-top: 1.75rem; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────────────────────
   16. Products Page
   ───────────────────────────────────────────────────────────────────────────── */
.disclaimer-bar {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 5%;
  text-align: center;
  font-size: 0.85rem;
  color: var(--cream-dim);
}
.disclaimer-bar a { color: var(--accent); font-weight: 600; }

.category-tiles {
  padding: 4rem 5%;
  background: var(--dark);
}
.category-tiles h2 { text-align: center; margin-bottom: 2.5rem; }
.cat-tiles-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cat-tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,10,7,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.cat-tile-overlay h3 { color: var(--cream); margin-bottom: 0.3rem; }
.cat-tile-overlay .item-count { font-size: 0.78rem; color: var(--highlight); font-weight: 600; }

.products-sections {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.product-category-section {
  max-width: 860px;
  margin: 0 auto 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}
.product-category-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cat-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.cat-section-header h2 { font-size: 1.7rem; }
.cat-desc { color: var(--cream-dim); margin-bottom: 2.5rem; }
.product-list { display: flex; flex-direction: column; gap: 0; }
.product-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--accent-dim);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.product-item:last-child { border-bottom: none; }
.product-item-copy { flex: 1; }
.product-item-copy h4 { color: var(--cream); margin-bottom: 0.4rem; font-size: 1.05rem; }
.product-item-copy p  { font-size: 0.88rem; line-height: 1.6; }
.product-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.badge-signature { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-bestseller { background: rgba(232,168,112,0.15); color: var(--highlight); border: 1px solid rgba(232,168,112,0.3); }
.badge-new { background: rgba(100,200,120,0.15); color: #6dc87a; border: 1px solid rgba(100,200,120,0.3); }

.products-cta {
  padding: 4rem 5%;
  background: var(--dark);
  text-align: center;
  border-top: 1px solid var(--border);
}
.products-cta h3 { margin-bottom: 0.75rem; }
.products-cta p  { margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────────────────────────────────────
   17. Gallery Page
   ───────────────────────────────────────────────────────────────────────────── */
.gallery-filter {
  padding: 2rem 5%;
  background: var(--dark);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.filter-btn.active,
.filter-btn:hover { background: var(--accent); color: var(--cream); border-color: var(--accent); }

.gallery-section {
  padding: 3rem 5%;
  background: var(--bg-alt);
}
.gallery-section-header {
  margin-bottom: 1.5rem;
}
.gallery-section-header h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.gallery-section-header .gdate { font-size: 0.8rem; color: var(--accent); }
.masonry-grid {
  columns: 4;
  column-gap: 8px;
  margin-bottom: 3rem;
}
.masonry-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 8px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 3px;
  transition: opacity 0.2s;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s; }
.masonry-item:hover img { transform: scale(1.03); }
.masonry-item:hover { opacity: 0.9; }

/* Gallery filter hide */
.masonry-item[data-group].hidden { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(18,10,7,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 3px;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(18,10,7,0.7);
  border: 1px solid var(--border);
  color: var(--cream);
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--accent); border-color: var(--accent); }
.lb-close { top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; font-size: 1.4rem; }
.lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
.lb-prev svg, .lb-next svg { width: 20px; height: 20px; }
.lb-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--cream-dim);
  background: rgba(18,10,7,0.7);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.gallery-cta {
  padding: 4rem 5%;
  background: var(--dark);
  text-align: center;
  border-top: 1px solid var(--border);
}
.gallery-cta h3 { margin-bottom: 0.75rem; }
.gallery-cta p  { margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.gallery-cta .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────────────────────
   18. Contact Page
   ───────────────────────────────────────────────────────────────────────────── */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  padding: 5rem 5%;
}
.contact-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-block:last-child { border-bottom: none; }
.contact-block h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.contact-block svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.contact-block p, .contact-block a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.6;
  display: block;
}
.contact-block a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td {
  font-size: 0.84rem;
  padding: 0.45rem 0;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--accent-dim);
}
.hours-table td:first-child { font-weight: 600; color: var(--cream); width: 45%; }
.hours-table tr.peak td { color: var(--highlight); }
.hours-note { font-size: 0.78rem; color: var(--accent); margin-top: 0.5rem; font-style: italic; }

.contact-form { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px; padding: 2.5rem; }
.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form .form-note { font-size: 0.82rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--cream); letter-spacing: 0.04em; }
.form-group label .req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e05555; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#formSuccess {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
#formSuccess svg { width: 56px; height: 56px; color: #6dc87a; margin: 0 auto 1.25rem; }
#formSuccess h3 { margin-bottom: 0.75rem; }
#formSuccess p  { font-size: 0.9rem; }

.map-placeholder {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.map-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.map-box svg { width: 48px; height: 48px; color: var(--accent); }
.map-box h4 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.map-box p  { font-size: 0.88rem; max-width: 480px; }

/* ─────────────────────────────────────────────────────────────────────────────
   19. FAQ Accordion
   ───────────────────────────────────────────────────────────────────────────── */
.faq-section {
  padding: 5rem 5%;
  background: var(--dark);
}
.faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--accent);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

.contact-social-cta {
  padding: 4rem 5%;
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border);
}
.contact-social-cta h3 { margin-bottom: 0.75rem; }
.contact-social-cta p  { margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────────────────────────────────────
   20. Scroll-to-top
   ───────────────────────────────────────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop svg { width: 20px; height: 20px; }

/* ─────────────────────────────────────────────────────────────────────────────
   21. Fade-in Animation
   ───────────────────────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────────────────────────────────────
   22. Responsive
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-inner { grid-template-columns: repeat(3, 1fr); }
  .brand-teaser-inner { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .about-origin-inner,
  .about-cta-inner { gap: 3rem; }
  .contact-grid { gap: 2.5rem; }
  .masonry-grid { columns: 3; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .brand-teaser-inner,
  .about-origin-inner,
  .about-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .cat-tiles-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .timeline::before { left: 70px; }
  .timeline-item { grid-template-columns: 70px 1fr; }
  .timeline-item::after { left: 70px; }
  .about-cta-inner { gap: 2rem; }
}
@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-tiles-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .hero-btns { flex-direction: column; align-items: center; }
  .platform-btns { flex-direction: column; align-items: center; }
  .timeline::before { left: 60px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-item::after { left: 60px; }
}
