:root {
  --navy: #082f55;
  --navy-deep: #031a31;
  --gold: #e8ac27;
  --gold-dark: #b77900;
  --cream: #fff9ea;
  --paper: #fffdf7;
  --white: #ffffff;
  --ink: #08233f;
  --muted: #53687c;
  --line: #d9d4c5;
  --success: #17603a;
  --danger: #9d2e26;
  --radius: 12px;
  --display: "League Spartan", "Arial Narrow", Arial, sans-serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 18px 45px rgb(3 26 49 / 12%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.wrap { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--navy-deep);
  background: var(--cream);
  border: 2px solid var(--gold);
}
.sr-only, .honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 92px;
  background: rgb(255 249 234 / 97%);
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 5px 20px rgb(3 26 49 / 8%);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand-lockup { width: 242px; height: auto; }
.site-header nav { display: flex; align-items: stretch; align-self: stretch; gap: 18px; }
.site-header nav a {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .015em;
  text-decoration: none;
  white-space: nowrap;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header nav a.active::after { transform: scaleX(1); }
.site-header nav a.active { color: var(--navy-deep); }
.menu {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  color: var(--navy);
  background: transparent;
  border: 2px solid var(--navy);
  border-radius: 8px;
}
.menu span:not(.sr-only) { display: block; height: 3px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(125deg, transparent 0 62%, rgb(232 172 39 / 9%) 62% 63%, transparent 63%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent 0 53%, #000 78%, transparent 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  min-height: 680px;
  padding: 78px 0 104px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--navy); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-deep); font-family: var(--display); line-height: 1.02; }
.hero h1, .page-hero h1 {
  margin-bottom: 25px;
  color: var(--cream);
  font-size: clamp(54px, 6.4vw, 88px);
  font-weight: 800;
  letter-spacing: -.045em;
}
.hero h1 em { display: block; color: var(--gold); font-style: normal; }
.lede { max-width: 650px; margin-bottom: 32px; color: #eef3f7; font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  color: var(--navy-deep);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 7px;
  font-family: var(--display);
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.button.gold { background: var(--gold); }
.button.outline { color: var(--cream); background: transparent; border-color: rgb(255 249 234 / 65%); }
.button.blue { color: var(--cream); background: var(--navy); }
.button.dark-outline { color: var(--navy); background: transparent; border-color: var(--navy); }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgb(3 26 49 / 20%); }
.brand-showcase { position: relative; margin: 0; padding: 34px 24px 26px; text-align: center; }
.brand-showcase::before {
  content: "";
  position: absolute;
  inset: 8% 4% 0;
  background: radial-gradient(ellipse at center, rgb(232 172 39 / 22%), transparent 68%);
  filter: blur(20px);
}
.brand-showcase img { position: relative; width: min(100%, 590px); margin-inline: auto; filter: drop-shadow(0 24px 22px rgb(0 0 0 / 24%)); }
.brand-showcase figcaption {
  position: relative;
  margin-top: 24px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quick { position: relative; z-index: 2; margin-top: -58px; padding-bottom: 88px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-top: 5px solid var(--gold); border-radius: var(--radius); box-shadow: var(--shadow); }
.card { min-height: 270px; padding: 38px 34px; text-decoration: none; border-right: 1px solid var(--line); transition: background-color .18s ease, transform .18s ease; }
.card:last-child { border-right: 0; }
.card:hover { background: var(--cream); }
.card > span, .number, .three span { color: var(--gold-dark); font-family: var(--display); font-weight: 800; letter-spacing: .08em; }
.card h2 { margin: 40px 0 13px; font-size: 29px; }
.card p { color: var(--muted); }
.card b, .support-grid a, .text-link { color: var(--navy); font-weight: 700; }

.social-feed { padding: 96px 0 106px; background: var(--paper); }
.social-feed-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.social-feed-heading h2 { margin-bottom: 12px; font-size: clamp(42px, 5.2vw, 66px); }
.social-feed-heading p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 18px; }
.social-feed-heading .button { flex: 0 0 auto; }
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.instagram-post { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 28px rgb(3 26 49 / 9%); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.instagram-post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.instagram-post:focus-visible { outline: 3px solid rgb(232 172 39 / 60%); outline-offset: 4px; }
.instagram-image { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--navy-deep); }
.instagram-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.instagram-post:hover img { transform: scale(1.025); }
.instagram-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; color: var(--navy); font-size: 14px; }
.instagram-meta time { color: var(--muted); }
.instagram-meta strong { font-family: var(--display); font-size: 14px; letter-spacing: .015em; }

.mission { padding: 112px 0; color: var(--cream); background: var(--gold); }
.split { display: grid; grid-template-columns: .7fr 1.5fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.split h2 { max-width: 760px; margin-bottom: 30px; font-size: clamp(45px, 5.8vw, 72px); }
.split p:last-child { max-width: 760px; color: var(--navy-deep); font-size: 20px; }
.cta { padding: 82px 0; background: var(--cream); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta h2 { margin-bottom: 0; font-size: clamp(36px, 4.5vw, 58px); }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 88px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: max(2vw, 20px);
  top: 50%;
  width: min(440px, 38vw);
  aspect-ratio: 2.2;
  opacity: .11;
  background: url("assets/brand/svg/ahtbc-badge-reversed-white.svg") center / contain no-repeat;
  transform: translateY(-50%);
}
.page-hero h1 { margin-bottom: 18px; font-size: clamp(54px, 7vw, 82px); }
.page-hero p:last-child { max-width: 730px; margin-bottom: 0; color: #e3ebf2; font-size: 19px; }
.content { padding: 92px 0 110px; }
.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
  margin-bottom: 42px;
  padding: 24px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
}
.notice-icon { color: var(--gold-dark); font-size: 30px; line-height: 1; }
.calendar-shell { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.calendar-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 28px; color: var(--cream); background: var(--navy); }
.calendar-top span { color: var(--gold); font-family: var(--display); font-weight: 700; }
.calendar-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.calendar-embed { display: block; width: 100%; height: 700px; border: 0; background: var(--white); }
.calendar-help { margin: 18px 4px 0; color: var(--muted); font-size: 14px; }
.calendar-help a { color: var(--navy); font-weight: 700; }
.calendar-empty { min-height: 360px; display: grid; place-items: center; padding: 48px; text-align: center; }
.calendar-empty > div { max-width: 580px; }
.calendar-empty span { color: var(--gold); font-size: 54px; }
.calendar-empty h2 { font-size: 38px; }
.calendar-empty p { color: var(--muted); }

.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 7vw, 90px); align-items: start; }
.form-layout h2, .prose h2, .coming h2, .contact-card h2 { font-size: clamp(34px, 4vw, 48px); }
.stay-connected > .eyebrow { margin-bottom: 12px; }
.stay-connected > h2 { margin-bottom: 26px; }
.stay-connected-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stay-connected-item { display: flex; flex-direction: column; padding: 26px; background: var(--cream); border: 1px solid var(--line); border-top: 5px solid var(--gold); border-radius: var(--radius); }
.stay-connected-item h3 { margin-bottom: 8px; color: var(--navy); font-size: 25px; }
.stay-connected-item p { color: var(--muted); }
.stay-connected-item .button, .stay-connected-item .text-link { margin-top: auto; }
.stay-connected-item .button { align-self: start; }
.interest-form-section { max-width: 860px; margin: 80px auto 0; }
.interest-form-intro { max-width: 680px; margin-bottom: 28px; }
.interest-form-intro > .eyebrow { margin-bottom: 12px; }
.interest-form-intro h2 { margin-bottom: 12px; font-size: clamp(38px, 4.6vw, 54px); }
.interest-form-intro p:last-child { color: var(--muted); font-size: 18px; }
.google-form-shell { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-top: 6px solid var(--gold); border-radius: var(--radius); box-shadow: var(--shadow); }
.google-form { display: block; width: 100%; height: 1420px; border: 0; background: var(--white); }
.form-fallback { margin: 18px 4px 0; color: var(--muted); font-size: 14px; }
.form-fallback a { color: var(--navy); font-weight: 700; }
.ticks { padding: 0; list-style: none; }
.ticks li { position: relative; margin: 13px 0; padding-left: 29px; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 800; }
.privacy-note { margin-top: 34px; padding: 25px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); }
.privacy-note h3 { font-size: 22px; }
.signup, .contact-form { padding: clamp(25px, 4vw, 42px); background: var(--white); border: 1px solid var(--line); border-top: 6px solid var(--gold); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-status, .status { display: inline-block; margin-bottom: 26px; padding: 6px 11px; color: var(--navy); background: var(--cream); border: 1px solid var(--gold); border-radius: 999px; font-size: 13px; font-weight: 700; }
.signup fieldset { margin: 0 0 25px; padding: 0; border: 0; }
.signup legend, .signup > label, .two label, .form-field label { display: block; margin-bottom: 7px; color: var(--navy-deep); font-weight: 700; }
.signup fieldset label { display: inline-flex; align-items: center; gap: 7px; margin: 0 18px 9px 0; }
.signup input[type="text"], .signup input:not([type]), .signup input[type="email"], .signup input[type="tel"],
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #9ca9b4;
  border-radius: 7px;
  font: inherit;
}
.signup input:focus, .form-field input:focus, .form-field select:focus, .form-field textarea:focus,
.error-summary:focus, .contact-result:focus { outline: 3px solid rgb(232 172 39 / 48%); outline-offset: 2px; border-color: var(--navy); }
.two, .choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.choices { margin-bottom: 24px; }
.consent { display: flex; gap: 10px; align-items: start; margin: 20px 0; }
.smallprint, .field-hint, .field-error, .required-note, .privacy-copy { color: var(--muted); font-size: 13px; }

.prose { max-width: 920px; }
.prose .big { color: var(--navy); font-family: var(--display); font-size: clamp(27px, 3.4vw, 40px); font-weight: 650; line-height: 1.2; }
.prose > p:not(.big) { max-width: 760px; }
.prose hr { margin: 58px 0; border: 0; border-top: 1px solid var(--line); }
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.three h3 { margin-top: 26px; font-size: 27px; }
.independent { margin-top: 62px; padding: 28px; background: var(--cream); border-left: 6px solid var(--gold); }
.support-grid, .governance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support-grid article, .governance-grid > div { padding: 34px; background: var(--white); border: 1px solid var(--line); border-top: 5px solid var(--gold); border-radius: var(--radius); }
.support-grid h2, .governance-grid h2 { margin: 28px 0 16px; font-size: 30px; }
.coming { margin-top: 70px; padding: clamp(35px, 6vw, 70px); color: var(--cream); background: var(--navy); border-radius: var(--radius); }
.coming h2 { color: var(--cream); }
.principle { margin-top: 58px; }
.principle blockquote { margin: 0; padding: 30px 34px; color: var(--navy); background: var(--cream); border-left: 6px solid var(--gold); font-family: var(--display); font-size: 27px; font-weight: 650; }
.contact-card { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-card > div { padding: clamp(30px, 5vw, 58px); }
.contact-card .social { color: var(--cream); background: var(--navy); }
.contact-card h2 a { color: var(--gold); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(36px, 6vw, 78px); align-items: start; }
.contact-layout h2 { font-size: clamp(34px, 4vw, 48px); }
.contact-social { margin-top: 36px; padding: 27px; color: var(--cream); background: var(--navy); border-radius: var(--radius); }
.contact-social h2 { color: var(--cream); font-size: 25px; }
.form-field { margin-bottom: 20px; }
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field [aria-invalid="true"] { border-color: var(--danger); }
.field-hint { display: block; margin-top: 4px; }
.field-error { display: block; min-height: 1.25em; color: var(--danger); font-weight: 700; }
.error-summary, .contact-result { margin-bottom: 25px; padding: 20px; border: 2px solid var(--danger); border-radius: 8px; }
.error-summary h2, .contact-result h2 { margin-bottom: 8px; font-size: 24px; }
.error-summary ul { margin-bottom: 0; }
.error-summary a { font-weight: 700; }
.contact-result.success { border-color: var(--success); background: #effaf3; }
.contact-result.pending { border-color: var(--gold-dark); background: var(--cream); }
.contact-result p { margin-bottom: 0; }
.required-note { margin-bottom: 22px; }
.privacy-copy { margin-top: 18px; }
.contact-form button:disabled { cursor: not-allowed; opacity: .55; }
.contact-form .cf-turnstile { min-height: 65px; margin: 6px 0 22px; }

.opportunities-intro { max-width: 740px; margin-bottom: 42px; }
.opportunities-intro h2 { margin-bottom: 16px; font-size: clamp(38px, 4.8vw, 58px); }
.opportunities-intro p:last-child { margin-bottom: 0; color: var(--muted); font-size: 18px; }
.opportunity-list { display: grid; gap: 16px; }
.opportunity-card { display: grid; grid-template-columns: minmax(104px, .3fr) 1fr; gap: 28px; align-items: start; padding: 28px 32px; background: var(--white); border: 1px solid var(--line); border-left: 6px solid var(--gold); border-radius: var(--radius); box-shadow: 0 8px 22px rgb(3 26 49 / 7%); }
.opportunity-date { margin: 2px 0 0; color: var(--gold-dark); font-family: var(--display); font-size: clamp(29px, 3vw, 38px); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.opportunity-card h2 { margin: 0 0 8px; font-size: clamp(27px, 3.2vw, 38px); }
.opportunity-card p:last-child { margin: 0; color: var(--muted); }
.opportunities-back { margin: 42px 0 0; }

footer { padding: 68px 0 28px; color: #dce7ef; background: var(--navy-deep); border-top: 8px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .6fr; gap: 50px; }
.footer-grid .brand { padding: 12px; background: var(--cream); border-radius: 7px; }
.footer-grid .brand-lockup { width: 275px; }
.footer-grid h2 { margin-bottom: 18px; color: var(--gold); font-size: 15px; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { display: block; margin: 8px 0; font-size: 14px; }
.footer-grid > div:first-child p { margin-top: 18px; }
.legal { display: flex; justify-content: space-between; gap: 35px; margin-top: 48px; padding-top: 22px; color: #aebdcc; border-top: 1px solid rgb(255 255 255 / 16%); }
.legal p { margin: 0; font-size: 12px; }

@media (max-width: 1120px) {
  .site-header { height: 84px; }
  .brand-lockup { width: 218px; }
  .menu { display: block; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    align-self: auto;
    padding: 18px 24px 26px;
    background: var(--cream);
    border-bottom: 4px solid var(--gold);
    box-shadow: var(--shadow);
  }
  .site-header nav.open { display: grid; gap: 0; }
  .site-header nav a { display: block; padding: 11px 4px; font-size: 17px; }
  .site-header nav a::after { right: auto; bottom: 7px; width: 44px; }
  .hero-grid { grid-template-columns: 1fr 440px; gap: 28px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .card:last-child { border-bottom: 0; }
  .card h2 { margin-top: 22px; }
  .support-grid, .governance-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .instagram-meta { display: block; }
  .instagram-meta strong { display: block; margin-top: 5px; }
  .opportunity-card { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; padding: 72px 0 120px; }
  .hero-copy { max-width: 680px; }
  .brand-showcase { max-width: 600px; margin-inline: auto; padding-top: 10px; }
  .quick { margin-top: -46px; }
  .split, .form-layout, .contact-layout, .contact-card { grid-template-columns: 1fr; }
  .stay-connected-list { grid-template-columns: 1fr; }
  .interest-form-section { margin-top: 60px; }
  .social-feed-heading { align-items: flex-start; flex-direction: column; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .split { gap: 25px; }
  .three { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 32px, 1200px); }
  .site-header { height: 76px; }
  .brand-lockup { width: 185px; }
  .site-header nav { top: 72px; padding-inline: 16px; }
  .hero-grid { padding: 58px 0 100px; }
  .hero h1 { font-size: 50px; }
  .hero h1 br { display: none; }
  .lede { font-size: 17px; }
  .actions { align-items: stretch; flex-direction: column; }
  .google-form { height: 1680px; }
  .social-feed { padding: 72px 0; }
  .instagram-grid { grid-template-columns: 1fr; gap: 18px; }
  .instagram-post { display: grid; grid-template-columns: 132px 1fr; align-items: stretch; }
  .instagram-image { aspect-ratio: auto; min-height: 132px; }
  .instagram-meta { display: flex; align-items: center; padding: 18px; }
  .instagram-meta strong { display: inline; margin-top: 0; }
  .button { width: 100%; }
  .brand-showcase { padding-inline: 0; }
  .brand-showcase figcaption { font-size: 15px; letter-spacing: .1em; }
  .quick { padding-bottom: 65px; }
  .card { padding: 30px 25px; }
  .mission, .content { padding: 72px 0; }
  .mission { padding-bottom: 78px; }
  .page-hero { padding: 66px 0; }
  .page-hero::after { right: -100px; width: 360px; }
  .two, .choices { grid-template-columns: 1fr; }
  .signup, .contact-form { padding: 24px 18px; }
  .calendar-top, .legal { align-items: flex-start; flex-direction: column; }
  .calendar-actions { display: grid; grid-template-columns: 1fr; }
  .calendar-embed { height: 650px; }
  .calendar-empty { min-height: 320px; padding: 34px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-grid .brand-lockup { width: 235px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .button:hover, .card:hover { transform: none; }
}
