/* ══════════════════════════════════════════════════
   McDoCoffeeMenu.com — Global Stylesheet
   McDonald's Brand Colors:
   Red:    #DA291C
   Yellow: #FFC72C
   Dark:   #1A1A1A
══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── CSS Variables ───────────────────────────────── */
:root {
  --mc-red:     #DA291C;
  --mc-red-dk:  #b5200f;
  --mc-yellow:  #FFC72C;
  --mc-yellow-dk:#f5a800;
  --mc-dark:    #1A1A1A;
  --mc-gray:    #F5F5F5;
  --mc-border:  #e8e8e8;
  --radius-card:16px;
  --radius-pill:999px;
  --shadow-card:0 4px 24px rgba(0,0,0,.09);
  --shadow-lift:0 12px 40px rgba(218,41,28,.18);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: #fff;
  color: var(--mc-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ──────────────────────────────────── */
.font-display { font-family: 'Bebas Neue', Impact, sans-serif; letter-spacing: .04em; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--mc-red);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 12px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--mc-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--mc-red);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.logo:hover .logo-icon { transform: scale(1.08); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--mc-yellow);
  letter-spacing: .05em;
}
.logo-text span:last-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
}

/* ── Desktop Nav ────────────────────────────────── */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1100px) { .desktop-nav { display: flex; } }

.desktop-nav > a,
.nav-dropdown > .nav-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}
.desktop-nav > a:hover,
.nav-dropdown > .nav-btn:hover,
.desktop-nav > a.active,
.nav-dropdown.active > .nav-btn {
  background: var(--mc-yellow);
  color: var(--mc-red);
}

/* ── Dropdown ───────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown .nav-btn svg { width: 14px; height: 14px; transition: transform var(--transition); flex-shrink: 0; }
.nav-dropdown.open .nav-btn svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 200;
  border: 1px solid rgba(0,0,0,.06);
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mc-dark);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: #fff5f5; color: var(--mc-red); }
.dropdown-menu .drop-icon { font-size: 16px; flex-shrink: 0; }
.dropdown-menu .drop-price { margin-left: auto; font-size: 11px; color: #aaa; font-weight: 600; }
.dropdown-divider { height: 1px; background: var(--mc-border); margin: 6px 4px; }

/* ── Header Right Controls ────────────────────── */
.header-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; margin-left: auto; }
.icon-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.icon-btn:hover { background: var(--mc-yellow); color: var(--mc-red); }
.icon-btn svg { width: 18px; height: 18px; }

/* ── Search Bar ──────────────────────────────── */
.search-wrap {
  background: var(--mc-red);
  overflow: visible;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
  /* overflow:visible so dropdown results are not clipped */
}
.search-wrap.open { max-height: 72px; padding-bottom: 12px; }
/* hide content when closed without clipping results when open */
.search-wrap:not(.open) { overflow: hidden; }
.search-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.search-box {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.search-box input {
  width: 100%;
  padding: 11px 48px 11px 20px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: var(--mc-dark);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  outline: none;
}
.search-box input:focus { box-shadow: 0 0 0 3px var(--mc-yellow), 0 4px 20px rgba(0,0,0,.15); }
.search-box svg {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--mc-red);
}
.search-results {
  position: fixed;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100vw - 40px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.22);
  border: 1px solid rgba(0,0,0,.07);
  z-index: 9999;
  max-height: 360px;
  overflow-y: auto;
  display: none;
  scroll-behavior: smooth;
}
.search-results.show { display: block; }
.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid #f5f5f5;
  transition: background var(--transition);
  cursor: pointer;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #fff5f5; }
.search-result-name { font-size: 13px; font-weight: 800; color: var(--mc-dark); }
.search-result-cat  { font-size: 11px; color: #aaa; margin-top: 1px; }
.search-result-pills { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }

/* ── Category Quick Bar ───────────────────────── */
.cat-bar {
  background: #fff;
  border-bottom: 1px solid var(--mc-border);
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.cat-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-top: 10px; padding-bottom: 10px;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-pill {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: #f0f0f0;
  font-size: 12px;
  font-weight: 800;
  color: var(--mc-dark);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: none; cursor: pointer;
}
.cat-pill:hover, .cat-pill.active { background: var(--mc-red); color: #fff; transform: translateY(-1px); }

/* ── Mobile Menu ────────────────────────────── */
.hamburger { display: flex; }
@media (min-width: 1100px) { .hamburger { display: none; } }

.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 150;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  background: var(--mc-dark);
  z-index: 160;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.drawer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--mc-yellow); letter-spacing: .05em; }
.drawer-close { background: none; border: none; color: #fff; cursor: pointer; padding: 4px; border-radius: 6px; }
.drawer-close:hover { color: var(--mc-yellow); }
.drawer-close svg { width: 22px; height: 22px; }

.drawer-nav { padding: 12px; flex: 1; }
.drawer-section-label {
  font-size: 10px; font-weight: 900; letter-spacing: .12em;
  color: var(--mc-yellow); text-transform: uppercase;
  padding: 14px 12px 6px;
}
.drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,.85);
  transition: background var(--transition), color var(--transition);
}
.drawer-link:hover { background: var(--mc-red); color: #fff; }
.drawer-link .d-icon { font-size: 18px; flex-shrink: 0; }

/* Mobile accordion */
.drawer-accordion summary {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  list-style: none;
  transition: background var(--transition);
}
.drawer-accordion summary:hover { background: rgba(255,255,255,.08); }
.drawer-accordion summary::after { content: '▾'; margin-left: auto; font-size: 12px; color: var(--mc-yellow); }
.drawer-accordion[open] summary::after { transform: rotate(180deg); }
.drawer-accordion-body { padding-left: 20px; }
.drawer-accordion-body a {
  display: block; padding: 9px 12px;
  border-radius: 8px; font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.65);
  transition: color var(--transition), background var(--transition);
}
.drawer-accordion-body a:hover { color: var(--mc-yellow); background: rgba(255,255,255,.05); }

/* ── Price & Calorie Pills ────────────────────── */
.price-pill {
  display: inline-flex;
  background: linear-gradient(135deg, var(--mc-yellow), var(--mc-yellow-dk));
  color: var(--mc-dark);
  font-weight: 900;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.cal-pill {
  display: inline-flex;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  font-weight: 700;
  font-size: 11px;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ── Cards ───────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--mc-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* ── Tables ──────────────────────────────────── */
.menu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.menu-table thead tr {
  color: #fff;
}
.menu-table thead th {
  padding: 12px 16px;
  font-weight: 800;
  text-align: left;
  font-size: 13px;
}
.menu-table thead th:last-child { text-align: right; }
.menu-table thead th:nth-child(2) { text-align: right; }
.menu-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background var(--transition);
}
.menu-table tbody tr:last-child { border-bottom: none; }
.menu-table tbody tr:nth-child(even) { background: #fafafa; }
.menu-table tbody tr:hover { background: #fff5f5; }
.menu-table td {
  padding: 12px 16px;
  vertical-align: middle;
}
.menu-table td:nth-child(2) { text-align: right; }
.menu-table td:last-child    { text-align: right; }
.item-name { font-weight: 800; color: var(--mc-dark); font-size: 14px; }

/* ── Section Headers ──────────────────────────── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--mc-dark);
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.table-wrap {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--mc-border);
  margin-bottom: 32px;
}

/* ── Footer ──────────────────────────────────── */
.site-footer { background: var(--mc-dark); color: #fff; margin-top: 64px; }
.footer-top { max-width: 1280px; margin: 0 auto; padding: 56px 20px 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-brand p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.7; margin-top: 12px; }
.footer-disclaimer { color: rgba(255,255,255,.35); font-size: 11px; margin-top: 10px; font-style: italic; }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--mc-yellow);
  letter-spacing: .05em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 13px; font-weight: 700; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--mc-yellow); }

.footer-hours-box {
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}
.footer-hours-box p.label { color: var(--mc-yellow); font-weight: 900; font-size: 13px; margin-bottom: 4px; }
.footer-hours-box p.val  { color: rgba(255,255,255,.75); font-size: 12px; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1280px; margin: 0 auto; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 11px; }

/* ── Hero Sections ────────────────────────────── */
.page-hero {
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.0;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--mc-yellow); }
.page-hero .hero-sub { color: rgba(255,255,255,.78); font-size: 16px; max-width: 600px; margin-bottom: 20px; font-weight: 600; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

/* ── Breadcrumb ───────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); font-size: 13px; font-weight: 700; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--mc-yellow); }
.breadcrumb span.sep { color: rgba(255,255,255,.3); font-size: 12px; }
.breadcrumb span.cur { color: var(--mc-yellow); font-size: 13px; font-weight: 800; }

/* ── Jump Bar ─────────────────────────────────── */
.jump-bar { background: #fff; border-bottom: 1px solid var(--mc-border); padding: 12px 20px; }
.jump-bar-inner { max-width: 1280px; margin: 0 auto; }
.jump-bar p { font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: #aaa; margin-bottom: 8px; }
.jump-links { display: flex; flex-wrap: wrap; gap: 6px; }
.jump-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  background: #f0f0f0;
  font-size: 12px; font-weight: 800;
  color: var(--mc-dark);
  transition: background var(--transition), color var(--transition);
}
.jump-link:hover { background: var(--mc-red); color: #fff; }

/* ── Page Container ───────────────────────────── */
.page-body { max-width: 1280px; margin: 0 auto; padding: 40px 20px 20px; }

/* ── Quick Pick Cards ─────────────────────────── */
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 40px; }
@media (min-width: 640px)  { .quick-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .quick-grid { grid-template-columns: repeat(4, 1fr); } }
.quick-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--mc-border);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.quick-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.quick-badge {
  display: inline-block;
  background: #fff5f5;
  color: var(--mc-red);
  font-size: 10px; font-weight: 900;
  padding: 2px 10px; border-radius: var(--radius-pill);
  margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .05em;
}
.quick-name { font-size: 13px; font-weight: 800; color: var(--mc-dark); margin-bottom: 8px; line-height: 1.3; }
.quick-price { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--mc-red); }
.quick-cal   { font-size: 11px; color: #aaa; margin-top: 4px; font-weight: 600; }

/* ── Category Grid (homepage) ─────────────────── */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (min-width: 640px)  { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.cat-card-body {
  padding: 24px 16px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.cat-icon { font-size: 40px; margin-bottom: 10px; }
.cat-label { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: #fff; letter-spacing: .04em; }
.cat-sub { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; font-weight: 600; }

/* ── Related Pages Grid ───────────────────────── */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 48px; margin-bottom: 16px; }
@media (min-width: 640px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }
.related-card {
  border-radius: var(--radius-card);
  padding: 20px 16px;
  text-align: center;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.related-icon  { font-size: 28px; margin-bottom: 6px; }
.related-label { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .04em; }
.related-sub   { font-size: 11px; opacity: .65; margin-top: 3px; font-weight: 600; }

/* ── Disclaimer ───────────────────────────────── */
.disclaimer {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 12px;
  color: #92400e;
  margin-top: 24px;
  font-weight: 600;
}

/* ── Back to Top ──────────────────────────────── */
#btt {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  background: var(--mc-red);
  border: none; border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(218,41,28,.4);
  transition: opacity .3s, background var(--transition), transform var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 80;
}
#btt.show { opacity: 1; pointer-events: all; }
#btt:hover { background: var(--mc-yellow); color: var(--mc-red); transform: scale(1.08); }
#btt svg { width: 20px; height: 20px; }

/* ── Ticker bar ───────────────────────────────── */
.ticker {
  background: var(--mc-dark);
  color: rgba(255,255,255,.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  padding: 5px 20px;
  text-transform: uppercase;
}

/* ── Utility ──────────────────────────────────── */
.max-w { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section-wrap { margin-bottom: 0; scroll-margin-top: 140px; }
.bg-red    { background: var(--mc-red) !important; }
.bg-yellow { background: var(--mc-yellow) !important; }
.text-red  { color: var(--mc-red); }
.text-yellow { color: var(--mc-yellow); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ── Media ────────────────────────────────────── */
@media (max-width: 640px) {
  .page-hero { padding: 36px 0; }
  .page-body { padding: 28px 16px 16px; }
  .jump-bar  { padding: 10px 16px; }
}

/* ── Animations ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: none; }
