:root {
  --bg: #0a0a0a;
  --bg2: #14110d;
  --ink: #f2ede0;
  --dim: #9a9082;
  --gold: #d4a04a;
  --hot: #e85a3c;
  --green: #4ca36b;
  --border: rgba(242, 237, 224, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, "Segoe UI", Roboto, system-ui, sans-serif;
  line-height: 1.55;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--ink); }

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

/* ===== nav ===== */
.topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700; font-size: 22px; letter-spacing: -0.5px;
  color: var(--ink);
}
.brand .dot { color: var(--gold); }
.brand .sub {
  display: block; font-family: inherit; font-weight: 400;
  font-size: 9px; letter-spacing: 2px; color: var(--dim);
  text-transform: uppercase; margin-top: -4px;
}
.nav-links { display: flex; gap: 22px; font-size: 13px; }
.nav-links a { color: var(--dim); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--gold); color: #0a0a0a !important; padding: 6px 14px;
  border-radius: 4px; font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: 1px;
}
.nav-cta:hover, .nav-cta:focus { background: var(--ink); color: #0a0a0a !important; outline: none; }

/* ===== hero photo wall ===== */
.hero {
  position: relative; min-height: 660px; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.wall {
  position: absolute; left: 0; right: 0; top: 0; height: 540px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 180px 180px 180px;
  gap: 0;
}
.wall img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.5) saturate(0.9);
}
.wall img:nth-child(odd) { transform: scale(1.03); }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.8) 70%, rgba(10,10,10,0.95) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,0) 50%, rgba(10,10,10,0.92) 80%, rgba(10,10,10,1) 100%);
  pointer-events: none;
}
.hero-body {
  position: relative; z-index: 2;
  padding: 50px 24px 70px;
  max-width: 880px; margin: 0 auto;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 11px; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 18px;
  padding: 6px 14px; border: 1px solid var(--gold);
}
.hero h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 700; line-height: 1.02;
  margin: 0 0 40px; letter-spacing: -1.5px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero .lead {
  font-size: 18px; color: var(--dim); max-width: 680px; margin: 0 auto 36px;
  text-wrap: balance;
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 12px 24px; border-radius: 4px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn.gold { background: var(--gold); color: #0a0a0a; }
.btn.gold:hover { background: var(--ink); color: #0a0a0a; }
.btn.ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #0a0a0a; }

/* ===== sections ===== */
section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.section-head h2 {
  font-family: "Georgia", serif; font-size: 38px; font-weight: 700;
  letter-spacing: -1px; margin: 0;
}
.section-head h2 em { color: var(--gold); font-style: italic; }
.section-head .desc { color: var(--dim); font-size: 14px; max-width: 380px; }

/* ===== category chips ===== */
.chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.chip {
  padding: 6px 14px; border: 1px solid var(--border);
  border-radius: 20px; font-size: 12px; color: var(--dim);
  cursor: pointer;
  transition: all 0.2s;
}
.chip.active, .chip:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }

/* ===== review grid (legacy single-page use) ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ===== pipeline scroller — 2 rows, horizontal scroll ===== */
.scroller-wrap {
  position: relative;
}
.scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroller::-webkit-scrollbar { display: none; width: 0; height: 0; }
.scroller .card { flex: 0 0 280px; }
.scroller .card { scroll-snap-align: start; }
.scroller-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--gold); color: #0a0a0a;
  border: none; border-radius: 50%;
  cursor: pointer; font-size: 22px; font-weight: 700;
  z-index: 5;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  transition: transform 0.15s, background 0.15s;
}
.scroller-arrow:hover { background: var(--ink); transform: translateY(-50%) scale(1.06); }
.scroller-arrow.left { left: -22px; }
.scroller-arrow.right { right: -22px; }

/* status pills */
.status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px;
  margin-bottom: 10px;
}
.status::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}
.status.awaiting { background: rgba(212, 160, 74, 0.12); color: var(--gold); }
.status.confirmed { background: rgba(76, 163, 107, 0.15); color: var(--green); }
.status.soon { background: rgba(154, 144, 130, 0.12); color: var(--dim); }
.card .pipeline-note {
  color: var(--dim); font-size: 12px; line-height: 1.5;
}
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-2px); border-color: var(--gold); }
.card .thumb {
  aspect-ratio: 1 / 1; overflow: hidden; position: relative;
  background: #1a1a1a;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .meta {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.tag {
  background: rgba(10, 10, 10, 0.75);
  color: var(--ink); font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 8px; border-radius: 3px;
}
.tag.hot { background: var(--hot); }
.tag.gold { background: var(--gold); color: #0a0a0a; }
.card .flag {
  position: absolute; top: 10px; right: 10px;
  background: rgba(10, 10, 10, 0.75); color: var(--ink);
  font-size: 18px; padding: 4px 8px; border-radius: 3px;
}
.card .body { padding: 18px; }
.card h3 {
  font-family: "Georgia", serif; font-size: 19px;
  margin: 0 0 6px; letter-spacing: -0.3px;
}
.card .where { font-size: 11px; color: var(--dim); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.card .stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.card .stars .empty { color: var(--border); }
.card .take { color: var(--dim); font-size: 13px; line-height: 1.5; }
.card .byline { margin-top: 12px; font-size: 11px; color: var(--dim); letter-spacing: 0.5px; }

/* ===== alf feature ===== */
.feature {
  background: linear-gradient(135deg, #1a1410, #0f0d0a);
  border: 1px solid var(--gold);
  border-radius: 8px; padding: 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: center;
}
.feature .yt-card {
  display: block;
  aspect-ratio: 16 / 9; position: relative;
  background: linear-gradient(135deg, #1a0e0e 0%, #0a0a0a 100%);
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s;
}
.feature .yt-card:hover { border-color: #ff0033; }
.feature .yt-card .yt-bg {
  position: absolute; inset: 0;
  background-image: url('/images/snacks/buldak-ramen.jpg'), url('/images/snacks/royce-nama.jpg'), url('/images/snacks/tom-yum-lays.jpg');
  background-size: 33.4% 100%, 33.4% 100%, 33.4% 100%;
  background-position: 0 0, 50% 0, 100% 0;
  background-repeat: no-repeat;
  filter: brightness(0.4) saturate(0.85);
}
.feature .yt-card .yt-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}
.feature .yt-card .yt-play {
  width: 72px; height: 50px;
  background: #ff0033;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(255, 0, 51, 0.4);
}
.feature .yt-card .yt-play::before {
  content: ""; display: block;
  width: 0; height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.feature .yt-card .yt-title {
  color: var(--ink); font-weight: 700; font-size: 17px;
  margin-bottom: 4px;
}
.feature .yt-card .yt-sub {
  color: var(--dim); font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase;
}
.feature h3 {
  font-family: "Georgia", serif; font-size: 30px;
  margin: 0 0 12px; letter-spacing: -0.5px;
}
.feature h3 em { color: var(--gold); font-style: italic; }
.feature .quote {
  font-size: 16px; color: var(--ink); line-height: 1.6;
  margin: 0 0 18px; font-style: italic;
  border-left: 3px solid var(--gold); padding-left: 16px;
}
.feature .author {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--dim);
}
.feature .author .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: #0a0a0a;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}

/* ===== track record ===== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.proof-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 20px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.proof-card:hover { border-color: #ff0033; transform: translateY(-2px); }
.proof-card .views {
  font-family: "Georgia", serif;
  font-size: 38px; font-weight: 700;
  color: var(--gold); letter-spacing: -1px;
  line-height: 1;
}
.proof-card .views-lbl {
  font-size: 10px; letter-spacing: 2px; color: var(--dim);
  text-transform: uppercase; margin: 4px 0 14px;
}
.proof-card .video-title {
  color: var(--ink); font-size: 13px; line-height: 1.45;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  min-height: 56px;
}
.proof-card .video-watch {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: #ff0033;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.proof-card .video-watch::before {
  content: ""; width: 0; height: 0;
  border-left: 8px solid #ff0033;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.proof-footnote {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--dim); font-size: 12px; line-height: 1.6;
  text-align: center;
}

/* ===== outreach band ===== */
.outreach {
  background: linear-gradient(135deg, #14110d 0%, #0a0a0a 100%);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  text-align: center;
}
.outreach h2 { font-family: "Georgia", serif; font-size: 36px; margin: 0 0 16px; }
.outreach p { color: var(--dim); max-width: 640px; margin: 0 auto 24px; font-size: 15px; }
.outreach .stats {
  display: flex; gap: 40px; justify-content: center; margin: 30px 0;
  flex-wrap: wrap;
}
.outreach .stat .num {
  font-family: "Georgia", serif; font-size: 38px; color: var(--gold);
  font-weight: 700; letter-spacing: -1px;
}
.outreach .stat .lbl {
  font-size: 11px; letter-spacing: 2px; color: var(--dim);
  text-transform: uppercase; margin-top: 4px;
}

/* ===== footer ===== */
footer {
  padding: 50px 0 30px; color: var(--dim); font-size: 13px;
  border-top: 1px solid var(--border);
}
footer .foot-row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 30px;
}
footer h4 { font-family: "Georgia", serif; color: var(--ink); font-size: 14px; margin: 0 0 12px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 6px; }
footer .legal {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 11px; color: var(--dim);
}

/* ===== concept-preview disclosure ===== */
.concept-badge {
  position: fixed;
  top: 76px; right: 18px;
  z-index: 60;
  width: 180px;
  user-select: none;
}
.concept-badge .pill {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(20, 17, 13, 0.92);
  border: 1px solid var(--gold);
  border-radius: 20px;
  color: var(--gold);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  transition: background 0.15s;
}
.concept-badge .pill:hover { background: rgba(20, 17, 13, 1); }
.concept-badge .pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.concept-badge .panel {
  margin-top: 8px;
  padding: 14px;
  background: rgba(20, 17, 13, 0.96);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--dim);
  font-size: 12px; line-height: 1.55;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  display: none;
  backdrop-filter: blur(8px);
}
.concept-badge.open .panel { display: block; }
.concept-badge .panel strong { color: var(--ink); }

/* ===== responsive ===== */
@media (max-width: 760px) {
  .wall { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; }
  .feature { grid-template-columns: 1fr; padding: 24px; }
  footer .foot-row { grid-template-columns: 1fr 1fr; }
  .section-head h2 { font-size: 30px; }
}
