:root {
  --blue: #073763;
  --navy: #132B4F;
  --cyan: #00AEEF;
  --amber: #F29F05;
  --white: #F6F9FC;
  --text: #1E2933;
  --muted: #607086;
  --line: rgba(7, 55, 99, 0.14);
  --shadow: 0 18px 45px rgba(7, 55, 99, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: var(--blue);
  color: #fff;
  border-bottom: 4px solid var(--amber);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topline {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font: 800 1rem Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.contact-chip,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-chip,
.button-primary {
  background: var(--amber);
  color: #10233f;
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
}

.primary-nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  background: transparent;
  white-space: normal;
}

.primary-nav .pure-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.primary-nav .pure-menu-link {
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  padding: 17px 14px;
}

.primary-nav .pure-menu-link:hover,
.primary-nav .pure-menu-link:focus {
  background: rgba(0, 174, 239, 0.18);
  color: #fff;
}

.pure-menu-children {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pure-menu-children .pure-menu-link {
  color: var(--blue);
  min-width: 210px;
  padding: 12px 14px;
}

.hero {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  display: grid;
  align-items: end;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,55,99,.92) 0%, rgba(19,43,79,.68) 45%, rgba(7,55,99,.18) 100%);
}

.hero-copy {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3, h4 {
  font-family: Montserrat, Inter, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  color: inherit;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.lead,
.hero-copy .lead,
.page-hero p {
  max-width: 720px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section-band {
  background: #fff;
  padding: 42px 0;
}

.quick-grid {
  margin: -8px;
}

.quick-grid > div {
  padding: 8px;
}

.quick-card {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(7,55,99,.08);
}

.quick-card span {
  color: var(--amber);
  font-weight: 800;
}

.quick-card strong {
  font: 800 1.05rem Montserrat, sans-serif;
}

.page-hero {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  padding: 58px 0 64px;
}

.media-hero {
  background:
    linear-gradient(90deg, rgba(7,55,99,.94), rgba(19,43,79,.74)),
    url("/assets/images/img_7d88507b213a.png") center/cover;
}

.breadcrumbs {
  margin-bottom: 20px;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
}

.breadcrumbs li + li::before {
  content: "/";
  color: var(--amber);
  margin: 0 8px;
}

.content-shell {
  padding: 54px 0 72px;
}

.prose-card,
.sidebar-nav,
.toc-panel,
.category-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.prose-card {
  padding: clamp(24px, 4vw, 42px);
  margin-right: 24px;
}

.prose-card h2,
.prose-card h3 {
  color: var(--blue);
}

.prose-card p {
  margin: 0 0 1.1rem;
}

.prose-card a,
.source-links a,
.site-footer a,
.category-card a,
.toc-panel a,
.content-list a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(0,174,239,.45);
  text-underline-offset: 3px;
}

.prose-card a:hover,
.source-links a:hover,
.site-footer a:hover,
.category-card a:hover,
.toc-panel a:hover,
.content-list a:hover {
  color: var(--cyan);
}

.venue-gallery {
  margin: -8px 0 18px -8px;
}

.venue-gallery > div {
  padding: 8px;
}

.venue-gallery figure,
.content-image {
  margin: 0 0 16px;
}

.venue-gallery img,
.content-image img,
.category-card img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.venue-gallery img {
  aspect-ratio: 4 / 3;
}

.table-wrap {
  overflow-x: auto;
}

.pure-table {
  width: 100%;
  margin: 18px 0;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 24px 0 0;
}

.source-links a {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  background: #fff;
  font-size: .86rem;
}

.sidebar-nav {
  padding: 20px;
}

.sidebar-nav .pure-menu-link {
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  white-space: normal;
}

.meta-line {
  color: var(--muted);
  font-size: .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.main-image {
  float: right;
  width: min(320px, 45%);
  margin: 0 0 20px 24px;
}

.toc-panel {
  padding: 20px;
  margin-bottom: 20px;
}

.toc-panel h2 {
  margin-top: 0;
  font-size: 1rem;
  color: var(--blue);
}

.toc-panel a {
  display: block;
  margin: 8px 0;
}

.category-grid {
  margin: -10px;
}

.category-grid > div {
  padding: 10px;
}

.category-card {
  padding: 22px;
  height: 100%;
}

.category-card h2 {
  color: var(--blue);
  font-size: 1.25rem;
}

.category-card.horizontal {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
}

.category-card.minimal {
  border-left: 4px solid var(--amber);
  box-shadow: none;
}

.site-footer {
  background: #071f3b;
  color: #fff;
  padding: 48px 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-inner > div {
  padding: 12px 22px 12px 0;
}

.footer-brand img {
  width: 150px;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 18px;
}

.site-footer h2 {
  font-size: 1rem;
  color: var(--cyan);
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 7px 0;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 760px) {
  .topline {
    min-height: 70px;
  }

  .brand span {
    display: none;
  }

  .primary-nav .pure-menu-link {
    padding: 12px 10px;
    font-size: .72rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    padding: 86px 0 72px;
  }

  .prose-card {
    margin-right: 0;
  }

  .sidebar-nav {
    margin-top: 24px;
  }

  .main-image {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }

  .category-card.horizontal {
    grid-template-columns: 1fr;
  }
}
