/* Canonical page shell. Scoped selectors isolate the recovered page styles. */
:root {
  --shell-deep: #153f48;
  --shell-deeper: #102f36;
  --shell-gold: #d4b06a;
  --shell-cream: #f3eee4;
  --shell-line: rgba(255,255,255,.18);
  --shell-ui: 'Inter', Arial, Helvetica, sans-serif;
}
#site-header.site-header {
  position: relative;
  inset: auto;
  z-index: 100;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  background: var(--shell-deep);
  color: var(--shell-cream);
  border-bottom: 1px solid var(--shell-line);
}
#site-header .site-header__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1600px;
  min-height: 88px;
  margin: 0 auto;
  padding: 12px clamp(20px,3vw,48px);
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 24px;
}
#site-header .shell-brand,
#site-footer .shell-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  text-decoration: none;
  text-align: left;
}
#site-header .shell-brand__icon,
#site-footer .shell-brand__icon {
  position: static;
  display: block;
  flex: 0 0 54px;
  width: 54px;
  height: 50px;
  max-width: none;
  margin: 0;
  object-fit: contain;
  filter: none;
  transform: none;
}
#site-header .shell-brand__copy,
#site-footer .shell-brand__copy { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
#site-header .shell-brand__name,
#site-footer .shell-brand__name {
  font: 500 21px/1 Georgia, 'Times New Roman', serif;
  letter-spacing: .12em;
  color: #fff;
}
#site-header .shell-brand__section,
#site-footer .shell-brand__section {
  font: 500 10px/1.35 var(--shell-ui);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
#site-header .shell-brand__location,
#site-footer .shell-brand__location {
  font: 400 9px/1.35 var(--shell-ui);
  letter-spacing: .13em;
  color: #b9d6dc;
}
#site-header .site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(13px,1.4vw,24px);
  margin: 0;
}
#site-header .site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  font: 400 14px/1.4 var(--shell-ui);
  letter-spacing: 0;
  color: var(--shell-cream);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
#site-header .site-nav a[aria-current="page"] { color: var(--shell-gold); border-bottom-color: var(--shell-gold); }
#site-header .site-nav a:hover { color: #fff; border-bottom-color: #b9d6dc; }
#site-header .site-cta,
#site-header .site-mobile__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--shell-gold);
  color: #173a42;
  font: 600 12px/1.4 var(--shell-ui);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
#site-header .site-cta:hover { background: #e3c389; }
#site-header .site-mobile { display: none; justify-self: end; margin: 0; padding: 0; border: 0; }
#site-header .site-mobile summary {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 44px;
  padding: 10px 14px;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  color: #fff;
  font: 500 14px/1.4 var(--shell-ui);
}
#site-header .site-mobile summary::-webkit-details-marker { display: none; }
#site-header .site-mobile[open] summary { background: rgba(255,255,255,.12); }
#site-header .site-mobile nav {
  position: absolute;
  top: 100%;
  right: 16px;
  z-index: 120;
  box-sizing: border-box;
  width: min(340px,calc(100vw - 32px));
  max-height: calc(100dvh - 96px);
  overflow-y: auto;
  margin: 0;
  padding: 12px;
  background: var(--shell-deeper);
  border: 1px solid var(--shell-line);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
#site-header .site-mobile:not([open]) nav { display: none; }
#site-header .site-mobile nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--shell-cream);
  font: 400 14px/1.4 var(--shell-ui);
  text-decoration: none;
  border-radius: 6px;
}
#site-header .site-mobile nav a:hover,
#site-header .site-mobile nav a[aria-current="page"] { background: rgba(255,255,255,.08); color: var(--shell-gold); }
#site-header .site-mobile nav .site-mobile__cta { margin-top: 8px; background: var(--shell-gold); color: #173a42; font-weight: 600; }
#site-header a:focus-visible,
#site-header summary:focus-visible,
#site-footer a:focus-visible { outline: 2px solid var(--shell-gold); outline-offset: 5px; }
#site-footer.site-footer {
  display: block;
  grid-template-columns: none;
  gap: 0;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 56px clamp(22px,4vw,64px) 28px;
  background: var(--shell-deeper);
  color: var(--shell-cream);
  font-family: var(--shell-ui);
  text-align: left;
}
#site-footer .site-footer__grid,
#site-footer .events-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px,1.6fr) repeat(3,minmax(130px,1fr));
  max-width: 1440px;
  margin: 0 auto 40px;
  gap: 40px;
  align-items: start;
}
#site-footer .events-footer__grid { grid-template-columns: minmax(280px,1.5fr) minmax(200px,1fr) minmax(240px,1fr); margin-bottom: 0; }
#site-footer .shell-brand { margin-bottom: 22px; }
#site-footer p { max-width: 390px; margin: 0; color: #d5e1e3; font: 400 14px/1.75 var(--shell-ui); }
#site-footer h3 { margin: 0 0 14px; color: var(--shell-gold); font: 600 14px/1.4 var(--shell-ui); letter-spacing: .06em; text-transform: uppercase; }
#site-footer a:not(.shell-brand) { display: block; width: fit-content; max-width: 100%; margin: 0 0 6px; padding: 5px 0; color: #d5e1e3; font: 400 14px/1.6 var(--shell-ui); text-decoration: none; overflow-wrap: anywhere; }
#site-footer a:not(.shell-brand):hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
#site-footer .site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; max-width: 1440px; margin: 0 auto; padding-top: 22px; border-top: 1px solid var(--shell-line); color: #b9cdd1; font: 400 12px/1.6 var(--shell-ui); }
.embed-mode #site-header.site-header,
.embed-mode #site-footer.site-footer { display: none !important; }
/* Preserve the approved provider's full-width registration layout. */
.deftform-registration>.deftform { grid-column: 1/-1 !important; width: 100% !important; max-width: none !important; min-width: 0; justify-self: stretch !important; }
.deftform-registration>.deftform iframe { display: block !important; width: 100% !important; max-width: 100% !important; margin: 0 auto !important; border: 0 !important; }
@media (max-width:1279px) {
  #site-header .site-header__inner { grid-template-columns: minmax(0,1fr) auto; gap: 16px; }
  #site-header .site-nav, #site-header .site-cta { display: none; }
  #site-header .site-mobile { display: block; }
}
@media (max-width:1000px) {
  #site-footer .site-footer__grid, #site-footer .events-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 32px; }
}
@media (max-width:600px) {
  #site-header .site-header__inner { min-height: 80px; padding: 12px 16px; gap: 12px; }
  #site-header .shell-brand { gap: 10px; }
  #site-header .shell-brand__icon { flex-basis: 46px; width: 46px; height: 44px; }
  #site-header .shell-brand__name { font-size: 19px; }
  #site-header .shell-brand__section { font-size: 9px; letter-spacing: .08em; }
  #site-header .shell-brand__location { font-size: 8px; letter-spacing: .08em; }
  #site-footer .site-footer__grid, #site-footer .events-footer__grid { grid-template-columns: minmax(0,1fr); gap: 28px; }
  #site-footer.site-footer { padding-bottom: 80px; }
}
