/* ════════════════════════════════════════════════════════════════════════════
   MENKO PREMIUM CSS — Hero video, editorial sections, animations
   ════════════════════════════════════════════════════════════════════════════ */

/* ─── Font enhancement: tambahkan serif untuk aksen editorial ──────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500;1,600&display=swap');

.serif-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}
em { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 500; }

/* ─── SCROLL REVEAL ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO VIDEO ────────────────────────────────────────────────────────────── */
.hero-video {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #1a1a1a;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(225,14,28,0.25) 100%);
  z-index: 2;
}
.hero-video-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 120px 0;
}
.hero-eyebrow-v {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
  display: inline-block;
  margin-bottom: 32px;
}
.hero-title-v {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 28px;
  color: #fff;
}
.hero-title-v .serif-italic { color: #fff; }
.hero-lead-v {
  font-size: 1.18rem;
  max-width: 540px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero-actions-v { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── PILL BUTTONS ──────────────────────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn-pill span { transition: transform 0.28s ease; }
.btn-pill:hover span { transform: translateX(5px); }
.btn-pill.primary { background: #E10E1C; color: #fff; }
.btn-pill.primary:hover { background: #C00713; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(225,14,28,0.35); }
.btn-pill.ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.btn-pill.ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.btn-pill.lg { padding: 20px 34px; font-size: 1.02rem; }

/* ─── SCROLL HINT ──────────────────────────────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

/* ─── MARQUEE BAND ─────────────────────────────────────────────────────────── */
.marquee-band {
  background: #1C1A1D;
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #2a2a2d;
  border-bottom: 1px solid #2a2a2d;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  display: inline-block;
  padding-right: 80px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
}
.marquee-track span:nth-child(even) { color: #E10E1C; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── EDITORIAL INTRO ─────────────────────────────────────────────────────── */
.ed-intro { padding: 140px 0; background: #fff; }
.ed-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: center;
}
.ed-text { max-width: 540px; }
.ed-label {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: #6B6B73;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}
.ed-headline {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #1C1A1D;
  margin-bottom: 26px;
}
.ed-headline .accent { color: #E10E1C; }
.ed-body {
  font-size: 1.08rem;
  line-height: 1.78;
  color: #4A4A52;
  margin-bottom: 28px;
}
.ed-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1C1A1D;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  padding-bottom: 4px;
  border-bottom: 1.5px solid #1C1A1D;
  transition: gap 0.25s ease;
}
.ed-link:hover { gap: 16px; color: #E10E1C; border-color: #E10E1C; }

.ed-image { position: relative; }
.ed-image-frame {
  aspect-ratio: 4/5;
  background: #F6F6F7;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.ed-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.ed-image-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #C8C8CE;
}
.ed-image-placeholder svg { width: 90px; height: 90px; opacity: 0.5; }
.ed-image-placeholder p { font-size: 0.84rem; letter-spacing: 0.1em; margin-top: 12px; font-weight: 500; }
.ed-tag {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: #1C1A1D;
  color: #fff;
  padding: 12px 22px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  border-radius: 2px;
}

/* ─── FEATURED PRODUCTS (asymmetric) ──────────────────────────────────────── */
.featured-products { padding: 120px 0; background: #FAFAFA; }
.section-head { margin-bottom: 60px; }
.section-head.row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 30px; }
.section-head .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #E10E1C;
  display: block;
  margin-bottom: 14px;
}
.section-head .section-title {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #1C1A1D;
  margin: 0;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6B6B73;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.22s ease;
}
.ghost-link span { transition: transform 0.22s ease; }
.ghost-link:hover { color: #E10E1C; }
.ghost-link:hover span { transform: translateX(6px); }

.fp-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
.fp-card.large { grid-row: span 2; }
.fp-card.small { grid-column: 2; }
.fp-card { background: #fff; border-radius: 4px; overflow: hidden; transition: transform 0.4s ease; }
.fp-card:hover { transform: translateY(-6px); }
.fp-img { position: relative; background: #ECECEE; overflow: hidden; }
.fp-card.large .fp-img { aspect-ratio: 4/5; }
.fp-card.small .fp-img { aspect-ratio: 5/3; }
.fp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.fp-card:hover .fp-img img { transform: scale(1.05); }
.fp-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F4F4F5, #E8E8EB);
  color: #B0B0B8;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.fp-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: #E10E1C;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  border-radius: 999px;
}
.fp-meta { padding: 26px 28px 30px; }
.fp-cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #E10E1C;
  font-weight: 600;
}
.fp-meta h3 {
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1C1A1D;
  margin: 10px 0 8px;
}
.fp-card.small .fp-meta h3 { font-size: 1.15rem; }
.fp-meta p { font-size: 0.96rem; color: #6B6B73; line-height: 1.55; }

/* ─── CATEGORY SHOWCASE ───────────────────────────────────────────────────── */
.cat-showcase { padding: 120px 0; background: #fff; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #E8E8EB;
  border: 1px solid #E8E8EB;
}
.cat-card {
  background: #fff;
  padding: 38px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #1C1A1D;
  position: relative;
  transition: background 0.3s ease;
}
.cat-card:hover { background: #1C1A1D; color: #fff; }
.cat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.8rem;
  color: #E10E1C;
  font-weight: 500;
  flex-shrink: 0;
}
.cat-name {
  flex: 1;
  font-weight: 500;
  font-size: 1rem;
}
.cat-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.25s ease;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); color: #E10E1C; }

/* ─── MANIFESTO QUOTE ─────────────────────────────────────────────────────── */
.manifesto { padding: 160px 0; background: #1C1A1D; color: #fff; position: relative; overflow: hidden; }
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 8px; height: 100%;
  background: #E10E1C;
}
.manifesto-content { max-width: 980px; position: relative; }
.manifesto-quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 7rem;
  color: #E10E1C;
  line-height: 0.8;
  display: block;
  margin-bottom: 20px;
}
.manifesto-text {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}
.manifesto-text .serif-italic { color: #E10E1C; }
.manifesto-attribution {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ─── ANIMATED STATS ──────────────────────────────────────────────────────── */
.stats-anim { padding: 120px 0; background: #fff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #E8E8EB;
  border-radius: 4px;
  overflow: hidden;
}
.stat-anim {
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid #E8E8EB;
}
.stat-anim:last-child { border-right: none; }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1C1A1D;
  line-height: 1;
}
.stat-num span { color: #E10E1C; }
.stat-lbl {
  margin-top: 14px;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  color: #6B6B73;
  font-weight: 500;
  text-transform: uppercase;
}

/* ─── ARTICLES MAGAZINE ───────────────────────────────────────────────────── */
.articles-mag { padding: 120px 0; background: #FAFAFA; }
.art-mag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.art-mag-grid .art-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.art-mag-grid .art-card:hover { transform: translateY(-6px); }
.art-mag-grid .ac-img { aspect-ratio: 5/3; background: #ECECEE; overflow: hidden; position: relative; }
.art-mag-grid .ac-img img { width: 100%; height: 100%; object-fit: cover; }
.art-mag-grid .ac-img .ph-mini {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F4F4F5, #E8E8EB);
  color: #B0B0B8;
}
.art-mag-grid .ac-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: #1C1A1D;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  border-radius: 2px;
}
.art-mag-grid .ac-body { padding: 26px 28px 30px; flex: 1; }
.art-mag-grid h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1C1A1D;
  line-height: 1.3;
  margin-bottom: 10px;
}
.art-mag-grid p {
  font-size: 0.95rem;
  color: #6B6B73;
  line-height: 1.55;
  margin-bottom: 16px;
}
.art-mag-grid .ac-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #9999A0;
  font-weight: 500;
}
.art-mag-grid .ac-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: #C8C8CE; }

/* ─── CTA FINAL ───────────────────────────────────────────────────────────── */
.cta-final { padding: 120px 0; background: #fff; }
.cta-final-inner {
  background: #fff;
  border: 1px solid #E8E8EB;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-final-inner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 5px;
  background: #E10E1C;
}
.cta-final-text .eyebrow.light {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #E10E1C;
  display: block;
  margin-bottom: 14px;
}
.cta-final-text h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #1C1A1D;
  margin-bottom: 14px;
}
.cta-final-text p {
  color: #6B6B73;
  font-size: 1.04rem;
  line-height: 1.6;
}
.cta-final-inner .btn-pill { justify-self: end; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .ed-grid { grid-template-columns: 1fr; gap: 60px; }
  .fp-grid { grid-template-columns: 1fr 1fr; }
  .fp-card.large { grid-column: 1 / -1; grid-row: auto; }
  .fp-card.small { grid-column: auto; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .art-mag-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .hero-video { min-height: 85vh; }
  .hero-title-v { font-size: 2.6rem; }
  .hero-lead-v { font-size: 1rem; }
  .hero-scroll-hint { display: none; }
  .ed-intro, .featured-products, .cat-showcase, .stats-anim, .articles-mag, .cta-final { padding: 70px 0; }
  .manifesto { padding: 90px 0; }
  .manifesto-text { font-size: 1.4rem; }
  .fp-grid { grid-template-columns: 1fr; }
  .fp-card.small { grid-column: auto; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-anim:nth-child(2) { border-right: none; }
  .stat-anim:nth-child(1), .stat-anim:nth-child(2) { border-bottom: 1px solid #E8E8EB; }
  .art-mag-grid { grid-template-columns: 1fr; }
  .cta-final-inner { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
  .cta-final-inner .btn-pill { justify-self: start; }
  .ed-tag { bottom: -12px; right: 16px; padding: 10px 16px; font-size: 0.66rem; }
}

/* ─── ILLUSTRATED PLACEHOLDERS ─────────────────────────────────────────────── */
.ed-image-illustration {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.ed-image-illustration svg { width: 100%; height: 100%; display: block; }

.fp-illustration {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.fp-illustration svg { width: 100%; height: 100%; display: block; }
.fp-img { position: relative; }


/* ════════════════════════════════════════════════════════════════════════════
   PREMIUM STYLES UNTUK HALAMAN LAIN (Produk, Tentang, Kontak)
   ════════════════════════════════════════════════════════════════════════════ */

/* ─── EDITORIAL PAGE HERO (lebih premium dari page-banner biasa) ─────────── */
.ed-hero {
  padding: 140px 0 100px;
  background: #FAFAFA;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E8E8EB;
}
.ed-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 5px;
  background: #E10E1C;
}
.ed-hero-crumb {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #6B6B73;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ed-hero-crumb a { color: #6B6B73; text-decoration: none; }
.ed-hero-crumb a:hover { color: #E10E1C; }
.ed-hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #1C1A1D;
  margin-bottom: 28px;
  max-width: 920px;
}
.ed-hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #E10E1C;
}
.ed-hero-lead {
  font-size: 1.18rem;
  color: #4A4A52;
  line-height: 1.7;
  max-width: 620px;
}

/* ─── ABOUT PAGE ───────────────────────────────────────────────────────────── */
.about-intro { padding: 120px 0; background: #fff; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-label {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #E10E1C;
  text-transform: uppercase;
}
.about-intro h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1C1A1D;
  margin: 14px 0 0;
}
.about-intro h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #E10E1C;
}
.about-intro-text { font-size: 1.1rem; color: #4A4A52; line-height: 1.8; }
.about-intro-text p + p { margin-top: 22px; }

.about-values { padding: 120px 0; background: #FAFAFA; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.value-card {
  background: #fff;
  padding: 50px 38px;
  border: 1px solid #E8E8EB;
  position: relative;
  transition: transform 0.35s ease;
}
.value-card:hover { transform: translateY(-6px); }
.value-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 3.2rem;
  color: #E10E1C;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 22px;
}
.value-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1C1A1D;
  margin-bottom: 14px;
}
.value-card p { color: #6B6B73; line-height: 1.65; font-size: 0.96rem; }

.about-timeline { padding: 120px 0; background: #fff; }
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid #E8E8EB;
  border-bottom: 1px solid #E8E8EB;
}
.timeline-item {
  padding: 50px 30px;
  border-right: 1px solid #E8E8EB;
  position: relative;
}
.timeline-item:last-child { border-right: none; }
.timeline-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 2.4rem;
  color: #E10E1C;
  font-weight: 500;
  margin-bottom: 14px;
}
.timeline-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1C1A1D;
  margin-bottom: 10px;
}
.timeline-item p { font-size: 0.92rem; color: #6B6B73; line-height: 1.55; }

/* ─── CONTACT PAGE ──────────────────────────────────────────────────────────── */
.contact-section { padding: 100px 0 120px; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: #1C1A1D;
  color: #fff;
  padding: 50px 44px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: #E10E1C;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}
.contact-info-card .ci-tagline { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 36px; }
.ci-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.ci-item:first-of-type { border-top: none; padding-top: 0; }
.ci-item .ci-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.ci-label { font-size: 0.74rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); text-transform: uppercase; font-weight: 600; }
.ci-value { color: #fff; font-weight: 500; font-size: 0.98rem; margin-top: 4px; }
.ci-value a { color: inherit; text-decoration: none; }
.ci-value a:hover { color: #E10E1C; }

.contact-form-frame {
  background: #FAFAFA;
  padding: 50px 44px;
  border: 1px solid #E8E8EB;
}
.contact-form-frame h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1C1A1D;
  margin-bottom: 8px;
}
.contact-form-frame > p { color: #6B6B73; margin-bottom: 28px; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.cf-field { margin-bottom: 14px; }
.cf-field label {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.12em; font-weight: 600;
  color: #6B6B73; text-transform: uppercase; margin-bottom: 8px;
}
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #E8E8EB;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.96rem;
  color: #1C1A1D;
  border-radius: 2px;
  transition: border-color 0.2s ease;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none;
  border-color: #1C1A1D;
}
.cf-field textarea { resize: vertical; min-height: 110px; }

/* ─── FAQ ACCORDION ────────────────────────────────────────────────────────── */
.faq-section { padding: 100px 0; background: #FAFAFA; }
.faq-list { max-width: 820px; margin: 50px auto 0; }
.faq-item {
  border-top: 1px solid #E8E8EB;
}
.faq-item:last-child { border-bottom: 1px solid #E8E8EB; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 0;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 600;
  color: #1C1A1D;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color 0.2s ease;
}
.faq-question:hover { color: #E10E1C; }
.faq-icon {
  font-size: 1.4rem;
  color: #E10E1C;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 28px; }
.faq-answer p { color: #4A4A52; line-height: 1.7; font-size: 0.98rem; }

/* ─── PRODUCTS PAGE PREMIUM ────────────────────────────────────────────────── */
.products-intro { padding: 60px 0 40px; background: #fff; }
.products-toolbar-v2 {
  background: #fff;
  border-bottom: 1px solid #E8E8EB;
  padding: 24px 0;
  position: sticky;
  top: 64px;
  z-index: 50;
}
.cat-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cat-pill {
  padding: 9px 18px;
  border: 1px solid #E8E8EB;
  background: #fff;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  color: #6B6B73;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cat-pill:hover { border-color: #1C1A1D; color: #1C1A1D; }
.cat-pill.active { background: #1C1A1D; color: #fff; border-color: #1C1A1D; }

/* ─── RESPONSIVE FOR NEW SECTIONS ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item:nth-child(2) { border-right: none; }
  .timeline-item:nth-child(1), .timeline-item:nth-child(2) { border-bottom: 1px solid #E8E8EB; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .ed-hero { padding: 90px 0 60px; }
  .about-intro, .about-values, .about-timeline, .contact-section, .faq-section { padding: 70px 0; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-item { border-right: none; border-bottom: 1px solid #E8E8EB; }
  .timeline-item:last-child { border-bottom: none; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form-frame { padding: 36px 28px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   ARTICLE READER PAGE (article.html)
   ════════════════════════════════════════════════════════════════════════════ */
.article-reader { padding: 40px 0 100px; background: #fff; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* Article head/meta (sesuai class yang dipakai articles.js) */
#articleRoot .article-head {
  margin-bottom: 50px;
}
#articleRoot .ah-cat {
  display: inline-block;
  background: #1C1A1D;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  border-radius: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
#articleRoot h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1C1A1D;
  margin: 0 0 24px;
}
#articleRoot .ah-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #6B6B73;
  font-weight: 500;
  margin-bottom: 40px;
}
#articleRoot .ah-meta .dot {
  width: 4px !important; height: 4px !important;
  border-radius: 50%;
  background: #C8C8CE !important;
  display: inline-block;
}
#articleRoot .article-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: #F4F4F5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 50px;
}
#articleRoot .article-hero-img img,
#articleRoot .article-hero-img svg { width: 100%; height: 100%; object-fit: cover; display: block; }
#articleRoot .ph-mini {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F4F4F5, #E8E8EB);
  color: #B0B0B8;
  font-size: 0.9rem;
}

/* Article body content */
#articleRoot .article-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.12rem;
  line-height: 1.78;
  color: #2A2A30;
}
#articleRoot .article-body > p:first-child::first-letter {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: #E10E1C;
}
#articleRoot .article-body p,
#articleRoot .article-body ul,
#articleRoot .article-body ol {
  margin: 0 0 24px;
}
#articleRoot .article-body h2 {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #1C1A1D;
  margin: 50px 0 18px;
}
#articleRoot .article-body h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #E10E1C;
}
#articleRoot .article-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1C1A1D;
  margin: 36px 0 14px;
}
#articleRoot .article-body ul,
#articleRoot .article-body ol {
  padding-left: 24px;
}
#articleRoot .article-body li { margin-bottom: 10px; }
#articleRoot .article-body li::marker { color: #E10E1C; }
#articleRoot .article-body blockquote {
  border-left: 4px solid #E10E1C;
  padding: 4px 0 4px 28px;
  margin: 30px 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #1C1A1D;
}
#articleRoot .article-body strong { color: #1C1A1D; }
#articleRoot .article-body a {
  color: #E10E1C;
  text-decoration: underline;
  text-underline-offset: 3px;
}
#articleRoot .article-body code {
  background: #F4F4F5;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.94em;
}

/* Article share buttons */
#articleRoot .article-share {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid #E8E8EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
#articleRoot .article-share > span {
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  color: #6B6B73;
  font-weight: 600;
  text-transform: uppercase;
}
#articleRoot .share-btns {
  display: flex;
  gap: 10px;
}
#articleRoot .share-btns a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #FAFAFA;
  border: 1px solid #E8E8EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C1A1D;
  transition: all 0.22s ease;
}
#articleRoot .share-btns a:hover {
  background: #E10E1C;
  border-color: #E10E1C;
  color: #fff;
  transform: translateY(-2px);
}
#articleRoot .share-btns svg { width: 18px; height: 18px; }

/* More articles section */
.more-articles-section {
  padding: 100px 0;
  background: #FAFAFA;
  border-top: 1px solid #E8E8EB;
}

/* ════════════════════════════════════════════════════════════════════════════
   ARTICLES LIST PAGE (articles.html) — Featured + Filter
   ════════════════════════════════════════════════════════════════════════════ */
.articles-listing { padding: 80px 0 100px; background: #fff; }

/* Featured article */
.art-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #E8E8EB;
}
.af-img {
  aspect-ratio: 4/3;
  background: #F4F4F5;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.af-img img, .af-img svg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.af-img:hover img, .af-img:hover svg { transform: scale(1.03); }
.af-img .ph-mini {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F4F4F5, #E8E8EB);
  color: #B0B0B8;
}
.af-cat {
  display: inline-block;
  background: #E10E1C;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  border-radius: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.af-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.af-body h2 a {
  color: #1C1A1D;
  text-decoration: none;
}
.af-body h2 a:hover { color: #E10E1C; }
.af-body p {
  color: #6B6B73;
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.art-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: #9999A0;
  font-weight: 500;
}
.art-meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #C8C8CE;
}

/* Filter chips */
.art-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.art-cat-chip {
  padding: 9px 18px;
  border: 1px solid #E8E8EB;
  background: #fff;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  color: #6B6B73;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.art-cat-chip:hover { border-color: #1C1A1D; color: #1C1A1D; }
.art-cat-chip.active { background: #1C1A1D; color: #fff; border-color: #1C1A1D; }

/* Article cards grid */
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.art-grid .art-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border: 1px solid #E8E8EB;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.art-grid .art-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.art-grid .ac-img {
  aspect-ratio: 5/3;
  background: #F4F4F5;
  overflow: hidden;
  position: relative;
}
.art-grid .ac-img img, .art-grid .ac-img svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-grid .ac-img .ph-mini {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F4F4F5, #E8E8EB);
  color: #B0B0B8;
}
.art-grid .ac-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: #1C1A1D;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  border-radius: 2px;
}
.art-grid .ac-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.art-grid h3 {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1C1A1D;
  line-height: 1.3;
  margin-bottom: 10px;
}
.art-grid p {
  font-size: 0.94rem;
  color: #6B6B73;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.art-grid .ac-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #9999A0;
  font-weight: 500;
}
.art-grid .ac-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: #C8C8CE; }

.empty-note {
  color: #9999A0;
  font-style: italic;
  text-align: center;
  padding: 40px 0;
}

@media (max-width: 980px) {
  .art-featured { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; padding-bottom: 60px; }
  .art-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .article-reader { padding: 20px 0 70px; }
  .wrap-narrow { padding: 0 20px; }
  #articleRoot .ar-content { font-size: 1.02rem; }
  #articleRoot .ar-content > p:first-child::first-letter { font-size: 3.4em; }
  .more-articles-section { padding: 70px 0; }
  .art-grid { grid-template-columns: 1fr; }
}

/* ─── PRODUCT PHOTOS (asli dari katalog Menko) ─────────────────────────────── */
.product-thumb {
  position: relative;
  aspect-ratio: 1/1;
  background: #fff;
  overflow: hidden;
}
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform 0.4s ease;
}
.product-card:hover .product-photo { transform: scale(1.04); }
.product-thumb-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F4F4F5, #E8E8EB);
}

/* ─── FILTER ROW (Products page toolbar) ───────────────────────────────────── */
.products-toolbar-v2 .filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.product-count {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  color: #6B6B73;
  font-weight: 500;
  white-space: nowrap;
}

/* Filter chips (yang dirender script.js dengan class .filter-chip) */
.filter-chip {
  padding: 9px 18px;
  border: 1px solid #E8E8EB;
  background: #fff;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  color: #6B6B73;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.filter-chip:hover {
  border-color: #1C1A1D;
  color: #1C1A1D;
}
.filter-chip.active {
  background: #1C1A1D;
  color: #fff;
  border-color: #1C1A1D;
}

/* ─── FEATURED PRODUCT PHOTOS (real images) ───────────────────────────────── */
.fp-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.fp-card:hover .fp-photo { transform: scale(1.05); }

/* Editorial frame photo */
.ed-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════════════════════════════════════════════════
   COLORLUTIONS SUB-BRAND SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.colorlutions {
  padding: 110px 0;
  background: linear-gradient(135deg, #EAF4FC 0%, #F5FAFF 100%);
  position: relative;
  overflow: hidden;
}
.cl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.cl-text .cl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #2B8CD9;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cl-text .cl-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: #2B8CD9;
}
.cl-text h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #15314A;
  margin-bottom: 20px;
}
.cl-text h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #2B8CD9;
}
.cl-text p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #3D5973;
  margin-bottom: 18px;
}
.cl-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(43,140,217,0.12);
  font-size: 0.92rem;
  color: #15314A;
  font-weight: 500;
  margin-top: 8px;
}
.cl-badge strong { color: #2B8CD9; }
.cl-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 60px 50px;
  box-shadow: 0 20px 50px rgba(43,140,217,0.15);
  position: relative;
}
.cl-logo-wrap img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}
.cl-products-hint {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cl-chip {
  background: #fff;
  border: 1px solid #CDE4F5;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: #2B8CD9;
  font-weight: 500;
}

@media (max-width: 900px) {
  .cl-grid { grid-template-columns: 1fr; gap: 40px; }
  .cl-logo-wrap { order: -1; padding: 40px 30px; }
  .colorlutions { padding: 70px 0; }
}
