:root {
  --shell-paper: #fbfaf7;
  --shell-ink: #1c1d1b;
  --shell-muted: #72736e;
  --shell-line: #d9d8d3;
  --shell-accent: #d2553d;
  --shell-blue: #425b7c;
  --shell-sun: #dca653;
  --shell-max: 1080px;
}
.site-shell-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--shell-blue) 0 46%, var(--shell-accent) 46% 78%, var(--shell-sun) 78%);
}
.site-shell-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--shell-ink);
  background: rgba(251,250,247,.96);
  border-bottom: 1px solid var(--shell-ink);
  box-shadow: 0 4px 0 rgba(66,91,124,.12);
  backdrop-filter: blur(12px);
}
.site-shell-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
  width: min(var(--shell-max), calc(100vw - 40px));
  min-height: 64px;
  margin: 0 auto;
  padding: .8rem 0;
}
.site-shell-wordmark {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
  color: var(--shell-ink) !important;
  font-family: "Newsreader", Lora, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: 1;
  white-space: nowrap;
}
.site-shell-mark {
  display: block;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border: 1px solid var(--shell-accent);
  background:
    linear-gradient(var(--shell-paper),var(--shell-paper)) 6px 6px/11px 2px no-repeat,
    linear-gradient(var(--shell-paper),var(--shell-paper)) 6px 11px/15px 2px no-repeat,
    linear-gradient(var(--shell-paper),var(--shell-paper)) 6px 16px/8px 2px no-repeat,
    var(--shell-accent);
  transform: rotate(-4deg);
}
.site-shell-brand-copy {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}
.site-shell-brand-name { display: block; line-height: 1; }
.site-shell-tagline {
  display: block;
  color: var(--shell-muted);
  font-family: "DM Sans", "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-shell-nav {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: .25rem;
  color: var(--shell-muted);
}
.site-shell-nav a {
  padding: .45rem .7rem;
  border: 1px solid transparent;
  color: inherit !important;
  font-family: "DM Sans", "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.site-shell-nav a:hover,
.site-shell-nav a:focus-visible {
  border-color: var(--shell-accent);
  color: var(--shell-ink) !important;
  background: #f3eee5;
}
.site-shell-calendar {
  padding: .45rem .65rem;
  border-left: 1px solid var(--shell-line);
  color: var(--shell-blue) !important;
  font-family: "DM Sans", "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.site-shell-calendar span {
  display: block;
  margin-bottom: .15rem;
  color: var(--shell-muted);
  font-size: .58rem;
  letter-spacing: .1em;
}
.site-shell-calendar:hover { color: var(--shell-accent) !important; }
@media (max-width: 767px) {
  .site-shell-inner {
    grid-template-columns: 1fr;
    gap: .65rem;
    width: calc(100vw - 32px);
    padding: .7rem 0;
  }
  .site-shell-brand-copy { gap: 0; }
  .site-shell-tagline, .site-shell-calendar { display: none; }
  .site-shell-nav {
    grid-column: 1;
    grid-row: 2;
    justify-content: stretch;
    gap: .55rem;
    border-top: 1px solid var(--shell-line);
    padding-top: .5rem;
  }
  .site-shell-nav a {
    flex: 1;
    padding: .42rem .2rem;
    text-align: center;
    font-size: .62rem;
  }
}
