/* ==========================================================
   AOZOOM PREMIUM OUTLET — Design System
   Warna & tipografi konsisten dengan halaman coming-soon
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  /* Warna */
  --bg: #0B0906;
  --bg-elevated: #15110C;
  --bg-elevated-2: #1D1712;
  --orange: #F4791C;
  --orange-bright: #FFB066;
  --cream: #FBEFE1;
  --muted: rgba(251, 239, 225, 0.62);
  --muted-2: rgba(251, 239, 225, 0.38);
  --line: rgba(251, 239, 225, 0.10);

  /* Tipografi */
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-bright);
}

.eyebrow::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px 2px rgba(244,121,28,0.7);
}

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0;
}

h2{ font-size: clamp(1.9rem, 4vw, 3rem); }
h3{ font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

p{ color: var(--muted); margin: 0; }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover{ transform: translateY(-2px); }

.btn--solid{
  background: var(--orange);
  color: #1B0F04;
  box-shadow: 0 10px 30px rgba(244,121,28,0.28);
}
.btn--solid:hover{ background: var(--orange-bright); }

.btn--ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--cream);
}
.btn--ghost:hover{ border-color: var(--orange); }

:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(11,9,6,0.92) 0%, rgba(11,9,6,0.55) 80%, transparent 100%);
  backdrop-filter: blur(6px);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.header__logo img{
  height: 34px;
  width: auto;
  border-radius: 6px;
}

.header__nav{
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav a{
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
}
.header__nav a:hover{ color: var(--cream); }

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

.nav-toggle{
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header__nav-wa{ display: none; }

@media (max-width: 860px){
  .header__nav{
    position: fixed;
    top: 70px; left: 16px; right: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    gap: 14px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .header__nav.is-open{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle{ display: inline-flex; }
  .header__actions .btn--ghost{ display: none; }
  .header__nav-wa{
    display: inline-flex;
    margin-top: 4px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--orange);
    color: #1B0F04;
    font-weight: 600;
    font-size: 0.9rem;
  }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.05) contrast(1.05);
}

canvas#heroGrid{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero__vignette{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,5,3,0.88) 0%, rgba(8,6,4,0.55) 38%, rgba(8,6,4,0.75) 75%, rgba(6,5,3,0.95) 100%),
    radial-gradient(ellipse at 15% 40%, rgba(8,6,4,0.2) 0%, transparent 55%);
}

.hero__content{
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__title{
  font-size: clamp(2.6rem, 7vw, 5rem);
  margin: 18px 0 20px;
  text-shadow: 0 0 30px rgba(244,121,28,0.25);
}
.hero__title em{
  font-style: normal;
  color: var(--orange);
}

.hero__desc{
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero__badge{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted-2);
  border-left: 2px solid var(--orange);
  padding-left: 10px;
  line-height: 1.4;
}
.hero__badge b{ color: var(--cream); display: block; font-size: 0.95rem; font-family: var(--font-body); }

/* ---------- Marquee ---------- */
.marquee{
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg-elevated);
}

.marquee__track{
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
}

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

.marquee__item{
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.marquee__item::after{
  content: "•";
  color: var(--orange);
}

/* ---------- Section shell ---------- */
.section{ padding: 100px 0; }
.section--tight{ padding: 70px 0; }

.section__head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section__head h2{ margin-top: 12px; }
.section__head p{ max-width: 420px; }

/* ---------- Cards grid ---------- */
.grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 960px){ .grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .grid{ grid-template-columns: 1fr; } }

.card{
  position: relative;
  background: var(--bg-elevated);
  padding: 34px 26px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.card:hover{
  background: var(--bg-elevated-2);
  transform: translateY(-3px);
}
.card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover::before{ opacity: 1; }

.card__icon{
  width: 44px; height: 44px;
  margin-bottom: 22px;
  color: var(--orange);
  filter: drop-shadow(0 0 10px rgba(244,121,28,0.35));
}
.card__icon svg{ width: 100%; height: 100%; }

.card h3{ margin-bottom: 10px; }
.card p{ font-size: 0.92rem; }

/* ---------- Demo-first / beam slider ---------- */
.demo{
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px){ .demo{ grid-template-columns: 1fr; padding: 26px; } }

.demo__text p{ margin-top: 16px; }
.demo__specs{
  display: flex;
  gap: 26px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.demo__spec b{
  display: block;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--orange-bright);
}
.demo__spec span{
  font-size: 0.76rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.beam{
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #05040300;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}

.beam svg{ position: absolute; inset: 0; width: 100%; height: 100%; }

.beam__after{
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}

.beam__handle{
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--orange);
  box-shadow: 0 0 14px 2px rgba(244,121,28,0.6);
  transform: translateX(-1px);
}
.beam__handle::before{
  content: "⇔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px;
  background: var(--orange);
  color: #1B0F04;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.beam__label{
  position: absolute;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}
.beam__label--left{ left: 14px; color: rgba(251,239,225,0.6); }
.beam__label--right{ right: 14px; color: var(--orange-bright); }

/* ---------- Proses / steps ---------- */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 860px){ .steps{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }

.step{
  border-top: 2px solid var(--orange);
  padding-top: 18px;
}
.step__index{
  font-family: var(--font-mono);
  color: var(--muted-2);
  font-size: 0.85rem;
}
.step h3{ margin: 10px 0 10px; }
.step p{ font-size: 0.9rem; }

/* ---------- Galeri preview (foto placeholder, bukan hasil asli) ---------- */
.gallery-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
}
@media (max-width: 760px){ .gallery-grid{ grid-template-columns: 1fr; } }

.gallery-photo{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.gallery-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.gallery-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,5,3,0.85) 100%);
}
.gallery-photo__tag{
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--line);
  color: var(--orange-bright);
}
.gallery-photo__caption{
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 2;
  font-size: 0.82rem;
  color: var(--cream);
}

.gallery-grid--3col{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px){ .gallery-grid--3col{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .gallery-grid--3col{ grid-template-columns: 1fr; gap: 14px; } }

.gallery-note{
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted-2);
}

/* ---------- Empty state (testimoni) ---------- */
.empty{
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 60px 30px;
  text-align: center;
  color: var(--muted-2);
}
.empty h3{ color: var(--muted); margin-bottom: 10px; }
.empty p{ max-width: 420px; margin: 0 auto; font-size: 0.9rem; }

/* ---------- Final CTA ---------- */
.cta{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 70px 40px;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}
.cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(244,121,28,0.25), transparent 60%);
  pointer-events: none;
}
.cta__inner{ position: relative; z-index: 1; }
.cta h2{ margin: 14px 0 16px; }
.cta p{ max-width: 460px; margin: 0 auto 30px; }
.cta__actions{ display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer{
  border-top: 1px solid var(--line);
  padding: 54px 0 30px;
}
.footer__top{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer__brand img{ height: 30px; margin-bottom: 14px; border-radius: 6px; }
.footer__brand p{ max-width: 280px; font-size: 0.88rem; }

.footer__cols{ display: flex; gap: 60px; flex-wrap: wrap; }
.footer__col h4{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 14px;
}
.footer__col a, .footer__col span{
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer__col a:hover{ color: var(--orange-bright); }

.footer__bottom{
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* ---------- Page header (subpages) ---------- */
.page-header{
  position: relative;
  padding: 160px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(244,121,28,0.14) 0%, transparent 55%);
}
.page-header h1{
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin: 14px 0 16px;
}
.page-header p{ max-width: 560px; font-size: 1.02rem; }
.page-header__crumb{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.page-header__crumb a{ color: var(--muted); }
.page-header__crumb a:hover{ color: var(--orange-bright); }

/* ---------- Tentang: story layout ---------- */
.story{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 860px){ .story{ grid-template-columns: 1fr; gap: 30px; } }
.story__figure{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.story__figure img{ width: 100%; height: 100%; object-fit: cover; }
.story p + p{ margin-top: 16px; }

.value-list{ margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.value-list li{
  list-style: none;
  border-left: 2px solid var(--orange);
  padding-left: 16px;
}
.value-list b{ display: block; margin-bottom: 4px; font-size: 1rem; }
.value-list span{ font-size: 0.9rem; color: var(--muted); }

/* ---------- Produk: category tabs ---------- */
.tabs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tab{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  transition: all 0.15s ease;
}
.tab.is-active, .tab:hover{
  border-color: var(--orange);
  color: var(--orange-bright);
}

.produk-list{ display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.produk-row{
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--bg-elevated);
}
@media (max-width: 640px){ .produk-row{ grid-template-columns: 1fr; } }
.produk-row__num{ font-family: var(--font-mono); color: var(--muted-2); font-size: 0.85rem; }
.produk-row h3{ margin-bottom: 6px; }
.produk-row p{ font-size: 0.9rem; }
.produk-row__cta{ white-space: nowrap; }

/* ---------- Kontak ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; } }

.contact-cards{ display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.contact-card{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-elevated);
}
.contact-card__icon{ width: 26px; height: 26px; color: var(--orange); flex-shrink: 0; }
.contact-card__icon svg{ width: 100%; height: 100%; }
.contact-card h4{ font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; margin: 0 0 6px; }
.contact-card p{ font-size: 0.88rem; }
.contact-card a{ color: var(--orange-bright); }

.map-frame{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}
.map-frame iframe{ width: 100%; height: 100%; border: 0; }

/* ---------- Perbandingan foto statis (tampilan depan) ---------- */
.compare-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.compare-item{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
@media (max-width: 480px){
  .compare-row{ grid-template-columns: 1fr; }
  .compare-item{ aspect-ratio: 16/10; }
}
.compare-item img{ width: 100%; height: 100%; object-fit: cover; }
.compare-item span{
  position: absolute;
  bottom: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(0,0,0,0.6);
  color: var(--cream);
}
.compare-item--after span{ color: var(--orange-bright); }

/* ---------- Testimoni ---------- */
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 860px){ .testimonial-grid{ grid-template-columns: 1fr; } }

.testimonial-card{
  background: var(--bg-elevated);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-card p{
  color: var(--cream);
  font-size: 0.95rem;
  font-style: italic;
}
.testimonial-card__author{
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__author img{
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.testimonial-card__author b{ display: block; font-size: 0.9rem; }
.testimonial-card__author span{ font-size: 0.78rem; color: var(--muted-2); }

.testimonial-note{
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted-2);
}

/* ==========================================================
   OVERRIDE UNTUK HALAMAN BAWAAN WORDPRESS
   (Blog listing & artikel tunggal — halaman ini dirender oleh
   tema Astra, bukan widget HTML kita, jadi perlu override
   selector umum supaya ikut tema gelap+oranye situs.)
   ========================================================== */

body.blog, body.single, body.archive, body.page,
body.home:not(.elementor-page) {
  background: var(--bg) !important;
  color: var(--cream) !important;
}

.site-header, header.site-header, .ast-primary-header-bar,
.site-footer, footer.site-footer {
  background: var(--bg) !important;
  border-color: var(--line) !important;
}

.site-header a, .main-navigation a, .ast-builder-menu a,
.site-footer a {
  color: var(--cream) !important;
}
.site-header a:hover, .main-navigation a:hover {
  color: var(--orange-bright) !important;
}

body.blog h1, body.blog h2, body.blog h3,
body.single h1, body.single h2, body.single h3,
body.archive h1, body.archive h2, body.archive h3,
.entry-title, .page-title {
  font-family: var(--font-display) !important;
  color: var(--cream) !important;
  text-transform: none !important;
}

.entry-title a { color: var(--cream) !important; }
.entry-title a:hover { color: var(--orange-bright) !important; }

body.blog p, body.single p, body.archive p, body.page p,
.entry-content p, .entry-summary p, .entry-content li {
  color: var(--cream) !important;
}

body.blog strong, body.single strong, body.archive strong,
.entry-content strong, .entry-content b {
  color: var(--orange-bright) !important;
}

body.blog a:not(.btn), body.single a:not(.btn), .entry-content a:not(.btn) {
  color: var(--orange-bright) !important;
  text-decoration: underline;
}

article, .ast-article-post, .entry-header {
  background: transparent !important;
  border-color: var(--line) !important;
}

.entry-meta, .posted-on, .byline, .entry-footer {
  color: var(--muted-2) !important;
}

/* Kartu daftar artikel di halaman Blog listing */
.blog-list{
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto;
}
.blog-card{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--bg-elevated);
  align-items: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.blog-card:hover{ background: var(--bg-elevated-2); }
@media (max-width: 640px){ .blog-card{ grid-template-columns: 1fr; } }
.blog-card__thumb{
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--line);
}
.blog-card__thumb img{ width: 100%; height: 100%; object-fit: cover; }
.blog-card__date{
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}
.blog-card h3{ margin-bottom: 8px; color: var(--cream); }
.blog-card:hover h3{ color: var(--orange-bright); }
.blog-card p{ font-size: 0.92rem; color: var(--muted); margin: 0; }
.blog-empty{
  text-align: center;
  padding: 60px 20px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* ---------- Lightbox (klik gambar untuk preview penuh) ---------- */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(5,4,3,0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.lightbox.is-open{ opacity: 1; pointer-events: auto; }
.lightbox img{
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__close{
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
}

/* ---------- Scroll to top ---------- */
.scroll-top{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #1B0F04;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(244,121,28,0.35);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.scroll-top.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top svg{ width: 20px; height: 20px; }

/* ---------- Produk: filter hidden state ---------- */
.produk-row.is-hidden{ display: none; }

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  .marquee__track{ animation: none; }
}
