/* ═══════════════════════════════════════════════════════
   AIDARIUS — Shared Design System
   Stack: Syne (display) + Inter (body)
   Palette: Cream #F8F5F0 | Yellow #fdb128 | Dark #1A1A1A
   ═══════════════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --cream:   #F8F5F0;
  --cream-1: #F2EDE5;
  --cream-2: #E9E2D8;
  --white:   #FFFFFF;
  --dark:    #1A1A1A;
  --dark-2:  #2C2C2C;
  --dark-bg: #111111;

  --yellow:  #fdb128;
  --yellow-h:#e8a020;
  --yellow-s:rgba(253,177,40,0.10);
  --yellow-b:rgba(253,177,40,0.22);
  --yellow-g:rgba(253,177,40,0.30);

  --t1: #1A1A1A;
  --t2: #6A6560;
  --t3: #A09B96;
  --t4: rgba(26,26,26,0.06);
  --t5: rgba(26,26,26,0.04);

  --border:  rgba(26,26,26,0.09);
  --border2: rgba(26,26,26,0.15);

  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  30px;
  --r-2xl: 44px;
  --r-pill:100px;

  --font-d: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:   cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font); background: var(--cream); color: var(--t1); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── Utilities ─── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.wrap     { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }
.wrap-nav { width: min(1240px, 100% - 2rem); margin-inline: auto; }
.wrap-sm  { width: min(760px, 100% - 2.5rem); margin-inline: auto; }

.section { padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.section--alt { background: var(--cream-1); border-block: 1px solid var(--border); }
.section--dark { background: var(--dark-bg); border-block: 1px solid rgba(255,255,255,0.06); }

.eyebrow {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-h);
  margin-bottom: 0.85rem;
}

.h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.h2--white { color: var(--white); }

.lead {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  color: var(--t2);
  line-height: 1.72;
  max-width: 56ch;
  margin-top: 1rem;
}

.lead--wide { max-width: 64ch; }

/* ─── Badges / chips ─── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t2);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.85rem;
}
.chip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
.chip--yellow { color: var(--yellow); background: var(--yellow-s); border-color: var(--yellow-b); }
.chip--dark { color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-s);
  border: 1px solid var(--yellow-b);
  border-radius: var(--r-pill);
  padding: 0.2rem 0.6rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r-pill);
  padding: 0.72rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform 0.2s var(--ease); }

.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--dark-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn--yellow { background: var(--yellow); color: var(--dark); }
.btn--yellow:hover { background: var(--yellow-h); transform: translateY(-1px); box-shadow: 0 6px 20px var(--yellow-g); }

.btn--outline { background: var(--white); color: var(--dark); border: 1px solid var(--border2); }
.btn--outline:hover { background: var(--t4); }

.btn--outline-dark { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }
.btn--outline-dark:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

.btn--text { background: none; color: var(--t2); padding-inline: 0; font-weight: 500; }
.btn--text:hover { color: var(--dark); }
.btn--text:hover svg { transform: translateX(4px); }

.btn--text-yellow { background: none; color: var(--yellow-h); padding-inline: 0; font-weight: 600; }
.btn--text-yellow:hover { color: var(--yellow); }
.btn--text-yellow:hover svg { transform: translateX(4px); }

/* ─── Arrow icon helper ─── */
.arrow {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  padding-block: 1rem;
  transition: padding 0.3s var(--ease);
}

.nav.scrolled {
  padding-block: 0.5rem;
  background: rgba(248,245,240,0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 34px; height: 34px;
  background: var(--dark);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-d);
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* Pill nav */
.nav__pill {
  display: flex;
  align-items: center;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.3rem;
  gap: 0.1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.nav__pill > li { position: relative; }

.nav__pill > li > a,
.nav__pill > li > button {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--t2);
  padding: 0.42rem 1rem;
  border-radius: var(--r-pill);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.16s var(--ease), background 0.16s var(--ease);
}
.nav__pill > li > a:hover,
.nav__pill > li > button:hover { color: var(--dark); }
.nav__pill > li > a.active { background: var(--dark); color: var(--white); }

/* Dropdown arrow */
.dd-arrow { width: 10px; height: 10px; transition: transform 0.2s var(--ease); }
.nav__pill > li.open > button .dd-arrow { transform: rotate(180deg); }

/* Dropdown panel */
.nav__dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 250px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0.4rem;
  box-shadow: 0 8px 36px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease);
}
.nav__pill > li.open .nav__dd {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dd a {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.82rem; color: var(--t2);
  transition: background 0.14s, color 0.14s;
}
.nav__dd a:hover { background: var(--t5); color: var(--dark); }
.nav__dd .di { width: 30px; height: 30px; background: var(--t5); border: 1px solid var(--border); border-radius: var(--r-xs); display: grid; place-items: center; flex-shrink: 0; }
.nav__dd .di svg { width: 14px; height: 14px; color: var(--t2); }
.nav__dd .dt { display: block; font-weight: 600; color: var(--dark); font-size: 0.82rem; }
.nav__dd .ds { display: block; font-size: 0.73rem; color: var(--t3); margin-top: 0.07rem; line-height: 1.4; }

/* CTA button in nav */
.nav__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--r-pill);
  padding: 0.5rem 1.1rem;
  transition: background 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.nav__cta:hover { background: var(--yellow-h); box-shadow: 0 4px 14px var(--yellow-g); }

/* Hamburger */
.nav__ham {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__ham span { display: block; width: 20px; height: 1.5px; background: var(--dark); border-radius: 2px; transition: all 0.2s var(--ease); }
.nav__ham.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav__ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__ham.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile drawer */
.nav__drawer {
  display: none; flex-direction: column;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem; right: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0.75rem;
  gap: 0.15rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-size: 0.88rem; font-weight: 500; color: var(--t2);
  padding: 0.6rem 0.85rem; border-radius: var(--r-sm);
  transition: background 0.14s, color 0.14s;
}
.nav__drawer a:hover, .nav__drawer a.active { background: var(--t5); color: var(--dark); }
.nav__drawer a.active { font-weight: 600; }
.nav__drawer .drawer-cta {
  margin-top: 0.5rem; background: var(--yellow);
  color: var(--dark); font-weight: 600; text-align: center;
  border-radius: var(--r-pill); padding: 0.7rem 1rem;
}
.nav__drawer .drawer-cta:hover { background: var(--yellow-h); }

/* "Soon" badge inside nav links */
.nav__coming {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow-h);
  background: var(--yellow-s);
  border: 1px solid var(--yellow-b);
  border-radius: var(--r-pill);
  padding: 0.1rem 0.4rem;
  margin-left: 0.25rem;
  vertical-align: middle;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .nav__pill { display: none; }
  .nav__cta  { display: none; }
  .nav__ham  { display: flex; }
}

/* ═══════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════ */
.trust-bar {
  border-block: 1px solid var(--border);
  background: var(--cream-1);
  padding-block: 2rem;
}
.trust-bar__label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--t3);
  text-align: center; margin-bottom: 1.25rem;
}
.trust-bar__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; }
.trust-logo {
  font-size: 0.78rem; font-weight: 600; color: var(--t3);
  padding: 0.28rem 0.85rem;
  border: 1px solid var(--border); border-radius: var(--r-pill);
  background: var(--white);
  transition: color 0.14s, border-color 0.14s;
}
.trust-logo:hover { color: var(--t2); border-color: var(--border2); }

/* ═══════════════════════════════════════════════
   CARD COMPONENTS
   ═══════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }

.card--dark { background: var(--dark-bg); border-color: rgba(255,255,255,0.06); }

.card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--yellow-s);
  border: 1px solid var(--yellow-b);
  display: grid; place-items: center;
  font-size: 1.2rem; margin-bottom: 1rem;
}

.card__title {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.card--dark .card__title { color: var(--white); }

.card__desc {
  font-size: 0.88rem;
  color: var(--t2);
  line-height: 1.65;
}

.card--dark .card__desc { color: rgba(255,255,255,0.45); }

/* Feature list */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-top: 1rem; }
.feat-list li { font-size: 0.84rem; color: var(--t2); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.feat-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; margin-top: 0.52em; }
.card--dark .feat-list li { color: rgba(255,255,255,0.45); }

/* Service card icon SVGs */
.s-card__icon svg { width: 22px; height: 22px; color: var(--yellow-h); }
.s-card--featured .s-card__icon svg { color: var(--yellow); }

/* Float button icon SVGs */
.float__icon { display: grid; place-items: center; }
.float__icon svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.75rem; }
.tag { font-size: 0.72rem; font-weight: 500; color: var(--t2); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 0.18rem 0.65rem; background: var(--t5); }

/* Metric card */
.metric {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  display: flex; align-items: center; gap: 1.5rem;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.metric:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-2px); }
.metric__n { font-family: var(--font-d); font-size: 2.6rem; font-weight: 700; color: var(--yellow-h); line-height: 1; letter-spacing: -0.03em; white-space: nowrap; flex-shrink: 0; }
.metric__title { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.metric__desc  { font-size: 0.78rem; color: var(--t3); margin-top: 0.15rem; line-height: 1.45; }

/* Pillar card */
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.pillar:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.06); transform: translateY(-2px); }
.pillar__icon { width: 38px; height: 38px; background: var(--yellow-s); border: 1px solid var(--yellow-b); border-radius: var(--r-sm); display: grid; place-items: center; margin-bottom: 0.75rem; }
.pillar__icon svg { width: 18px; height: 18px; color: var(--yellow-h); }
.pillar__title { font-size: 0.92rem; font-weight: 600; color: var(--dark); margin-bottom: 0.3rem; }
.pillar__text  { font-size: 0.8rem; color: var(--t2); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__main {
  padding-block: 4rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.65rem; }
.footer__brand-mark { width: 28px; height: 28px; background: var(--yellow); border-radius: 6px; display: grid; place-items: center; font-family: var(--font-d); font-size: 0.55rem; font-weight: 800; color: var(--dark); }
.footer__brand-name { font-family: var(--font-d); font-size: 0.95rem; font-weight: 800; color: var(--white); }

.footer__tagline { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 24ch; margin-bottom: 1.5rem; }

.footer__socials { display: flex; gap: 0.5rem; }
.footer__soc { width: 32px; height: 32px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-xs); display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.3); transition: all 0.18s var(--ease); }
.footer__soc:hover { color: var(--yellow); border-color: rgba(253,177,40,0.3); background: rgba(253,177,40,0.08); }

.footer__col-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 1rem; }

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a { font-size: 0.84rem; color: rgba(255,255,255,0.42); transition: color 0.14s; }
.footer__links a:hover { color: rgba(255,255,255,0.8); }
.footer__links .coming { font-size: 0.7rem; font-weight: 600; color: var(--yellow); background: var(--yellow-s); border-radius: var(--r-pill); padding: 0.1rem 0.45rem; margin-left: 0.3rem; vertical-align: middle; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(255,255,255,0.22);
  flex-wrap: wrap; gap: 0.5rem;
}

.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a { color: rgba(255,255,255,0.22); transition: color 0.14s; }
.footer__legal a:hover { color: rgba(255,255,255,0.5); }

@media (max-width: 1024px) { .footer__main { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px) { .footer__main { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer__bottom { flex-direction: column; align-items: flex-start; } }
@media (max-width: 400px) { .footer__main { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   FLOATING CONTACT BUTTONS
   ═══════════════════════════════════════════════ */
.float { position: fixed; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; z-index: 150; }
.float__btn { display: flex; align-items: center; gap: 0.5rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 0.55rem; font-size: 0.78rem; font-weight: 600; color: var(--t2); cursor: pointer; transition: all 0.22s var(--ease); box-shadow: 0 4px 16px rgba(0,0,0,0.10); max-width: 2.4rem; overflow: hidden; }
.float__btn:hover { max-width: 180px; color: var(--dark); border-color: var(--border2); padding-right: 1rem; }
.float__icon { flex-shrink: 0; font-size: 1rem; }
.float__label { white-space: nowrap; opacity: 0; transition: opacity 0.18s var(--ease); }
.float__btn:hover .float__label { opacity: 1; }
@media (max-width: 640px) {
  .float { bottom: 1rem; right: 1rem; gap: 0.4rem; }
  .float__btn { padding: 0.5rem; }
  /* Labels stay hidden on touch — only icon shows */
  .float__label { display: none; }
  .float__btn:hover { max-width: 2.4rem; padding-right: 0.5rem; }
}

/* ═══════════════════════════════════════════════
   PAGE HERO (reusable)
   ═══════════════════════════════════════════════ */
.page-hero {
  padding-top: clamp(7rem, 14vh, 9rem);
  padding-bottom: clamp(3.5rem, 6vh, 5rem);
  border-bottom: 1px solid var(--border);
}

.page-hero--alt { background: var(--cream-1); }

.page-hero--dark {
  background: var(--dark-bg);
  border-color: rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════
   SCROLL FADE IN
   ═══════════════════════════════════════════════ */
.fade { opacity: 0; transform: translateY(22px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.fade.visible { opacity: 1; transform: translateY(0); }
.fade--d1 { transition-delay: 0.07s; }
.fade--d2 { transition-delay: 0.14s; }
.fade--d3 { transition-delay: 0.21s; }

/* ═══════════════════════════════════════════════
   ARTICLE SLIDER
   ═══════════════════════════════════════════════ */
[data-slider] { position: relative; }

[data-slider-track] {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

[data-slider-track] > * {
  flex: 0 0 calc(33.333% - 0.84rem);
  min-width: 0;
}

@media (max-width: 900px) {
  [data-slider-track] > * { flex: 0 0 calc(50% - 0.63rem); }
}
@media (max-width: 560px) {
  [data-slider-track] > * { flex: 0 0 100%; }
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.slider-btn:hover:not(:disabled) { background: var(--dark); color: var(--white); border-color: var(--dark); }
.slider-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.slider-btn svg { width: 16px; height: 16px; }

.slider-dots { display: flex; gap: 0.4rem; align-items: center; flex: 1; }

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border2);
  cursor: pointer;
  padding: 0;
  transition: all 0.22s var(--ease);
}
.slider-dot.active { background: var(--dark); width: 20px; border-radius: 4px; }

/* Article card */
.art-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
  height: 100%;
  position: relative;
  cursor: pointer;
}
.art-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }

/* Stretched link — entire card is clickable */
.art-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.art-card__cat,
.art-card__body { position: relative; z-index: 2; }

.art-card__thumb {
  aspect-ratio: 16/9;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
}

.art-card__thumb-ph {
  font-size: 2rem;
  opacity: 0.5;
}

.art-card__cat {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
}

.art-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.art-card__date { font-size: 0.7rem; color: var(--t3); font-weight: 500; }

.art-card__title {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.32;
}

.art-card__excerpt { font-size: 0.82rem; color: var(--t2); line-height: 1.62; flex: 1; }

.art-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow-h);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
  transition: color 0.16s var(--ease);
}
.art-card__link:hover { color: var(--yellow); }
.art-card__link svg { width: 12px; height: 12px; transition: transform 0.16s var(--ease); }
.art-card__link:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════
   SHARED NAV/FOOTER JS HELPERS
   ═══════════════════════════════════════════════ */
/* (JS included inline in each page) */
