/* ============================================================
   GoO Ninks — style.css
   Konsep: "Black Gold untuk berkesan, White Clean untuk berjualan"
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #0A0A0A;
  --dark:         #111111;
  --dark-soft:    #1A1A1A;
  --white:        #FFFFFF;
  --surface:      #F8F8F6;
  --gold:         #C9A84C;
  --gold-hover:   #E8C96D;
  --cream:        #F5F0E8;
  --cream-muted:  #B8B0A0;
  --text-dark:    #1A1A1A;
  --text-muted:   #666666;
  --border:       #E8E8E8;
  --border-dark:  #2A2A2A;

  /* Legacy aliases — dipakai di inline HTML styles */
  --bg:            #FFFFFF;
  --text:          #1A1A1A;
  --text-secondary:#666666;
  --gold-hover:    #E8C96D;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.3s ease;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.12);
  --gold-glow:    0 0 30px rgba(201,168,76,0.5), 0 0 60px rgba(201,168,76,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ── Typography — Bold & Berani ── */
h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.3;
}
p { line-height: 1.7; }

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR — Black Gold
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
  height: 68px;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201,168,76,0.6), 0 0 40px rgba(201,168,76,0.3);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 3px;
  background: transparent;
}

.lang-btn {
  padding: 4px 10px;
  border-radius: 16px;
  transition: all var(--transition);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--black);
}

.nav-icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  color: var(--cream);
  cursor: pointer;
  border: none;
  background: none;
}

.nav-icon-btn:hover { background: rgba(255,255,255,0.06); color: var(--gold); }
.nav-icon-btn svg { width: 20px; height: 20px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
  z-index: 999;
  padding: 16px 24px 24px;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-dark);
  color: var(--cream);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

/* Gold button — dark text per brand spec */
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* Outline gold */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* Outline white */
.btn-outline-white {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,240,232,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* Dark button — hover turns gold */
.btn-dark {
  background: var(--dark-soft);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-sm  { padding: 8px 16px; font-size: 0.8rem; }
.product-info .btn-sm { padding: 8px 12px; font-size: 0.8rem; }
.btn-lg  { padding: 16px 40px; font-size: 0.95rem; }
.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ============================================================
   PRODUCT CARD — White Clean
   ============================================================ */
.product-card {
  background: var(--white);
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

/* 3:4 ratio */
.product-img {
  width: 100%;
  padding-top: 133%;
  position: relative;
  overflow: hidden;
}

.product-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Category badge: black bg, gold text */
.badge-cat {
  background: var(--black);
  color: var(--gold);
}

.badge-special {
  background: var(--gold);
  color: var(--black);
}

.product-info { padding: 12px; }

.product-origin {
  font-size: 0.68rem;
  color: #999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
  line-height: 1.2;
  color: var(--text-dark);
}

.product-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 4px 0 10px;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  display: none;
}

/* ============================================================
   HERO SECTION — Black Gold, 2 kolom
   ============================================================ */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 120px 48px;
  position: relative;
  z-index: 2;
}

/* Subtle gold ambient left side */
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-img {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 100vh;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-left: 1px solid rgba(201,168,76,0.3);
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
  display: block;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--cream-muted);
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 25%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  z-index: 3;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--cream-muted);
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream-muted), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ============================================================
   FEATURED PRODUCTS — White Clean
   ============================================================ */
.featured-section {
  padding: 80px 0;
  background: var(--white);
}

.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   MRS NINING TEASER — Black Gold
   ============================================================ */
.nining-section {
  background: var(--dark);
  padding: 80px 0;
}

.nining-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: center;
}

.nining-avatar-wrap {
  display: flex;
  justify-content: center;
}

.nining-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #8B6914);
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(201,168,76,0.5), 0 0 80px rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(201,168,76,0.5), 0 0 80px rgba(201,168,76,0.2); }
  50%       { box-shadow: 0 0 60px rgba(201,168,76,0.7), 0 0 120px rgba(201,168,76,0.35); }
}

.nining-content { color: var(--cream); }

.nining-tag {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.nining-content h2 {
  color: var(--cream);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.nining-subtitle {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.nining-quote {
  font-size: 1.1rem;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ============================================================
   MARQUEE STRIP — Gold bg, dark text
   ============================================================ */
.marquee-section {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 24s linear infinite;
}

.marquee-item {
  color: rgba(10,10,10,0.85);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 36px;
}

.marquee-dot {
  color: rgba(10,10,10,0.4);
  padding: 0 4px;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   CATEGORY SECTION — White
   ============================================================ */
.category-section {
  padding: 72px 0;
  background: var(--white);
}

.category-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  justify-content: center;
}
.category-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 32px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  min-width: 110px;
  text-decoration: none;
  color: var(--text-dark);
}

.cat-pill .cat-icon { font-size: 1.8rem; }
.cat-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.04);
  transform: translateY(-3px);
}

/* ============================================================
   BRAND STORY — Dark Soft
   ============================================================ */
.brand-story-section {
  padding: 80px 0;
  background: var(--dark-soft);
}

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-story-text .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
  display: block;
}

.brand-story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--cream);
}

.brand-story-text p {
  font-size: 1rem;
  color: var(--cream-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.brand-story-deco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.deco-block {
  border-radius: 10px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.deco-block-1 { background: linear-gradient(135deg, #0a1a15, #1a4a2a); }
.deco-block-2 { background: linear-gradient(135deg, #1a1500, #C9A84C); margin-top: 20px; }
.deco-block-3 { background: linear-gradient(135deg, #1a0510, #5a1020); margin-top: -20px; }
.deco-block-4 { background: linear-gradient(135deg, #0f0f0f, #2a2a2a); }

/* ============================================================
   FOOTER — Black
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  color: var(--cream-muted);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201,168,76,0.8), 0 0 40px rgba(201,168,76,0.4);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 260px;
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--cream-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.social-links { display: flex; gap: 10px; margin-top: 4px; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   PAGE HERO (inner pages) — Black Gold
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--cream-muted);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CATALOG — Filter Wrapper (sticky, full-width)
   ============================================================ */
.filter-wrapper {
  position: sticky;
  top: 68px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 14px 0;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}

.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

.catalog-count {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Catalog section — White Clean */
.catalog-section {
  padding: 40px 0 80px;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card.hidden { display: none; }

/* ============================================================
   HERITAGE PAGE — All Dark
   ============================================================ */
.heritage-section { padding: 80px 0; }

.heritage-block {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 72px;
  align-items: center;
}

.heritage-block.reverse { direction: rtl; }
.heritage-block.reverse > * { direction: ltr; }

.heritage-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  border: 1px solid rgba(201,168,76,0.3);
}

.heritage-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 32px;
}

.heritage-img-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.heritage-text .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}

.heritage-text h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.2;
}

.heritage-prose {
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 2;
}

/* Gold left border on heritage paragraphs */
.heritage-prose p {
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.heritage-prose p:last-child { margin-bottom: 0; }

/* Alternating dark backgrounds */
.heritage-white   { background: var(--dark); }
.heritage-divider { background: var(--dark-soft); }

/* About/Tentang section inside heritage */
.heritage-tentang {
  padding: 100px 0;
  background: var(--dark);
}

.heritage-tentang .eyebrow-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

.heritage-tentang h2 {
  color: var(--cream);
  margin-bottom: 28px;
}

.heritage-tentang p {
  color: var(--cream-muted);
  line-height: 2;
  margin-bottom: 24px;
}

.heritage-tentang .stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
}

.heritage-tentang .stat-label {
  font-size: 0.8rem;
  color: var(--cream-muted);
}

.heritage-tentang .stat-divider {
  width: 1px;
  background: var(--border-dark);
}

/* Heritage CTA — Gold background */
.heritage-cta {
  background: var(--gold);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.heritage-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.heritage-cta h2 {
  color: var(--black);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.heritage-cta .btn-dark {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: var(--cream);
}

.heritage-cta .btn-dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ============================================================
   TRYON PAGE — White main, dark panel
   ============================================================ */
.tryon-section { padding: 60px 0 100px; background: var(--white); }

.tryon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.tryon-col-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* Upload box — 4:5 ratio */
.upload-box {
  border: 2px dashed var(--gold);
  border-radius: 12px;
  padding-top: 125%;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--surface);
  overflow: hidden;
}

.upload-box:hover {
  background: rgba(201,168,76,0.04);
  border-color: var(--gold-hover);
}

.upload-box.has-photo { border-style: solid; }

/* Upload default content — centered absolutely */
.upload-default {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.upload-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--gold);
}

.upload-text {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.upload-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.upload-format {
  font-size: 0.73rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.upload-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.upload-overlay {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  display: none;
  z-index: 2;
}

.upload-box.has-photo .upload-overlay { display: block; }
.upload-box.has-photo .upload-default { display: none !important; }

/* Thumbnail grid — 1:1 square */
.product-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--surface);
}

.product-thumb {
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  background: var(--surface);
}

.product-thumb:hover { border-color: rgba(201,168,76,0.6); transform: translateY(-1px); }
.product-thumb.selected { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

/* Square thumbnails 1:1 */
.product-thumb-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-thumb-info {
  padding: 6px 7px 8px;
  background: var(--white);
}

.product-thumb-name {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  text-align: center;
}

.product-thumb-price {
  font-size: 0.63rem;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}

.thumb-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.7rem;
  z-index: 1;
}

.product-thumb.selected .thumb-check { display: flex; }

.selected-product-card {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  display: none;
}

.selected-product-card.show { display: block; }
.selected-product-card .name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.selected-product-card .price { color: var(--gold); font-size: 0.85rem; font-weight: 700; }

.tryon-action {
  text-align: center;
  margin: 32px 0;
}

.tryon-result {
  display: none;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.tryon-result.show { display: block; }

.tryon-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.tryon-result-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.canvas-area {
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 3/4;
  position: relative;
  border: 1px solid var(--border);
}

.canvas-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

/* Mrs. Nining Dashboard — Dark */
.nining-dashboard {
  background: var(--dark);
  border-radius: 12px;
  padding: 32px;
  margin-top: 0;
  border-left: 3px solid var(--gold);
}

.nining-dash-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
}

.nining-dash-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #8B6914);
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.nining-dash-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
}

.nining-dash-title {
  font-size: 0.73rem;
  color: var(--gold);
  margin-top: 2px;
}

.nining-dash-placeholder {
  text-align: center;
  padding: 24px 0;
  color: var(--cream-muted);
  font-size: 0.875rem;
}

.nining-dash-placeholder .placeholder-icon { font-size: 2.5rem; margin-bottom: 10px; }

.nining-dash-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--cream-muted);
  margin-bottom: 24px;
  white-space: pre-line;
}

/* Coming soon cards */
.coming-soon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}

.cs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.cs-icon { font-size: 2rem; margin-bottom: 10px; }
.cs-title { font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; }
.cs-badge {
  display: inline-block;
  padding: 3px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ============================================================
   CHAT PAGE
   ============================================================ */
.chat-wrapper {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 68px);
}

.chat-header {
  background: var(--black);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border-dark);
}

.chat-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #8B6914);
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.chat-header-info h3 {
  color: var(--cream);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 2px;
}

.chat-status {
  font-size: 0.75rem;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.chat-header-title {
  font-size: 0.73rem;
  color: var(--gold);
  margin-top: 2px;
}

.chat-area {
  flex: 1;
  overflow-y: auto;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--surface);
}

.chat-bubble-wrap {
  display: flex;
  gap: 12px;
  max-width: 78%;
}

.chat-bubble-wrap.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.bubble-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #C9A84C, #8B6914);
  border: 1.5px solid var(--gold);
  align-self: flex-end;
}

.bubble-avatar.user-avatar {
  background: var(--surface);
  border: 1.5px solid var(--border);
}

.chat-bubble {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 100%;
}

/* Nining bubble — white, gold left border */
.chat-bubble-wrap.nining .chat-bubble {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 12px;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* User bubble — gold bg, dark text */
.chat-bubble-wrap.user .chat-bubble {
  background: var(--gold);
  color: var(--black);
  border-radius: 12px 0 12px 12px;
  font-weight: 500;
}

.typing-wrap {
  display: flex;
  gap: 12px;
  max-width: 78%;
}

.typing-indicator {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 16px 18px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.typing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { opacity: 0.4; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-6px); }
}

.chat-input-area {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  flex-shrink: 0;
}

.quick-replies {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.quick-replies::-webkit-scrollbar { display: none; }

.quick-btn {
  white-space: nowrap;
  padding: 7px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--gold);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  flex-shrink: 0;
}

.quick-btn:hover { background: var(--gold); color: var(--black); }

.chat-input-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--text-dark);
}

.chat-input:focus { border-color: var(--gold); }

.chat-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
  cursor: pointer;
  border: none;
}
.chat-send:hover { background: var(--gold-hover); transform: scale(1.05); }
.chat-send svg { width: 18px; height: 18px; }

.chat-ai-note {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 10px;
  opacity: 0.6;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

/* Dark stepper header */
.checkout-header {
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
  padding: 32px 0;
}

.checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  flex-shrink: 0;
  transition: all var(--transition);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #444;
  transition: color var(--transition);
}

.step-item.active .step-num  { background: var(--gold); border-color: var(--gold); color: var(--black); }
.step-item.active .step-label { color: var(--cream); font-weight: 600; }
.step-item.done .step-num    { background: var(--gold); border-color: var(--gold); color: var(--black); }

.step-line {
  width: 60px;
  height: 1.5px;
  background: var(--border-dark);
  margin: 0 4px;
}

/* White form area */
.checkout-section { padding: 60px 0 100px; background: var(--white); }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.checkout-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.checkout-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  color: var(--text-dark);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  color: var(--text-dark);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-textarea { resize: vertical; min-height: 80px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.size-pills { display: flex; gap: 8px; flex-wrap: wrap; }

.size-pill {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  font-family: var(--font-body);
  color: var(--text-muted);
}

.size-pill:hover { border-color: var(--gold); color: var(--gold); }
.size-pill.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  opacity: 0.5;
  cursor: not-allowed;
}

.payment-icon { font-size: 1.5rem; }
.payment-label { font-weight: 600; font-size: 0.9rem; }
.payment-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.payment-cs {
  margin-left: auto;
  font-size: 0.68rem;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Order Summary Sidebar */
.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: 88px;
}

.order-summary h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

.order-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.order-item-img {
  width: 56px;
  height: 72px;
  border-radius: 6px;
  flex-shrink: 0;
  overflow: hidden;
}

.order-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
  color: var(--text-dark);
}

.order-item-size { font-size: 0.73rem; color: var(--text-muted); }

.order-item-price {
  margin-left: auto;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  padding-left: 8px;
}

.order-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.order-line .free { color: #22c55e; font-weight: 500; }

.order-line.total {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 6px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.order-line.total .price {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.order-note {
  margin-top: 20px;
  padding: 14px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.checkout-artisan-note {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 24px;
  line-height: 1.6;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.modal-overlay.show { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: 16px;
  padding: 52px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: modalIn 0.35s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon { font-size: 3.5rem; margin-bottom: 20px; }
.modal-box h2 { font-size: 1.9rem; margin-bottom: 16px; }
.modal-box p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .brand-story-inner { gap: 48px; }
  .heritage-block { gap: 40px; }
  .nining-inner { grid-template-columns: 200px 1fr; gap: 48px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  /* Hero: stack — image first, text below */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-img { height: 60vw; min-height: 280px; order: -1; }
  .hero-img img { border-left: none; }
  .hero-content { padding: 48px 24px; }
  .hero-sub { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .scroll-indicator { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .nining-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }

  .brand-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .brand-story-deco { display: none; }

  .heritage-block { grid-template-columns: 1fr; gap: 32px; }
  .heritage-block.reverse { direction: ltr; }

  .tryon-grid { grid-template-columns: 1fr; }
  .tryon-result-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .coming-soon-grid { grid-template-columns: 1fr 1fr; }

  .step-label { display: none; }
  .step-line { width: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .chat-bubble-wrap { max-width: 92%; }

  .filter-wrapper { position: static; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .products-grid .product-info { padding: 10px; }
  .products-grid .product-price { font-size: 0.95rem; }
  .category-scroll { justify-content: flex-start; }
  .modal-box { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .heritage-section { padding: 48px 0; }
  .brand-story-section { padding: 48px 0; }
}
