:root {
  --blue-950: #071734;
  --blue-900: #0a2250;
  --blue-800: #123977;
  --blue-700: #1b4f9b;
  --gold-500: #d6a932;
  --gold-400: #f0c85b;
  --maroon: #8f2437;
  --ink: #14213d;
  --muted: #647084;
  --line: #e6ebf2;
  --paper: #f7f3eb;
  --white: #ffffff;
  --soft: #f7f9fc;
  --shadow: 0 18px 50px rgba(7, 23, 52, 0.12);
  --radius: 8px;
  --max: 1180px;
  --font: "Inter", "Segoe UI", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.section { padding: 86px 0; }
.section.tight { padding: 54px 0; }
.band { background: var(--soft); }
.paper { background: var(--paper); }
.dark { background: var(--blue-950); color: var(--white); }
.eyebrow {
  color: var(--gold-500);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  line-height: 1.05;
  letter-spacing: 0;
}
h1 { font-size: clamp(3rem, 7vw, 6.8rem); margin-bottom: 20px; }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); margin-bottom: 18px; }
h3 { font-size: 1.18rem; line-height: 1.25; margin-bottom: 10px; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #dce7f8; max-width: 780px; }
.section .lead { color: var(--muted); }
.muted { color: var(--muted); }
.gold { color: var(--gold-500); }
.grid { display: grid; gap: 24px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.registration-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; align-items: start; }
.registration-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.registration-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}
.registration-intro .lead { max-width: 820px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary { background: var(--gold-500); color: #101010; }
.btn.secondary { background: var(--blue-800); color: var(--white); }
.btn.ghost { background: transparent; color: inherit; border-color: rgba(255,255,255,0.35); }
.btn.light { background: var(--white); color: var(--blue-900); border-color: var(--line); }
.btn.whatsapp { background: #1fae62; color: var(--white); }
.btn.full { width: 100%; }

.announcement {
  background: var(--blue-950);
  color: var(--white);
  font-size: 0.92rem;
}
.announcement .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 42px;
}
.announcement a { color: var(--gold-400); font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230,235,242,0.9);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }
.brand strong { display: block; color: var(--blue-950); line-height: 1; font-size: 1.15rem; }
.brand span { display: block; color: var(--muted); font-size: 0.76rem; font-weight: 700; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #263650;
  font-weight: 750;
  font-size: 0.92rem;
}
.nav-links a:hover { color: var(--blue-700); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 8px; padding: 10px 12px; font-weight: 900; }

.notice-marquee {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--gold-500);
  color: #101010;
  border-bottom: 1px solid rgba(7, 23, 52, 0.16);
}
.notice-label {
  display: grid;
  place-items: center;
  padding: 12px 22px;
  background: var(--blue-950);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.notice-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.notice-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 48px;
  animation: noticeMarquee 30s linear infinite;
}
.notice-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}
.notice-track span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-950);
  opacity: 0.92;
}
.notice-marquee:hover .notice-track { animation-play-state: paused; }
@keyframes noticeMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero {
  min-height: calc(100svh - 118px);
  color: var(--white);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,23,52,0.94), rgba(7,23,52,0.64) 48%, rgba(7,23,52,0.22)), url("assets/venue/hotel-westin-mumbai.jpg") center/cover;
  z-index: -2;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(214,169,50,0.22), transparent 32%);
  z-index: -1;
}
.hero-inner { padding: 80px 0 38px; }
.hero-logo-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 34px rgba(7, 23, 52, 0.18);
}
.hero-naad-logo { width: 64px; height: 64px; border-radius: 8px; object-fit: contain; }
.hero-rotary-logo { width: 180px; height: 64px; object-fit: contain; }
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}
.mini-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 18px;
  backdrop-filter: blur(10px);
}
.mini-card span { display: block; color: #b9c9e5; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.mini-card strong { display: block; font-size: 1rem; margin-top: 5px; }
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 520px;
  margin-top: 28px;
}
.countdown div {
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  background: rgba(7,23,52,0.32);
}
.countdown strong { display: block; font-size: 1.65rem; line-height: 1; }
.countdown span { color: #cbd8ee; font-size: 0.75rem; text-transform: uppercase; font-weight: 800; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.stat-list { display: grid; gap: 16px; }
.stat {
  border-left: 4px solid var(--gold-500);
  padding: 16px 0 16px 18px;
}
.stat strong { display: block; font-size: 1.6rem; color: var(--blue-900); }
.feature-card, .price-card, .speaker-card, .committee-card, .place-card, .contact-card, .faq-item, .message-card, .agenda-item, .testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 23, 52, 0.06);
}
.feature-card { padding: 26px; }
.rotary-card img {
  width: min(230px, 100%);
  margin-bottom: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eef4ff;
  color: var(--blue-800);
  font-weight: 900;
  margin-bottom: 16px;
}
.price-card {
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.price-card.featured { border-color: var(--gold-500); box-shadow: 0 22px 55px rgba(214,169,50,0.20); }
.price-card h3 { min-height: 2.7em; margin-bottom: 0; }
.price-card .btn { margin-top: auto; }
.price-card p { color: var(--muted); }
.badge { display: inline-flex; width: fit-content; padding: 5px 10px; border-radius: 999px; background: #fff5d6; color: #7b5700; font-weight: 900; font-size: 0.76rem; }
.price { font-size: 2.2rem; font-weight: 900; color: var(--blue-950); line-height: 1.1; }
.price small { font-size: 0.9rem; color: var(--muted); font-weight: 700; }
.check-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 9px; }
.check-list li { position: relative; padding-left: 26px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-500); font-weight: 900; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 30px; }
.section-head > div { max-width: 760px; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 3.25rem); }
.compact-heading { font-size: clamp(2rem, 3vw, 3.2rem); }
.cta-heading { font-size: clamp(1.9rem, 3vw, 3rem); }
.timeline { display: grid; gap: 16px; }
.agenda-item { padding: 22px; display: grid; grid-template-columns: 150px 1fr auto; gap: 18px; align-items: start; }
.agenda-item { color: var(--ink); }
.agenda-time { color: var(--blue-800); font-weight: 900; }
.agenda-time span { display: inline-block; margin-top: 6px; color: var(--muted); font-size: 0.86rem; line-height: 1.35; }
.tag { display: inline-flex; padding: 5px 9px; background: #eef4ff; color: var(--blue-800); border-radius: 999px; font-size: 0.76rem; font-weight: 900; text-transform: capitalize; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter-btn { border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 9px 13px; cursor: pointer; font-weight: 850; }
.filter-btn.active { background: var(--blue-900); color: var(--white); border-color: var(--blue-900); }

.speaker-card { overflow: hidden; }
.speaker-card img { width: 100%; aspect-ratio: 4/4.5; object-fit: cover; object-position: top center; background: #eef2f7; }
.speaker-card .body, .committee-card .body { padding: 20px; }
.speaker-card .role, .committee-card .role { color: var(--blue-700); font-weight: 850; font-size: 0.9rem; }
.message-profile { overflow: hidden; }
.message-profile img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center top;
  background: #eef2f7;
}
.message-profile .body { padding: 20px 24px 24px; }
.committee-card .links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.committee-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.committee-photo {
  margin: 14px 14px 0;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1f2630;
}
.committee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.committee-card .body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.committee-card .links {
  margin-top: auto;
}
.committee-card .links .btn {
  flex: 1;
  min-height: 40px;
  padding: 9px 12px;
}
.soft-bg-1 { background: #eef6ff; }
.soft-bg-2 { background: #fff6df; }
.soft-bg-3 { background: #f0f8ee; }
.soft-bg-4 { background: #fff0f3; }
.soft-bg-5 { background: #f3f0ff; }

.venue-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: #dfe7f0;
}
.venue-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}
.venue-logo {
  width: 132px;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 23, 52, 0.06);
}
.dark .venue-logo, .page-hero .venue-logo {
  background: rgba(255,255,255,0.94);
}
.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.venue-copy {
  max-width: 640px;
  align-self: center;
}
.venue-copy h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  max-width: 620px;
}
.venue-copy .lead {
  max-width: 620px;
}
.venue-copy .cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
}
.venue-copy .cta-row .btn {
  width: 100%;
  white-space: normal;
}
.venue-copy .cta-row .btn:first-child {
  grid-column: 1 / -1;
}
.map-frame {
  min-height: 350px;
  border: 0;
  width: 100%;
  border-radius: 8px;
  background: #dde5ef;
}
.cta-panel {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  padding: 36px 42px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-panel .lead { color: #dce7f8; }

.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.widget-form-embed {
  width: 100%;
  min-height: 420px;
}
.widget-form-embed-registration {
  min-height: 430px;
  margin-top: 16px;
}
.widget-form-embed-modal {
  min-height: 460px;
}
.form-shell.highlight {
  border-top: 5px solid var(--gold-500);
}
.form-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.form-note {
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.form-note strong { display: block; color: var(--blue-900); margin-bottom: 4px; }
.form-note span { color: var(--muted); font-size: 0.9rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: #2d3a50; font-weight: 850; font-size: 0.9rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d7deea;
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }
.success-message {
  display: none;
  margin-top: 16px;
  border: 1px solid #b6e7ca;
  background: #effbf4;
  color: #126337;
  border-radius: 8px;
  padding: 13px 15px;
  font-weight: 800;
}

.faq-item { margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%;
  border: 0;
  background: var(--white);
  padding: 19px 22px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.page-hero {
  background: linear-gradient(135deg, rgba(7,23,52,0.94), rgba(18,57,119,0.90)), url("assets/venue/hotel-westin-mumbai.jpg") center/cover;
  color: var(--white);
  padding: 96px 0 74px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 880px;
}
.page-hero p { color: #dce7f8; max-width: 760px; font-size: 1.14rem; }
.breadcrumb { color: var(--gold-400); font-weight: 900; margin-bottom: 14px; }

.sticky-summary {
  position: sticky;
  top: 104px;
}
.registration-summary {
  position: static;
  align-self: stretch;
}
.registration-summary .summary-box {
  height: 100%;
}
.summary-box {
  background: var(--blue-950);
  color: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.summary-box p { color: #dce7f8; }
.summary-list { display: grid; gap: 12px; margin: 18px 0 22px; }
.summary-list div {
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.summary-list strong { display: block; color: var(--gold-400); font-size: 0.82rem; text-transform: uppercase; }
.policy-note {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: #66511c;
}
.policy-doc {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 23, 52, 0.06);
  padding: 34px;
}
.policy-doc h2 {
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 28px 0 10px;
  color: var(--blue-900);
}
.policy-doc h2:first-of-type { margin-top: 10px; }
.policy-doc p { color: #334158; }
.policy-doc .check-list { margin-bottom: 18px; }

.footer {
  background: #071326;
  color: var(--white);
  padding: 42px 0 24px;
}
.footer a { color: #dce7f8; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 34px; }
.footer h3 { color: var(--gold-400); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 28px;
  padding-top: 18px;
  color: #aebbd0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--gold-400); font-weight: 800; }

.mobile-cta {
  display: none;
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 8px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.mobile-cta .btn { min-height: 42px; padding: 9px; font-size: 0.82rem; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  background: rgba(7,23,52,0.68);
  padding: 18px;
}
.modal-backdrop.open { display: grid; }
.modal {
  width: min(720px, 100%);
  max-height: 90svh;
  overflow: auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}
.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.close-modal { border: 0; background: #eef2f7; border-radius: 8px; width: 40px; height: 40px; cursor: pointer; font-weight: 900; }
.modal-body { padding: 24px; }

.print-only { display: none; }

@media (max-width: 980px) {
  .grid.three, .grid.four, .hero-meta, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .registration-layout { grid-template-columns: 1fr; }
  .registration-intro { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .nav-links, .nav-actions { display: none; }
  .menu-btn { display: inline-flex; }
  .site-header.open .nav-links {
    display: grid;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .hero { min-height: auto; }
  .hero-inner { padding: 64px 0 34px; }
  .agenda-item { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; padding: 34px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 68px; }
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 58px 0; }
  .grid.two, .grid.three, .grid.four, .hero-meta, .countdown, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-note-grid { grid-template-columns: 1fr; }
  .announcement .container { flex-direction: column; align-items: flex-start; padding: 8px 0; }
  .notice-marquee { grid-template-columns: 1fr; }
  .notice-label { min-height: 38px; padding: 9px 16px; }
  .notice-track { min-height: 44px; animation-duration: 24s; }
  .notice-track span { padding: 0 20px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 1rem; }
  .hero-logo-row { align-items: flex-start; flex-direction: column; }
  .hero-brand-lockup { max-width: 100%; }
  .hero-naad-logo { width: 56px; height: 56px; }
  .hero-rotary-logo { width: min(176px, calc(100vw - 122px)); height: 56px; }
  .hero::before { background-position: center; }
  .hero-meta { margin-top: 30px; }
  .venue-image, .venue-image img { min-height: 280px; }
  .venue-copy .cta-row { grid-template-columns: 1fr; }
  .venue-copy .cta-row .btn:first-child { grid-column: auto; }
  .section-head { display: block; }
  .price { font-size: 1.9rem; }
  .mobile-cta { display: grid; }
  .page-hero { padding: 68px 0 52px; }
  .sticky-summary { position: static; }
}

@media print {
  .announcement, .site-header, .notice-marquee, .footer, .mobile-cta, .filters, .cta-panel, .modal-backdrop { display: none !important; }
  body { padding: 0; color: #111; }
  .page-hero { background: none; color: #111; padding: 24px 0; }
  .agenda-item { break-inside: avoid; box-shadow: none; }
  .print-only { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .notice-track {
    animation: none;
    transform: none;
  }
}
