/* ============================================================
   MENKO STATIONERY — Page Styles (Modern · Tegas · Premium)
   ============================================================ */

/* ===================== HOME — HERO ===================== */
.hero {
  background: var(--bg); color: var(--ink);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: var(--red); z-index: 3;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr;
  min-height: 600px;
}
.hero-left {
  padding: 92px 64px 92px 0; display: flex; flex-direction: column;
  justify-content: center; position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  font-family: var(--display); font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  padding: 8px 14px; border: 1px solid var(--line);
  border-radius: var(--radius); background: #fff;
}
.hero-eyebrow .sq { width: 7px; height: 7px; background: var(--red); }
.hero h1 {
  color: var(--ink); font-size: clamp(2.6rem, 5.2vw, 4.3rem);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1.04;
  margin: 26px 0 22px;
}
.hero h1 .accent { color: var(--red); }
.hero p.lead {
  font-size: 1.12rem; color: var(--grey-1);
  max-width: 460px; margin-bottom: 36px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 0; margin-top: 56px;
  border-top: 1px solid var(--line);
}
.hero-stat {
  padding: 26px 36px 0 0; margin-right: 36px;
}
.hero-stat:not(:last-child) { border-right: 1px solid var(--line); }
.hero-stat .num {
  font-family: var(--display); font-weight: 700; font-size: 2.1rem; color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-stat .num span { color: var(--red); }
.hero-stat .lbl { font-size: 0.82rem; color: var(--grey-1); font-weight: 450; }

/* hero right — product showcase image slot */
.hero-right {
  position: relative; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-left: 1px solid var(--line);
}
.hero-right::before {
  content: ''; position: absolute; width: 4px;
  top: 28px; bottom: 28px; right: 28px;
  background: var(--red);
}
/*
  SLOT FOTO HERO:
  Ganti .hero-photo isinya dengan <img src="foto-hero.jpg" alt="...">
  Disarankan foto produk Menko, rasio potret atau persegi.
*/
.hero-photo {
  position: relative; z-index: 2; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  color: var(--grey-1); border: none;
}
.photo-ph .ph-icon {
  width: 64px; height: 64px; border: 2px solid var(--grey-1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.photo-ph .ph-icon svg { width: 30px; height: 30px; }
.photo-ph .ph-label {
  font-family: var(--display); font-weight: 500; font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.photo-ph .ph-sub { font-size: 0.76rem; color: var(--char-2); }
.hero-badge {
  position: absolute; z-index: 4; bottom: 32px; left: 32px;
  background: #fff; color: var(--ink); padding: 14px 20px;
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
}
.hero-badge .hb-big {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem; line-height: 1; color: var(--red);
}
.hero-badge .hb-sm { font-size: 0.74rem; letter-spacing: 0.06em; color: var(--grey-1); }

/* ===================== LOGO STRIP ===================== */
.logostrip {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.logostrip-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; gap: 30px; flex-wrap: wrap;
}
.logostrip-label {
  font-family: var(--display); font-weight: 500; font-size: 0.78rem;
  color: var(--grey-2); letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}
.logostrip-items { display: flex; gap: 38px; flex-wrap: wrap; }
.logostrip-items .lsi {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 500; font-size: 0.92rem;
  color: var(--grey-1);
}
.logostrip-items .lsi svg { width: 18px; height: 18px; }

/* ===================== GENERIC SECTION ===================== */
.section { padding: 100px 0; position: relative; }
.section.tight { padding: 76px 0; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .section-intro { margin: 14px auto 0; }
.section-head.row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
}
.section.dark { background: var(--bg-2); }
.section.dark .section-title { color: var(--ink); }
.section.dark .section-intro { color: var(--grey-1); }
.section.grey { background: var(--bg-2); }

/* ---- category grid ---- */
.cat-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.cat-card {
  background: var(--bg); padding: 32px 28px;
  cursor: pointer; transition: background .2s ease;
  position: relative; display: flex; flex-direction: column; min-height: 200px;
}
.cat-card:hover { background: var(--bg-2); }
.cat-num {
  font-family: var(--display); font-weight: 500; font-size: 0.78rem;
  color: var(--grey-3); letter-spacing: 0.05em;
}
.cat-card h3 {
  font-size: 1.16rem; margin: auto 0 6px; font-weight: 600;
  letter-spacing: -0.02em;
}
.cat-card p { font-size: 0.86rem; color: var(--grey-1); }
.cat-arrow {
  position: absolute; top: 30px; right: 28px;
  width: 30px; height: 30px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-2); transition: all .2s ease; border-radius: 3px;
}
.cat-card:hover .cat-arrow { background: var(--red); border-color: var(--red); color: #fff; }

/* ---- feature rows ---- */
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.feat-row + .feat-row { margin-top: 90px; }
.feat-row.flip .feat-visual { order: 2; }
.feat-visual {
  background: var(--bg-2); border: 1px solid var(--line);
  aspect-ratio: 4/3; position: relative; overflow: hidden;
}
.feat-visual img { width: 100%; height: 100%; object-fit: cover; }
.feat-tag {
  position: absolute; top: 20px; left: 20px; background: var(--ink); color: #fff;
  font-family: var(--display); font-weight: 500; font-size: 0.74rem;
  padding: 7px 13px; letter-spacing: 0.04em; z-index: 2; border-radius: 3px;
}
.feat-copy h2 {
  font-size: clamp(1.7rem,3vw,2.4rem); margin: 14px 0 16px;
  font-weight: 600; letter-spacing: -0.03em;
}
.feat-copy p { color: var(--grey-1); margin-bottom: 14px; }
.feat-list { margin: 22px 0 28px; }
.feat-list li {
  display: flex; gap: 13px; padding: 11px 0;
  border-bottom: 1px solid var(--line-2); font-size: 0.97rem;
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li .fi {
  width: 22px; height: 22px; background: var(--ink); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; border-radius: 3px;
}
.feat-list li .fi svg { width: 12px; height: 12px; }

/* ---- stats band ---- */
.stats-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.stat-cell {
  background: var(--bg); padding: 44px 32px; text-align: center;
}
.stat-cell .sc-num {
  font-family: var(--display); font-weight: 700;
  font-size: 3rem; color: var(--ink); letter-spacing: -0.03em; line-height: 1;
}
.stat-cell .sc-num span { color: var(--red); }
.stat-cell .sc-label {
  font-size: 0.86rem; color: var(--grey-1); margin-top: 10px;
}

/* ---- CTA ---- */
.cta-block {
  background: var(--bg); padding: 64px; border: 1px solid var(--line);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: var(--red);
}
.cta-block h2 {
  color: var(--ink); font-size: clamp(1.8rem,3.4vw,2.7rem);
  font-weight: 600; letter-spacing: -0.03em;
}
.cta-block p { color: var(--grey-1); margin-top: 12px; font-size: 1.04rem; }
.cta-block .cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* ===================== PAGE BANNER ===================== */
.page-banner {
  background: var(--bg); color: var(--ink);
  padding: 76px 0 64px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-banner::after {
  content: ''; position: absolute; right: -140px; top: 50%;
  width: 420px; height: 420px; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(225,14,28,0.07), transparent 68%);
}
.page-banner::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--red);
}
.page-banner .crumb {
  font-family: var(--display); font-weight: 500; font-size: 0.82rem;
  color: var(--grey-2); letter-spacing: 0.04em; position: relative; z-index: 2;
}
.page-banner .crumb a:hover { color: var(--red); }
.page-banner h1 {
  color: var(--ink); font-size: clamp(2.2rem,4.8vw,3.6rem);
  font-weight: 600; letter-spacing: -0.035em; margin: 14px 0 14px;
  position: relative; z-index: 2;
}
.page-banner h1 .accent { color: var(--red); }
.page-banner p {
  font-size: 1.06rem; color: var(--grey-1); max-width: 580px;
  position: relative; z-index: 2;
}

/* ===================== PRODUCTS ===================== */
.products-toolbar {
  border-bottom: 1px solid var(--line); background: var(--bg);
  position: sticky; top: 74px; z-index: 50;
}
.products-toolbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 20px; flex-wrap: wrap;
}
.filter-bar { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip {
  font-family: var(--display); font-weight: 500; font-size: 0.86rem;
  padding: 8px 15px; border: 1px solid var(--line);
  cursor: pointer; transition: all .15s ease; color: var(--grey-1);
  background: var(--bg); border-radius: 3px;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.product-count {
  font-family: var(--display); font-weight: 500;
  color: var(--grey-2); font-size: 0.86rem; white-space: nowrap;
}

.product-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.product-card {
  background: var(--bg); display: flex; flex-direction: column;
  transition: background .18s ease; position: relative;
}
.product-card:hover { background: var(--bg-2); }
/*
  SLOT FOTO PRODUK:
  Tiap kartu punya .product-thumb. Untuk pakai foto asli,
  isi dengan <img src="produk/KODE.jpg" alt="nama">.
  Rasio ideal 1:1 (persegi).
*/
.product-thumb {
  aspect-ratio: 1/1; position: relative;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-ph {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; color: var(--grey-3);
}
.thumb-ph svg { width: 38px; height: 38px; }
.thumb-ph .tph-code {
  font-family: var(--display); font-weight: 600; font-size: 0.74rem;
  color: var(--grey-2); letter-spacing: 0.04em;
}
.product-cat-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--display); font-weight: 600; font-size: 0.64rem;
  padding: 5px 9px; background: var(--ink); color: #fff;
  letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px;
}
.product-body {
  padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column;
}
.product-body h3 {
  font-size: 1rem; margin-bottom: 4px; font-weight: 600; letter-spacing: -0.01em;
}
.product-code {
  font-family: var(--display); font-weight: 450; font-size: 0.76rem;
  color: var(--grey-2); margin-bottom: 16px;
}
.product-ask {
  margin-top: auto; font-family: var(--display); font-weight: 600;
  font-size: 0.82rem; color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.product-ask svg { transition: transform .15s ease; }
.product-card:hover .product-ask { color: var(--red); }
.product-card:hover .product-ask svg { transform: translateX(3px); }
.empty-note { text-align: center; color: var(--grey-2); padding: 70px 0; font-size: 1.04rem; }

/* ===================== ABOUT ===================== */
.about-lead {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.about-lead h2 {
  font-size: clamp(1.8rem,3.2vw,2.6rem); margin-bottom: 20px;
  font-weight: 600; letter-spacing: -0.03em;
}
.about-lead p { color: var(--grey-1); margin-bottom: 15px; }
.about-photo {
  background: var(--bg-2); border: 1px solid var(--line);
  aspect-ratio: 1/1; position: relative; overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.value-card {
  background: var(--bg); padding: 38px 32px;
}
.value-card .vc-num {
  font-family: var(--display); font-weight: 700; font-size: 0.86rem;
  color: var(--red); letter-spacing: 0.04em;
}
.value-card h3 {
  font-size: 1.22rem; margin: 16px 0 8px; font-weight: 600; letter-spacing: -0.02em;
}
.value-card p { color: var(--grey-1); font-size: 0.96rem; }

.timeline { max-width: 780px; margin: 0 auto; }
.tl-item {
  display: grid; grid-template-columns: 90px 1fr; gap: 32px;
  padding: 32px 0; border-bottom: 1px solid var(--line);
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  color: var(--red); letter-spacing: -0.01em;
}
.tl-body h3 { font-size: 1.2rem; margin-bottom: 6px; font-weight: 600; }
.tl-body p { color: var(--grey-1); font-size: 0.97rem; }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  border: 1px solid var(--line);
}
.contact-info {
  background: var(--red); color: #fff; padding: 52px 44px;
  position: relative; overflow: hidden;
}
.contact-info::after {
  content: ''; position: absolute; bottom: -120px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 68%);
}
.contact-info h2 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; font-weight: 600; }
.contact-info > p { color: var(--grey-2); margin-bottom: 32px; font-size: 0.96rem; position: relative; z-index: 2; }
.contact-line {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.1);
  position: relative; z-index: 2;
}
.contact-line .ci {
  width: 42px; height: 42px; background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 3px;
}
.contact-line .ci svg { width: 19px; height: 19px; }
.contact-line .ct strong {
  font-family: var(--display); font-weight: 600; display: block; font-size: 0.96rem;
}
.contact-line .ct span { color: var(--grey-2); font-size: 0.9rem; }
.contact-socials { display: flex; gap: 8px; margin-top: 30px; position: relative; z-index: 2; }
.contact-socials a {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s ease; border-radius: 3px;
}
.contact-socials a:hover { background: #fff; border-color: #fff; }
.contact-socials svg { width: 18px; height: 18px; }
.contact-socials a:hover svg { stroke: var(--red); fill: var(--red); }

.form-panel { background: var(--bg); padding: 52px 48px; }
.form-panel h2 { font-size: 1.55rem; margin-bottom: 6px; font-weight: 600; }
.form-panel .fp-sub { color: var(--grey-1); margin-bottom: 30px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--display); font-weight: 500;
  font-size: 0.84rem; margin-bottom: 7px; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 0.96rem;
  padding: 13px 15px; border: 1px solid var(--line);
  background: var(--bg); transition: border-color .15s ease;
  color: var(--ink); border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--grey-2); margin-top: 14px; text-align: center; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink);
  padding: 24px 4px; display: flex; justify-content: space-between;
  align-items: center; gap: 18px; letter-spacing: -0.01em;
}
.faq-q .ico {
  width: 26px; height: 26px; flex-shrink: 0; position: relative;
}
.faq-q .ico::before, .faq-q .ico::after {
  content: ''; position: absolute; background: var(--ink);
  transition: transform .25s ease;
}
.faq-q .ico::before { width: 14px; height: 2px; top: 12px; left: 6px; }
.faq-q .ico::after  { width: 2px; height: 14px; top: 6px; left: 12px; }
.faq-item.open .faq-q .ico::after { transform: scaleY(0); }
.faq-item.open .faq-q .ico::before { background: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 4px 24px; color: var(--grey-1); font-size: 0.97rem; max-width: 680px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { padding: 64px 0; }
  .hero-right { min-height: 380px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .feat-row { grid-template-columns: 1fr; gap: 32px; }
  .feat-row.flip .feat-visual { order: 0; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .cta-block { grid-template-columns: 1fr; padding: 56px 36px; }
  .cta-block .cta-actions { justify-content: flex-start; }
  .about-lead { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 70px 0; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hero-stat { padding: 18px 24px 18px 0; }
  .form-row { grid-template-columns: 1fr; }
  .products-toolbar { position: static; }
}
@media (max-width: 460px) {
  .product-grid, .cat-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .hero-stat:not(:last-child) { border-right: none; }
}

/* ============================================================
   ARTIKEL / BLOG  (gaya JetPens-style content hub)
   ============================================================ */

/* ---- featured article (hero of blog) ---- */
.art-featured {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  border: 1px solid var(--line); margin-bottom: 48px;
}
.art-featured .af-img {
  background: var(--bg-2); aspect-ratio: 16/11; position: relative; overflow: hidden;
}
.art-featured .af-img img { width: 100%; height: 100%; object-fit: cover; }
.art-featured .af-body {
  padding: 44px 48px; display: flex; flex-direction: column; justify-content: center;
}
.art-featured .af-cat {
  font-family: var(--display); font-weight: 600; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--red);
}
.art-featured h2 {
  font-size: clamp(1.5rem,2.6vw,2.1rem); margin: 14px 0 12px;
  letter-spacing: -0.025em; line-height: 1.15;
}
.art-featured p { color: var(--grey-1); margin-bottom: 20px; }
.art-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display); font-size: 0.8rem; color: var(--grey-2);
}
.art-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--grey-3); }

/* ---- article category filter ---- */
.art-cats {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.art-cat-chip {
  font-family: var(--display); font-weight: 500; font-size: 0.88rem;
  padding: 9px 18px; border: 1px solid var(--line); cursor: pointer;
  transition: all .15s ease; color: var(--grey-1); background: var(--bg); border-radius: 3px;
}
.art-cat-chip:hover { border-color: var(--ink); color: var(--ink); }
.art-cat-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- article grid ---- */
.art-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.art-card {
  background: var(--bg); display: flex; flex-direction: column;
  transition: background .18s ease; cursor: pointer;
}
.art-card:hover { background: var(--bg-2); }
.art-card .ac-img {
  aspect-ratio: 16/10; background: var(--bg-3); position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.art-card .ac-img img { width: 100%; height: 100%; object-fit: cover; }
.art-card .ac-img .ph-mini {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--grey-3);
}
.art-card .ac-img .ph-mini svg { width: 34px; height: 34px; }
.art-card .ac-cat {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff;
  font-family: var(--display); font-weight: 600; font-size: 0.64rem;
  padding: 5px 9px; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px;
}
.art-card .ac-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.art-card h3 {
  font-size: 1.12rem; margin-bottom: 8px; line-height: 1.25; letter-spacing: -0.02em;
}
.art-card p { color: var(--grey-1); font-size: 0.92rem; flex: 1; }
.art-card .ac-meta {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  font-family: var(--display); font-size: 0.76rem; color: var(--grey-2);
}

/* ---- single article page ---- */
.article-head { max-width: 760px; margin: 0 auto; text-align: center; }
.article-head .ah-cat {
  font-family: var(--display); font-weight: 600; font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--red);
}
.article-head h1 {
  font-size: clamp(2rem,4vw,3rem); margin: 16px 0 18px;
  letter-spacing: -0.03em; line-height: 1.12;
}
.article-head .ah-meta {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--display); font-size: 0.86rem; color: var(--grey-2);
}
.article-hero-img {
  max-width: 920px; margin: 44px auto 0; aspect-ratio: 16/8;
  background: var(--bg-2); border: 1px solid var(--line); overflow: hidden;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-img .ph-mini {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--grey-3);
}
.article-hero-img .ph-mini svg { width: 48px; height: 48px; }
.article-body {
  max-width: 720px; margin: 0 auto; font-size: 1.08rem; line-height: 1.8; color: var(--char);
}
.article-body h2 {
  font-size: 1.5rem; margin: 38px 0 14px; letter-spacing: -0.02em;
}
.article-body p { margin-bottom: 18px; }
.article-body ul { margin: 0 0 18px 0; padding-left: 4px; }
.article-body ul li {
  position: relative; padding-left: 26px; margin-bottom: 10px;
}
.article-body ul li::before {
  content: ''; position: absolute; left: 4px; top: 11px;
  width: 8px; height: 8px; background: var(--red);
}
.article-body blockquote {
  border-left: 3px solid var(--red); padding: 6px 0 6px 24px;
  margin: 26px 0; font-family: var(--display); font-size: 1.18rem;
  font-weight: 500; color: var(--ink); letter-spacing: -0.01em;
}
.article-share {
  max-width: 720px; margin: 44px auto 0; padding-top: 28px;
  border-top: 1px solid var(--line); display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.article-share span {
  font-family: var(--display); font-weight: 500; font-size: 0.86rem; color: var(--grey-1);
}
.share-btns { display: flex; gap: 8px; }
.share-btns a {
  width: 40px; height: 40px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s ease; border-radius: 3px; color: var(--grey-1);
}
.share-btns a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.share-btns svg { width: 17px; height: 17px; }

/* ---- related / more articles ---- */
.more-articles { margin-top: 80px; }

/* ---- newsletter band ---- */
.news-band {
  background: var(--bg-2); border: 1px solid var(--line);
  padding: 48px 56px; display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 36px; align-items: center;
}
.news-band h2 { font-size: 1.7rem; letter-spacing: -0.025em; margin-bottom: 8px; }
.news-band p { color: var(--grey-1); }
.news-form { display: flex; gap: 10px; }
.news-form input {
  flex: 1; padding: 13px 16px; border: 1px solid var(--line);
  font-family: var(--body); font-size: 0.95rem; border-radius: var(--radius);
}
.news-form input:focus { outline: none; border-color: var(--ink); }

@media (max-width: 980px) {
  .art-featured { grid-template-columns: 1fr; }
  .art-featured .af-img { aspect-ratio: 16/9; }
  .art-featured .af-body { padding: 32px 30px; }
  .art-grid { grid-template-columns: repeat(2,1fr); }
  .news-band { grid-template-columns: 1fr; padding: 36px 30px; }
}
@media (max-width: 640px) {
  .art-grid { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
}
