  :root {
    --gold: #d4af37;
    --gold-light: #f2d472;
    --gold-deep: #b8860b;
    --black: #0a0a0a;
    --panel: #141414;
    --panel-2: #1c1c1c;
    --line: rgba(212, 175, 55, 0.22);
    --text: #f5f2ea;
    --muted: #a29b8c;
    --radius: 18px;
    --maxw: 1160px;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Prompt', system-ui, sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
  .gold-text {
    background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  section { position: relative; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 15px 30px; border-radius: 999px;
    font-weight: 600; font-size: 1.02rem; cursor: pointer;
    border: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: linear-gradient(120deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
    color: #1a1400;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.32);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(212, 175, 55, 0.48); }
  .btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }

  /* ---------- Header ---------- */
  header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(10, 10, 10, 0.72);
    border-bottom: 1px solid var(--line);
  }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
  .brand { display: flex; align-items: center; gap: 13px; font-weight: 800; letter-spacing: .5px; }
  .brand-logo {
    width: 46px; height: 46px; border-radius: 12px; object-fit: cover;
    border: 1px solid var(--line);
  }
  .brand-name { font-size: 1.24rem; }
  .brand-name small { display: block; font-size: .62rem; letter-spacing: 3px; color: var(--muted); font-weight: 500; }
  .nav-links { display: flex; gap: 30px; align-items: center; }
  .nav-links a { color: var(--muted); font-weight: 500; font-size: .96rem; transition: color .2s; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta { display: inline-flex; }
  .burger { display: none; background: none; border: none; color: var(--gold-light); font-size: 1.7rem; cursor: pointer; }

  /* ---------- Hero ---------- */
  .hero {
    padding: 64px 0 58px; position: relative; overflow: hidden;
    background:
      radial-gradient(68% 68% at 72% 44%, rgba(78, 46, 18, 0.5), transparent 62%),
      radial-gradient(90% 80% at 50% 118%, rgba(34, 24, 14, 0.55), transparent 60%),
      linear-gradient(180deg, #100c08 0%, #0b0a09 55%, #0a0a0a 100%);
  }
  .hero::before {   /* mild left darken for text + fade into the page below */
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
      linear-gradient(90deg, rgba(10,10,10,.7) 0%, rgba(10,10,10,.28) 34%, transparent 56%),
      linear-gradient(180deg, transparent 64%, rgba(10,10,10,.98) 100%);
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.02fr .98fr;
    gap: 28px; align-items: center; position: relative; z-index: 1;
  }
  .hero-copy { text-align: left; }
  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 999px;
    border: 1px solid var(--line); background: var(--panel);
    font-size: .9rem; color: var(--gold-light); margin-bottom: 26px; font-weight: 500;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 3.5vw, 3.25rem);
    font-weight: 800; line-height: 1.34; letter-spacing: -.5px;
    margin-bottom: 22px;
  }
  .hero h1 .gold-text { position: relative; white-space: nowrap; }
  .hero h1 .gold-text::after {
    content: ""; position: absolute; left: 0; right: -1%; bottom: -.14em; height: .16em;
    background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%2016'%20preserveAspectRatio='none'%3E%3Cpath%20d='M4%2011%20C%2070%204,%20150%204,%20296%209'%20fill='none'%20stroke='%23e8c765'%20stroke-width='4'%20stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
    opacity: .85;
  }
  .hero p.lead {
    font-size: clamp(1.02rem, 2.4vw, 1.2rem);
    color: var(--muted); max-width: 520px; margin: 0 0 32px;
  }
  .hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
  .hero-copy .hero-cta { justify-content: flex-start; }
  .trust {
    display: flex; flex-wrap: wrap; gap: 0; width: fit-content;
    margin-top: 34px; border-top: 1px solid var(--line); padding-top: 20px;
  }
  .trust .stat { text-align: left; padding: 0 22px; border-right: 1px solid var(--line); }
  .trust .stat:first-child { padding-left: 0; }
  .trust .stat:last-child { border-right: none; }
  .trust .stat b { display: block; font-size: 1.72rem; font-weight: 800; line-height: 1.1; }
  .trust .stat span { font-size: .82rem; color: var(--muted); }

  /* ---------- Hero character stage (poster) ---------- */
  .hero-stage { position: relative; height: 580px; }
  .stage-bg {   /* faint dark seat behind the group */
    position: absolute; inset: -8% -6%; z-index: 0; border: none; border-radius: 50%;
    background: radial-gradient(closest-side at 50% 58%, rgba(8, 8, 8, 0.3), rgba(8, 8, 8, 0.08) 66%, transparent 100%);
    filter: blur(12px);
  }
  /* orange glow behind the team — brightens & dims ("เพิ่ม–ลดแสง") */
  .backlight {
    position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%);
    width: 84%; aspect-ratio: 1 / 1; z-index: 0; pointer-events: none;
    background: radial-gradient(circle,
      rgba(255, 150, 55, 0.6) 0%,
      rgba(255, 115, 35, 0.32) 32%,
      rgba(205, 80, 25, 0.12) 52%,
      transparent 70%);
    filter: blur(28px);
    animation: glowPulse 4s ease-in-out infinite;
  }
  .backlight::after {   /* hotter inner core */
    content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 52%; height: 52%; border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 200, 120, 0.55), transparent 66%);
    filter: blur(20px);
  }
  @keyframes glowPulse {
    0%, 100% { opacity: .56; transform: translate(-50%, -50%) scale(.95); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.07); }
  }
  /* dark contact shadow — plants their feet on the floor */
  .floor-shadow {
    position: absolute; left: 50%; bottom: 46px; transform: translateX(-50%);
    width: 66%; height: 46px; z-index: 0; pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36) 52%, transparent 74%);
    filter: blur(9px);
    animation: shadowBreath 4.6s ease-in-out infinite;
  }
  @keyframes shadowBreath {   /* shadow tightens as the team floats up */
    0%, 100% { transform: translateX(-50%) scaleX(1);   opacity: .9; }
    50%      { transform: translateX(-50%) scaleX(.92); opacity: .72; }
  }

  /* floating icons themed to what each character is doing */
  .orb {
    position: absolute; width: 58px; height: 58px; border-radius: 50%;
    display: grid; place-items: center; font-size: 27px; line-height: 1;
    background: radial-gradient(circle at 32% 28%, rgba(64, 46, 28, 0.96), rgba(26, 19, 13, 0.94));
    border: 1px solid rgba(255, 170, 85, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55), 0 0 22px rgba(255, 140, 55, 0.3);
    pointer-events: none;
    animation: floatOrb 6s ease-in-out infinite, orbGlow 3.4s ease-in-out infinite;
  }
  .o-back { z-index: 0; opacity: .82; width: 48px; height: 48px; font-size: 22px; }
  .orb:not(.o-back) { z-index: 2; }
  .o1 { top: 12%; left: -1%; }
  .o2 { top: 4%;  right: 11%; animation-delay: -1.5s, -.8s; }
  .o3 { top: 42%; right: -3%; animation-delay: -3s, -1.6s; }
  .o4 { bottom: 15%; left: -4%; animation-delay: -2.2s, -2.4s; }
  .o5 { bottom: 30%; right: 2%; animation-delay: -4.4s, -1s; }
  @keyframes floatOrb {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -13px; }
  }
  @keyframes orbGlow {
    0%, 100% { box-shadow: 0 10px 24px rgba(0,0,0,.55), 0 0 16px rgba(255,140,55,.24); }
    50%      { box-shadow: 0 10px 24px rgba(0,0,0,.55), 0 0 30px rgba(255,150,60,.5); }
  }
  @media (prefers-reduced-motion: reduce) {
    .backlight, .floor-shadow, .orb { animation: none; }
  }
  .char-group { position: absolute; inset: 0; z-index: 1; }
  .char {
    position: absolute; bottom: 0; left: 50%;
    filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.6));
    will-change: transform;
    animation: floaty 6s ease-in-out infinite;   /* each char floats on its own timing */
  }
  /* bigger, bolder team — heads bleed above the stage, feet on the spotlight, staggered depth */
  .char-1 { width: 80%;  margin-left: -40%;  bottom: 2%;  z-index: 3; animation-duration: 5.4s; }
  .char-2 { width: 98%;  margin-left: -49%;  bottom: 7%;  z-index: 2; animation-duration: 6.7s; animation-delay: -1.6s; }
  .char-3 { width: 95%;  margin-left: -47.5%; bottom: 12%; z-index: 1; animation-duration: 8.1s; animation-delay: -3.2s; }
  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  @media (prefers-reduced-motion: reduce) { .char { animation: none; } }

  /* ---------- Section heading ---------- */
  .sec { padding: 84px 0; }
  .sec-head { text-align: center; max-width: 620px; margin: 0 auto 54px; }
  .eyebrow { color: var(--gold); font-weight: 600; letter-spacing: 3px; font-size: .82rem; text-transform: uppercase; }
  .sec-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; margin: 12px 0 14px; }
  .sec-head p { color: var(--muted); }

  /* ---------- Features ---------- */
  .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .feature {
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 26px; transition: transform .25s, border-color .25s;
  }
  .feature:hover { transform: translateY(-6px); border-color: var(--gold); }
  .feature .ic { font-size: 2rem; margin-bottom: 14px; }
  .feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
  .feature p { color: var(--muted); font-size: .96rem; }

  /* ---------- Pricing ---------- */
  .pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 900px; margin: 0 auto; }
  .plan {
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 38px 32px; position: relative; overflow: hidden;
  }
  .plan.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow); }
  .plan-tag {
    position: absolute; top: 20px; right: -34px; transform: rotate(45deg);
    background: linear-gradient(120deg, var(--gold-light), var(--gold-deep));
    color: #1a1400; font-size: .72rem; font-weight: 700;
    padding: 5px 44px;
  }
  .plan h3 { font-size: 1.35rem; margin-bottom: 4px; }
  .plan .sub { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
  .price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
  .price-old { color: var(--muted); text-decoration: line-through; font-size: 1.05rem; }
  .price-now { font-size: 2.6rem; font-weight: 800; }
  .price-now small { font-size: 1rem; font-weight: 500; }
  .addon {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(212,175,55,.08); border: 1px dashed var(--line);
    border-radius: 12px; padding: 12px 16px; margin: 18px 0; font-size: .92rem;
  }
  .addon b { color: var(--gold-light); }
  .total { font-size: 1.05rem; margin-bottom: 22px; }
  .total b { font-size: 1.5rem; color: var(--gold-light); }
  .plan ul { list-style: none; margin-bottom: 26px; }
  .plan ul li { padding: 7px 0 7px 30px; position: relative; color: var(--text); font-size: .96rem; }
  .plan ul li::before {
    content: "✓"; position: absolute; left: 0; top: 6px;
    color: #1a1400; background: var(--gold); width: 20px; height: 20px;
    border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 800;
  }
  .plan .btn { width: 100%; justify-content: center; }
  .guarantee {
    text-align: center; margin-top: 34px; color: var(--muted); font-size: .96rem;
  }
  .guarantee b { color: var(--gold-light); }

  /* ---------- Portfolio slider ---------- */
  .slider { position: relative; }
  .track {
    display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; padding: 6px 2px 20px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .track::-webkit-scrollbar { display: none; }
  .slide {
    flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start;
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .25s, border-color .25s, box-shadow .25s;
  }
  .slide:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }
  .slide-img { aspect-ratio: 16 / 10; overflow: hidden; position: relative; background: #111; }
  .slide-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(10,10,10,.5));
  }
  .slide-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .45s ease; }
  .slide:hover .slide-img img { transform: scale(1.06); }
  .slide-info { padding: 17px 20px 20px; display: flex; flex-direction: column; gap: 5px; }
  .slide-info h3 { font-size: 1.06rem; line-height: 1.3; }
  .slide-info p { color: var(--muted); font-size: .88rem; flex: 1; }
  .slide-info .visit { color: var(--gold-light); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
  .slide-info .visit .arrow { transition: transform .2s; }
  .slide:hover .visit .arrow { transform: translate(4px, -4px); }
  .s-nav {
    position: absolute; top: calc((100% - 100px) * 0.34); transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%; z-index: 3;
    background: rgba(18,18,18,.82); border: 1px solid var(--line); color: var(--gold-light);
    font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
    backdrop-filter: blur(6px); transition: background .2s, color .2s, transform .2s, opacity .2s;
  }
  .s-nav:hover { background: var(--gold); color: #1a1400; }
  .s-nav.prev { left: -16px; }
  .s-nav.next { right: -16px; }
  .s-nav[disabled] { opacity: .3; cursor: default; }

  /* ---------- Process ---------- */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
  .step {
    background: var(--panel); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 24px; position: relative;
  }
  .step .num {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(120deg, var(--gold-light), var(--gold-deep));
    color: #1a1400; font-weight: 800; font-size: 1.2rem;
    display: grid; place-items: center; margin-bottom: 16px;
  }
  .step h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .step p { color: var(--muted); font-size: .92rem; }

  /* ---------- FAQ ---------- */
  .faq { max-width: 780px; margin: 0 auto; }
  .qa {
    border: 1px solid var(--line); border-radius: 14px;
    margin-bottom: 14px; background: var(--panel); overflow: hidden;
  }
  .qa summary {
    cursor: pointer; padding: 20px 24px; font-weight: 600;
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .qa summary::-webkit-details-marker { display: none; }
  .qa summary .plus { color: var(--gold); font-size: 1.4rem; transition: transform .2s; flex-shrink: 0; }
  .qa[open] summary .plus { transform: rotate(45deg); }
  .qa .ans { padding: 0 24px 22px; color: var(--muted); }

  /* ---------- CTA ---------- */
  .cta-final {
    text-align: center; padding: 80px 0;
    background: radial-gradient(70% 100% at 50% 0%, rgba(212,175,55,.14), transparent 70%);
  }
  .cta-final h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
  .cta-final p { color: var(--muted); max-width: 560px; margin: 0 auto 32px; }
  .cta-final .hero-cta { margin-top: 6px; }

  /* ---------- Footer ---------- */
  footer { border-top: 1px solid var(--line); padding: 46px 0 34px; }
  .foot-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .foot-brand { display: flex; align-items: center; gap: 12px; }
  .foot-brand img { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); }
  .foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
  .foot-links a { color: var(--muted); font-size: .92rem; }
  .foot-links a:hover { color: var(--gold-light); }
  .copy { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.05); }

  /* ---------- Floating contact ---------- */
  .float-line {
    position: fixed; right: 22px; bottom: 22px; z-index: 60;
    background: linear-gradient(120deg, var(--gold-light), var(--gold-deep));
    color: #1a1400; padding: 14px 24px; border-radius: 999px;
    font-weight: 700; box-shadow: 0 14px 34px rgba(212,175,55,.42);
    display: inline-flex; align-items: center; gap: 9px;
    transition: transform .2s;
  }
  .float-line:hover { transform: translateY(-4px) scale(1.03); }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .features { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .slide { flex-basis: calc((100% - 22px) / 2); }
  }
  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 8px; }
    .hero-copy { text-align: center; order: 1; }
    .hero-copy .hero-cta, .hero-copy .trust { justify-content: center; }
    .hero-copy .trust { margin-left: auto; margin-right: auto; }
    .hero-copy .lead { margin-left: auto; margin-right: auto; }
    .hero-copy .trust .stat { text-align: center; }
    .hero-stage { order: 2; height: 440px; margin-top: 22px; }
    .hero h1 { font-size: clamp(2rem, 6.4vw, 2.9rem); }
    .hero p.lead { font-size: 1.06rem; max-width: 560px; }
    .hero::before { background: radial-gradient(60% 45% at 50% 62%, rgba(212,175,55,.16), transparent 68%); }
  }
  @media (max-width: 720px) {
    .nav-links { display: none; }
    .burger { display: block; }
    .nav-links.open {
      display: flex; flex-direction: column; position: absolute;
      top: 74px; left: 0; right: 0; background: var(--panel);
      padding: 22px; border-bottom: 1px solid var(--line); gap: 18px;
    }
    .nav-links.open .nav-cta { display: none; }
    .pricing { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .features, .steps { grid-template-columns: 1fr; }
    .slide { flex-basis: 85%; }
    .s-nav { display: none; }
    .trust { gap: 24px; }
    .sec { padding: 60px 0; }
  }

  /* ============ Multi-page additions ============ */
  /* active nav item */
  .nav-links a.active { color: var(--gold-light); }
  .foot-links a.active { color: var(--gold-light); }

  /* slim page header for inner pages */
  .page-hero {
    position: relative; text-align: center; padding: 68px 0 34px; overflow: hidden;
    background:
      radial-gradient(62% 100% at 50% 0%, rgba(78,46,18,.42), transparent 62%),
      linear-gradient(180deg, #100c08 0%, #0a0a0a 100%);
  }
  .page-hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line);
  }
  .page-hero .badge { margin-bottom: 18px; }
  .page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.5px; }
  .page-hero p { color: var(--muted); max-width: 620px; margin: 12px auto 0; }

  /* category filter bar */
  .cat-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; }
  .cat-btn {
    padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
    background: var(--panel); color: var(--muted); font-family: inherit; font-size: .92rem;
    font-weight: 500; cursor: pointer; transition: color .2s, border-color .2s, background .2s;
  }
  .cat-btn:hover { color: var(--gold-light); border-color: var(--gold); }
  .cat-btn.active {
    background: linear-gradient(120deg, var(--gold-light), var(--gold-deep));
    color: #1a1400; border-color: transparent; font-weight: 600;
  }
  .cat-count { text-align: center; color: var(--muted); font-size: .9rem; margin-bottom: 30px; }

  /* portfolio grid (cards) */
  .pf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
  .pf-card {
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .25s, border-color .25s, box-shadow .25s;
  }
  .pf-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }
  .pf-card:hover .slide-img img { transform: scale(1.06); }
  .pf-card:hover .visit .arrow { transform: translate(4px, -4px); }
  .pf-card.hide { display: none; }
  .cat-tag {
    display: inline-block; align-self: flex-start; font-size: .72rem; color: var(--gold-light);
    background: rgba(212,175,55,.1); border: 1px solid var(--line);
    padding: 2px 10px; border-radius: 999px; margin-bottom: 8px;
  }
