:root {
  --navy-950: #041225;
  --navy-900: #071b38;
  --navy-800: #0b2b55;
  --navy-700: #174477;
  --orange: #f26a2e;
  --orange-light: #ff9a66;
  --cream: #f6f1e8;
  --sand: #e7ddd0;
  --ink: #11223a;
  --muted: #647084;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(5, 26, 54, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --page: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, textarea, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #ffb18d; outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-900);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 50;
  width: var(--page);
  margin: auto;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: rgba(4, 18, 37, .78);
  box-shadow: 0 14px 42px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(255,255,255,.3);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .87rem;
  font-weight: 600;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links .nav-action { color: var(--navy-950); background: var(--white); }
.nav-links .nav-action:hover { color: var(--navy-950); background: #fff4ee; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 150px max(20px, calc((100vw - 1180px) / 2)) 90px;
  display: grid;
  grid-template-columns: 1.12fr .75fr;
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 19%, rgba(242,106,46,.23), transparent 25%),
    linear-gradient(145deg, var(--navy-950) 5%, var(--navy-900) 54%, #0c2f5e 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -300px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.02);
}
.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  top: 24%;
  left: -260px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(90px);
  opacity: .18;
}
.hero-copy, .meaning-card { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #c04d1d; }
h1, h2, h3 {
  margin-top: 0;
  font-family: "Libre Franklin", sans-serif;
  line-height: 1.08;
  letter-spacing: -.04em;
}
h1 {
  max-width: 750px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 7vw, 6.3rem);
  font-weight: 800;
}
h1 span { color: var(--orange-light); }
.hero-intro { max-width: 660px; margin: 0 0 32px; color: rgba(255,255,255,.76); font-size: 1.14rem; }
.event-badge {
  width: fit-content;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.07);
}
.date-block {
  width: 62px;
  height: 62px;
  border-radius: 13px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--navy-950);
  background: var(--white);
}
.date-block span { color: var(--orange); font-size: .65rem; font-weight: 800; letter-spacing: .12em; }
.date-block strong { margin-top: -3px; font-family: "Libre Franklin", sans-serif; font-size: 1.65rem; line-height: 1; }
.event-badge > div:last-child { display: grid; }
.event-badge > div:last-child strong { font-size: .98rem; }
.event-badge > div:last-child span { color: rgba(255,255,255,.65); font-size: .86rem; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  padding: 12px 19px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--orange); box-shadow: 0 10px 30px rgba(242,106,46,.25); }
.button-primary:hover { background: #dc5922; }
.button-secondary { color: var(--white); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); }
.button-secondary:hover { background: rgba(255,255,255,.16); }
.button-dark { width: 100%; color: var(--white); background: var(--navy-900); }
.button-outline { color: var(--navy-900); background: transparent; border: 1px solid #b8c0ca; }
.countdown { margin-top: 35px; display: flex; align-items: center; gap: 18px; }
.countdown-label { color: rgba(255,255,255,.48); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.countdown-values { display: grid; grid-template-columns: auto auto auto auto auto auto; align-items: baseline; gap: 6px; }
.countdown-values strong { color: var(--orange-light); font-size: 1.15rem; }
.countdown-values span { margin-right: 7px; color: rgba(255,255,255,.55); font-size: .75rem; }

.meaning-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.075);
  box-shadow: 0 35px 80px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.memorial-symbol { height: 62px; display: flex; align-items: end; gap: 6px; }
.memorial-symbol span { width: 8px; border-radius: 10px; background: var(--orange); transform: rotate(24deg); }
.memorial-symbol span:nth-child(1) { height: 28px; opacity: .5; }
.memorial-symbol span:nth-child(2) { height: 51px; }
.memorial-symbol span:nth-child(3) { height: 37px; opacity: .72; }
.card-kicker { margin: 15px 0 8px; color: var(--orange); font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.meaning-card h2 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 2.85rem); }
.meaning-card > p:not(.card-kicker) { color: rgba(255,255,255,.69); }
.meaning-list { margin: 28px 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.meaning-list li { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); display: flex; align-items: center; gap: 16px; font-size: .93rem; }
.meaning-list span { color: var(--orange-light); font-size: .72rem; font-weight: 700; }
.text-link { color: var(--white); font-size: .88rem; font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.event-section { padding: 110px max(20px, calc((100vw - 1180px) / 2)); background: #fbf8f2; }
.section-heading { margin-bottom: 48px; display: grid; grid-template-columns: 1.2fr .7fr; gap: 60px; align-items: end; }
.section-heading h2, .advocacy-intro > h2 { margin-bottom: 0; color: var(--navy-900); font-size: clamp(2.65rem, 5vw, 4.7rem); }
.section-heading > p { max-width: 450px; margin: 0; color: var(--muted); font-size: 1.04rem; }
.event-identity {
  margin-bottom: 34px;
  border: 1px solid #ddd6ca;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .7fr);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.wdor-artwork {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.host-card {
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(155deg, var(--navy-800), var(--navy-950));
}
.host-card img {
  width: clamp(112px, 12vw, 158px);
  height: auto;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.host-card span {
  display: block;
  color: var(--orange-light);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.host-card strong {
  margin-top: 5px;
  display: block;
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.15;
  letter-spacing: -.03em;
}
.host-card p { margin: 11px 0 0; color: rgba(255,255,255,.62); font-size: .86rem; }
.event-explorer {
  border: 1px solid #ddd6ca;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: .72fr 1.3fr .82fr;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.tab-list { padding: 24px; display: flex; flex-direction: column; gap: 8px; background: #f1ece4; }
.tab {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  text-align: left;
  color: #596474;
  background: transparent;
  font-weight: 700;
}
.tab:hover { color: var(--navy-900); background: rgba(255,255,255,.62); }
.tab.active { color: var(--white); background: var(--navy-900); box-shadow: 0 10px 25px rgba(7,27,56,.14); }
.tab.tab-highlight {
  color: var(--navy-950);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(242,106,46,.24);
}
.tab.tab-highlight:hover { color: var(--navy-950); background: var(--orange-light); }
.tab.tab-highlight.active {
  color: var(--navy-950);
  background: var(--orange);
  box-shadow: 0 10px 25px rgba(242,106,46,.3), inset 0 0 0 2px rgba(7,27,56,.15);
}
.tab-panels { min-height: 410px; padding: clamp(28px, 4vw, 48px); display: grid; align-items: center; }
.tab-panel { animation: fade-in .28s ease; }
.tab-panel.active { display: grid; grid-template-columns: auto 1fr; gap: 22px; }
@keyframes fade-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.panel-icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: #fff0e8;
  font-weight: 800;
  font-size: .78rem;
}
.tab-panel h3 { margin-bottom: 15px; color: var(--navy-900); font-size: 1.8rem; }
.tab-panel p { color: var(--muted); }
.day-schedule {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.day-schedule li {
  padding-top: 12px;
  border-top: 1px solid #e4ded4;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}
.day-schedule time { color: var(--orange); font-weight: 800; }
.day-schedule strong { display: block; color: var(--navy-900); font-size: .9rem; }
.volunteer-roles {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.volunteer-roles li {
  padding: 11px 0 0 15px;
  border-top: 1px solid #e4ded4;
  border-left: 3px solid var(--orange);
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.42;
}
.volunteer-roles strong { display: block; margin-bottom: 2px; color: var(--navy-900); font-size: .9rem; }
.voices-callout {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid #f1cba7;
  border-radius: 15px;
  background: #fff7ee;
}
.voices-callout h4 { margin: 0 0 6px; color: var(--navy-900); font-size: 1rem; }
.voices-callout p { margin: 0 0 14px; font-size: .84rem; line-height: 1.5; }
.voices-callout .button { width: fit-content; padding: 11px 16px; font-size: .82rem; }
.status-note { margin-top: 24px; padding: 14px 16px; border-radius: 13px; color: #7c502f; background: #fff5df; font-size: .84rem; }
.status-note span { margin-right: 7px; color: #d99a29; font-size: .65rem; }
.dark-link { color: var(--navy-900); }
.direction-links { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px 22px; }
.quick-details { padding: 30px; color: var(--white); background: linear-gradient(160deg, #0c305f, var(--navy-950)); }
.quick-details .card-kicker { color: var(--orange-light); }
.quick-details dl { margin: 24px 0 30px; }
.quick-details dl > div { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.quick-details dt { color: rgba(255,255,255,.48); font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.quick-details dd { margin: 3px 0 0; font-weight: 600; font-size: .9rem; }
.quick-details .button-dark { color: var(--navy-900); background: var(--white); }

.advocacy-section {
  padding: 110px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  gap: clamp(50px, 8vw, 110px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(242,106,46,.13), transparent 24%),
    var(--navy-950);
}
.advocacy-intro > h2 { margin-bottom: 22px; color: var(--white); }
.advocacy-lede { max-width: 680px; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.law-pillars { margin-top: 36px; display: grid; gap: 12px; }
.law-pillars article { padding: 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; display: flex; gap: 17px; background: rgba(255,255,255,.045); }
.law-pillars article > span { flex: 0 0 37px; width: 37px; height: 37px; border-radius: 50%; display: grid; place-items: center; color: var(--navy-950); background: var(--orange-light); font-weight: 800; font-size: .78rem; }
.law-pillars h3 { margin: 2px 0 5px; font-size: 1rem; letter-spacing: -.01em; }
.law-pillars p { margin: 0; color: rgba(255,255,255,.58); font-size: .86rem; }
.principle-note { margin-top: 18px; padding: 17px 18px; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.principle-note summary { cursor: pointer; color: var(--orange-light); font-size: .9rem; font-weight: 700; }
.principle-note p { color: rgba(255,255,255,.62); font-size: .87rem; }

.message-builder { align-self: start; padding: clamp(26px, 4vw, 40px); border-radius: var(--radius-lg); color: var(--ink); background: var(--white); box-shadow: 0 30px 80px rgba(0,0,0,.27); }
.message-builder .card-kicker { margin-top: 0; }
.message-builder h3 { margin-bottom: 26px; color: var(--navy-900); font-size: 1.9rem; }
fieldset { margin: 0 0 21px; padding: 0; border: 0; }
legend, .message-label { margin-bottom: 10px; display: block; color: #556273; font-size: .79rem; font-weight: 700; }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.reason-grid label { cursor: pointer; }
.reason-grid input { position: absolute; opacity: 0; pointer-events: none; }
.reason-grid span { min-height: 54px; padding: 9px; border: 1px solid #d8dde3; border-radius: 12px; display: grid; place-items: center; text-align: center; color: #596474; background: #f8fafb; font-size: .77rem; font-weight: 700; }
.reason-grid input:checked + span { border-color: var(--orange); color: #a84017; background: #fff1e9; box-shadow: 0 0 0 1px var(--orange); }
.reason-grid input:focus-visible + span { outline: 3px solid #ffb18d; outline-offset: 3px; }
textarea { width: 100%; resize: vertical; min-height: 210px; padding: 15px; border: 1px solid #cfd5dc; border-radius: 13px; color: #26384f; background: #fbfcfd; font-size: .85rem; line-height: 1.55; }
.message-actions { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 9px; }
.message-actions .button { flex: 1; }
.copy-status { min-height: 20px; margin: 8px 0 0; color: #257447; font-size: .78rem; }
.lawmaker-link { margin-top: 7px; display: inline-block; color: var(--navy-700); font-size: .88rem; font-weight: 700; text-decoration: none; }
.lawmaker-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.privacy-note { margin: 14px 0 0; color: #8b949f; font-size: .7rem; }

.donation-band {
  padding: 54px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-950), #123f74);
}
.donation-band .eyebrow { color: var(--orange-light); }
.donation-band h2 { margin: 8px 0 10px; font-size: clamp(2rem, 4vw, 3.25rem); }
.donation-band p:last-child { max-width: 720px; margin: 0; color: rgba(255,255,255,.72); }
.donation-band .button { min-width: 170px; }

.site-footer {
  padding: 46px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 30px 70px;
  color: #47556a;
  background: #fbf8f2;
}
.footer-brand { color: var(--navy-900); }
.site-footer > div:first-child > p { margin: 10px 0 0; font-size: .8rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; align-items: center; }
.footer-links a { color: var(--navy-700); font-size: .82rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.source-note { grid-column: 1 / -1; margin: 0; padding-top: 22px; border-top: 1px solid #ddd7cd; color: #8a9099; font-size: .68rem; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .meaning-card { max-width: 720px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .event-identity { grid-template-columns: 1.35fr .65fr; }
  .event-explorer { grid-template-columns: .72fr 1.3fr; }
  .quick-details { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.8fr; column-gap: 30px; align-items: end; }
  .quick-details dl { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
  .quick-details .button { width: fit-content; }
  .advocacy-section { grid-template-columns: 1fr; }
  .message-builder { max-width: 740px; }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 24px); }
  .site-header { inset: 10px 0 auto; }
  .brand > span:last-child { display: none; }
  .nav-links a:not(.nav-action) { display: none; }
  .hero { padding-top: 115px; padding-bottom: 70px; }
  h1 { font-size: clamp(2.85rem, 14vw, 4.2rem); }
  .hero-intro { font-size: 1rem; }
  .event-badge { width: 100%; }
  .countdown { align-items: flex-start; flex-direction: column; gap: 7px; }
  .meaning-card { padding: 26px; }
  .event-section, .advocacy-section { padding-top: 80px; padding-bottom: 80px; }
  .event-identity { grid-template-columns: 1fr; }
  .wdor-artwork { min-height: auto; }
  .host-card { flex-direction: row; align-items: center; gap: 20px; }
  .host-card img { width: 96px; margin: 0; flex: 0 0 auto; }
  .event-explorer { grid-template-columns: 1fr; }
  .tab-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 13px;
  }
  .tab { min-width: 0; padding: 13px 10px; text-align: center; }
  .tab.tab-highlight { grid-column: 1 / -1; }
  .tab-panels { min-height: 380px; padding: 28px 24px; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .day-schedule li { grid-template-columns: 76px 1fr; }
  .quick-details { grid-column: auto; display: block; }
  .quick-details dl { display: block; }
  .quick-details .button { width: 100%; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-grid span { min-height: 45px; }
  .donation-band { grid-template-columns: 1fr; }
  .donation-band .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .source-note { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
