@import url('https://fonts.googleapis.com/css2?family=Gloock&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --dark: #2C2416;
  --accent: #F5C518;
  --highlight: #FFE066;
  --cream: #FFFDF5;
  --bg-alt: #FFF8E1;
  --text: #2C2416;
  --text-light: #8C7A5E;
  --white: #FFFFFF;
  --nav-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--text); background: var(--cream); line-height: 1.7; font-weight: 400; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Gloock', serif; font-weight: 400; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2.5rem; height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled { background: var(--dark); box-shadow: 0 2px 20px rgba(44,36,22,0.25); }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,224,102,0.5); }
.nav-logo-name { font-family: 'Gloock', serif; font-size: 1rem; color: var(--white); line-height: 1.2; }
.nav-logo-name span { display: block; font-family: 'Outfit', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--highlight); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,0.82); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--highlight); }
.nav-cta {
  background: var(--accent); color: var(--dark) !important;
  padding: 0.5rem 1.4rem; border-radius: 100px;
  font-size: 0.78rem !important; font-weight: 600 !important; letter-spacing: 0.04em !important;
  transition: background 0.25s, transform 0.2s !important;
}
.nav-cta:hover { background: #D4A800 !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); 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); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 0.8rem 2rem;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  cursor: pointer; border: none; transition: all 0.25s; border-radius: 100px;
}
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: #D4A800; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--highlight); color: var(--highlight); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #3D3120; }
.btn-pink-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-pink-outline:hover { background: var(--accent); color: var(--dark); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(44,36,22,0.55) 0%, rgba(245,197,24,0.15) 60%, rgba(44,36,22,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 2rem;
  max-width: 820px;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero.loaded .hero-content { opacity: 1; transform: translateY(0); }
.hero-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--highlight); margin-bottom: 1.2rem;
  padding: 0.3rem 1rem; border: 1px solid rgba(255,224,102,0.3); border-radius: 100px;
}
.hero h1 {
  font-family: 'Gloock', serif; font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white); line-height: 1.1; margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(44,36,22,0.5);
}
.hero h1 em { font-style: italic; color: var(--highlight); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.78); margin-bottom: 2.8rem; max-width: 500px; margin-left: auto; margin-right: auto; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FEATURES STRIP ===== */
.features-strip { background: var(--accent); padding: 2rem; }
.features-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; }
.feature-item { text-align: center; color: var(--dark); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.feature-icon { width: 36px; height: 36px; }
.feature-icon svg { width: 100%; height: 100%; }
.feature-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== SECTION COMMONS ===== */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; display: block; }
.section-dark .section-eyebrow { color: var(--highlight); }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); line-height: 1.2; }
.section-dark .section-header h2 { color: var(--white); }
.divider { width: 40px; height: 3px; background: var(--accent); border-radius: 2px; margin: 1rem auto 0; }
.section-header p { margin-top: 1rem; color: var(--text-light); max-width: 540px; margin-left: auto; margin-right: auto; font-weight: 300; }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

/* ===== OFFERINGS GRID ===== */
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.offering-tile {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: 16px; cursor: pointer; background: var(--dark); display: block;
}
.offering-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, opacity 0.45s ease; }
.offering-tile:hover img { transform: scale(1.07); opacity: 0.4; }
.offering-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s; padding: 1.5rem; text-align: center;
}
.offering-tile:hover .offering-overlay { opacity: 1; }
.offering-overlay .cat-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--highlight); margin-bottom: 0.4rem; font-weight: 600; }
.offering-overlay h3 { font-size: 1rem; color: var(--white); }
.view-all-wrap { text-align: center; margin-top: 2.5rem; }

/* ===== BRAND TEASER ===== */
.brand-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.brand-teaser-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 20px; }
.brand-teaser-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; color: var(--dark); line-height: 1.2; }
.brand-teaser-copy p { color: var(--text-light); margin-bottom: 1rem; font-weight: 300; }
.values-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.8rem 0 2rem; }
.value-icon-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.val-icon { width: 34px; height: 34px; flex-shrink: 0; background: var(--highlight); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.val-icon svg { width: 16px; height: 16px; stroke: var(--dark); fill: none; stroke-width: 1.8; }
.val-text strong { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; display: block; color: var(--dark); margin-bottom: 0.15rem; }
.val-text span { font-size: 0.78rem; color: var(--text-light); font-weight: 300; }

/* ===== STATS ROW ===== */
.stats-row { background: var(--dark); padding: 4rem 2rem; }
.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-family: 'Gloock', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--highlight); display: block; line-height: 1; }
.stat-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.5rem; display: block; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--white); padding: 2rem; border-radius: 16px; border-top: 3px solid var(--accent); }
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-card p { font-style: italic; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.75; font-size: 0.9rem; font-weight: 300; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-family: 'Gloock', serif; color: var(--dark); font-size: 0.9rem; flex-shrink: 0; }
.reviewer-name { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.reviewer-info { font-size: 0.7rem; color: var(--text-light); }

/* ===== CTA DARK SECTION ===== */
.cta-dark { background: var(--dark); text-align: center; padding: 5.5rem 2rem; }
.cta-dark h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.cta-dark p { color: rgba(255,255,255,0.65); margin-bottom: 2.8rem; max-width: 500px; margin-left: auto; margin-right: auto; font-weight: 300; }
.platform-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.platform-btn {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1.8rem; background: var(--accent); color: var(--dark);
  border-radius: 100px; font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s;
}
.platform-btn:hover { background: #D4A800; transform: translateY(-1px); }
.platform-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.platform-btn.ghost { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.platform-btn.ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }

/* ===== SOCIAL FEED ===== */
.social-feed-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; }
.social-feed-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; background: var(--dark); border-radius: 8px; }
.social-feed-item img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s, transform 0.5s; }
.social-feed-item:hover img { opacity: 0.72; transform: scale(1.05); }
.social-feed-caption { text-align: center; margin-top: 1.5rem; }
.social-feed-caption a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.social-feed-caption a:hover { color: #D4A800; }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 4.5rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-logo { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 2px solid rgba(255,224,102,0.3); }
.footer-tagline { font-size: 0.85rem; line-height: 1.75; margin-bottom: 1.2rem; font-weight: 300; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.badge { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.8rem; border: 1px solid var(--accent); color: var(--accent); border-radius: 100px; }
.social-links { display: flex; gap: 0.6rem; }
.social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.25s; }
.social-link:hover { background: var(--accent); }
.social-link svg { width: 17px; height: 17px; fill: var(--white); }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.83rem; font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--highlight); }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.9rem; font-size: 0.83rem; align-items: flex-start; font-weight: 300; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; stroke: var(--accent); fill: none; stroke-width: 1.5; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--highlight); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.75rem; font-weight: 300; }

/* ===== PAGE HERO ===== */
.page-hero { height: 52vh; min-height: 360px; background: var(--dark); display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; position: relative; overflow: hidden; margin-top: var(--nav-height); }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(44,36,22,0.3) 0%, rgba(44,36,22,0.72) 100%); }
.page-hero-content { position: relative; z-index: 2; opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.page-hero.loaded .page-hero-content { opacity: 1; transform: translateY(0); }
.page-hero-eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--highlight); display: block; margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.72); margin-top: 1rem; font-size: 0.95rem; max-width: 500px; margin-left: auto; margin-right: auto; font-weight: 300; }

/* ===== ABOUT SECTIONS ===== */
.origin-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.origin-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 20px; }
.origin-copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.5rem; line-height: 1.2; }
.origin-copy p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.93rem; font-weight: 300; }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pillar-card { text-align: center; padding: 2.5rem 1.5rem; background: var(--white); border-radius: 16px; border-bottom: 3px solid var(--accent); }
.pillar-icon { width: 48px; height: 48px; margin: 0 auto 1.2rem; background: var(--bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pillar-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.pillar-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.pillar-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.72; font-weight: 300; }

.values-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.values-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 20px; }
.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.v-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.v-icon svg { width: 18px; height: 18px; stroke: var(--dark); fill: none; stroke-width: 1.5; }
.v-text strong { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; display: block; margin-bottom: 0.25rem; color: var(--dark); }
.v-text span { font-size: 0.8rem; color: var(--text-light); font-weight: 300; }

/* Timeline */
.timeline { max-width: 680px; margin: 0 auto; position: relative; padding: 0 1rem; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); top: 0; bottom: 0; width: 2px; background: rgba(245,197,24,0.2); }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; position: relative; }
.timeline-year { font-family: 'Gloock', serif; color: var(--accent); font-size: 1.1rem; text-align: right; padding-right: 2.5rem; line-height: 1; padding-top: 2px; }
.timeline-body { padding-left: 2.5rem; }
.timeline-body h4 { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--dark); }
.timeline-body p { font-size: 0.82rem; color: var(--text-light); font-weight: 300; }
.timeline-dot { position: absolute; left: 50%; top: 4px; transform: translateX(-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }

/* ===== PRODUCTS PAGE ===== */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.filter-tab { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; padding: 0.55rem 1.4rem; border-radius: 100px; cursor: pointer; border: 1.5px solid var(--accent); color: var(--accent); background: transparent; transition: all 0.25s; }
.filter-tab.active, .filter-tab:hover { background: var(--accent); color: var(--dark); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card { background: var(--white); border-radius: 16px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.product-card:hover { box-shadow: 0 12px 40px rgba(245,197,24,0.15); transform: translateY(-3px); }
.card-img { aspect-ratio: 1; overflow: hidden; background: var(--bg-alt); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.4rem; }
.card-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; display: block; }
.card-body h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.card-body p { font-size: 0.83rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.65; font-weight: 300; }
.variant-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem; align-items: center; }
.variant-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid transparent; }
.v-pink { background: #FFE066; border-color: #F5C518; }
.v-rose { background: #F5C518; border-color: #C9A200; }
.v-berry { background: #A0204E; border-color: #7A1A40; }
.v-peach { background: #F4A878; border-color: #E08840; }
.v-brown { background: #8B5A3C; border-color: #6B3F25; }
.v-nude { background: #D4A898; border-color: #B88878; }
.v-mauve { background: #8B6080; border-color: #6B4060; }
.v-clear { background: rgba(200,200,200,0.3); border-color: #ddd; }
.variant-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.04em; padding: 0.22rem 0.65rem; border: 1px solid var(--bg-alt); border-radius: 100px; color: var(--text-light); background: var(--bg-alt); }
.card-cta { display: block; width: 100%; padding: 0.65rem; text-align: center; font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; background: transparent; border: 1.5px solid var(--accent); color: var(--accent); cursor: pointer; transition: all 0.25s; border-radius: 100px; }
.card-cta:hover { background: var(--accent); color: var(--dark); }

/* ===== GALLERY ===== */
.gallery-masonry { columns: 4; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; cursor: pointer; overflow: hidden; border-radius: 12px; }
.gallery-item img { width: 100%; height: auto; object-fit: cover; transition: transform 0.5s, opacity 0.3s; display: block; }
.gallery-item:hover img { transform: scale(1.04); opacity: 0.85; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(30,24,14,0.97); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 86vh; object-fit: contain; width: auto; height: auto; border-radius: 12px; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none; padding: 0.5rem; line-height: 1; opacity: 0.8; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lb-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 1.4rem; cursor: pointer; background: rgba(255,255,255,0.08); border: none; padding: 1rem 1.2rem; transition: background 0.2s; border-radius: 8px; }
.lb-nav-btn:hover { background: var(--accent); }
#lbPrev { left: 1rem; }
#lbNext { right: 1rem; }
.lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 0.1em; font-weight: 300; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.8rem; }
.contact-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 22px; height: 22px; stroke: var(--dark); fill: none; stroke-width: 1.5; }
.contact-detail-text h4 { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; color: var(--dark); }
.contact-detail-text p, .contact-detail-text a { font-size: 0.9rem; color: var(--text-light); font-weight: 300; }
.contact-detail-text a:hover { color: var(--accent); }
.contact-social-row { margin-top: 2.5rem; }
.contact-social-row h4 { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; color: var(--dark); }
.contact-social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.contact-social-link { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1.2rem; border-radius: 100px; background: var(--accent); color: var(--dark); font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600; transition: background 0.25s, transform 0.2s; }
.contact-social-link:hover { background: #D4A800; transform: translateY(-1px); }
.contact-social-link svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.contact-social-link.fb { background: #1877F2; }
.contact-social-link.fb:hover { background: #1260CC; }
.contact-social-link.tt { background: #000000; }
.contact-social-link.tt:hover { background: #333; }

/* Form */
.form-wrapper { background: var(--white); padding: 2.5rem; border-radius: 20px; box-shadow: 0 4px 30px rgba(245,197,24,0.08); }
.form-wrapper h3 { font-size: 1.2rem; margin-bottom: 1.8rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.form-group input, .form-group select, .form-group textarea { padding: 0.75rem 1rem; border: 1.5px solid rgba(245,197,24,0.2); border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 0.9rem; background: var(--cream); color: var(--text); transition: border-color 0.25s; width: 100%; font-weight: 400; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 130px; resize: vertical; }
#formSuccess { display: none; text-align: center; padding: 3rem 1rem; }
#formSuccess .success-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--accent); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
#formSuccess .success-icon svg { width: 28px; height: 28px; stroke: var(--dark); fill: none; stroke-width: 2.5; }
#formSuccess h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
#formSuccess p { color: var(--text-light); font-weight: 300; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(245,197,24,0.15); }
.faq-question { width: 100%; text-align: left; padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--dark); line-height: 1.4; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-icon svg { width: 100%; height: 100%; stroke: var(--accent); fill: none; stroke-width: 2; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease, padding 0.38s ease; font-size: 0.87rem; color: var(--text-light); line-height: 1.78; font-weight: 300; }
.faq-item.open .faq-answer { max-height: 350px; padding-bottom: 1.3rem; }

/* Platform links */
.platform-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.platform-link-card { background: var(--white); padding: 2rem 1.5rem; border-radius: 16px; text-align: center; border-top: 3px solid var(--accent); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; box-shadow: 0 2px 20px rgba(245,197,24,0.06); }
.platform-link-card .plc-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.platform-link-card .plc-icon svg { width: 36px; height: 36px; fill: var(--accent); }
.platform-link-card h4 { font-size: 0.88rem; }
.platform-link-card p { font-size: 0.78rem; color: var(--text-light); font-weight: 300; }
.platform-link-card a.plc-link { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); display: inline-block; padding: 0.5rem 1.2rem; border: 1.5px solid var(--accent); border-radius: 100px; transition: all 0.25s; }
.platform-link-card a.plc-link:hover { background: var(--accent); color: var(--dark); }

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

/* ===== ABOUT CTA ROW ===== */
.about-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .social-feed-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 3; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: var(--nav-height); left: 0; right: 0; flex-direction: column; align-items: center; background: var(--dark); padding: 2rem; gap: 1.5rem; transform: translateY(-120%); transition: transform 0.4s ease; z-index: 999; }
  .nav-links.open { transform: translateY(0); }
  .brand-teaser { grid-template-columns: 1fr; gap: 2.5rem; }
  .origin-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-masonry { columns: 2; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .platform-links-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .values-icons { grid-template-columns: 1fr; }
  .timeline::before { left: 1.5rem; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.4rem; padding-left: 3.5rem; }
  .timeline-year { text-align: left; padding-right: 0; padding-left: 0; }
  .timeline-body { padding-left: 0; }
  .timeline-dot { left: 1.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .social-feed-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Category-Tile Products Layout ── */
.cat-tiles-wrap { padding: 48px 0 24px; }
.cat-tiles { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.cat-tile { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; display: block; text-decoration: none; border: 1px solid rgba(245,197,24,0.2); transition: transform .3s, box-shadow .3s; }
.cat-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(44,36,22,.18); }
.cat-tile__img { position: absolute; inset: 0; }
.cat-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-tile:hover .cat-tile__img img { transform: scale(1.06); }
.cat-tile__overlay { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 25%,rgba(44,36,22,.82) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.cat-tile__overlay h3 { color: #fff; font-family: 'Gloock', serif; font-size: 1.1rem; margin-bottom: 4px; }
.cat-tile__sub { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--highlight); }
.cat-sections { margin-top: 8px; }
.cat-section { padding: 48px 0; border-bottom: 1px solid rgba(245,197,24,0.15); scroll-margin-top: 100px; }
.cat-section:last-child { border-bottom: none; }
.cat-heading { font-family: 'Gloock', serif; font-size: 1.7rem; color: var(--dark); margin-bottom: 8px; }
.cat-rule { height: 2px; width: 48px; background: var(--accent); border: none; margin: 0 0 28px; }
.item-list { display: flex; flex-direction: column; }
.item-row { padding: 18px 0; border-bottom: 1px solid rgba(44,36,22,.08); }
.item-row:last-child { border-bottom: none; }
.item-row h4 { font-family: 'Gloock', serif; font-size: 1rem; font-weight: 400; color: var(--dark); margin-bottom: 5px; }
.item-row p { font-family: 'Outfit', sans-serif; font-size: .88rem; color: var(--text-light); margin: 0 0 10px; line-height: 1.65; }
.item-cta { display: inline-block; font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--dark); border-bottom: 2px solid var(--accent); padding-bottom: 1px; transition: color .2s; }
.item-cta:hover { color: var(--accent); }
@media (max-width:768px) { .cat-tiles { grid-template-columns: 1fr; } .cat-tile { aspect-ratio: 16/9; } }
