:root {
  --navy: #0c2330;
  --navy-2: #12384a;
  --navy-3: #19495f;
  --blue: #007297;
  --blue-deep: #005a78;
  --teal: #8fb8ce;
  --teal-soft: rgba(143, 184, 206, 0.16);
  --red: #9d2235;
  --sand: #f5f3ee;
  --mist: #edf4f7;
  --ink: #26333c;
  --muted: #66747d;
  --line: rgba(12, 35, 48, 0.1);
  --white: #fff;
  --radius: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px rgba(7, 29, 41, 0.08);
  --shadow-lg: 0 24px 54px rgba(7, 29, 41, 0.13);
  --max: 1220px;
}

@font-face { font-family: "Open Sans"; src: url("Branding/Approved Branding Fonts/OpenSans-Regular.ttf"); font-weight: 400; }
@font-face { font-family: "Open Sans"; src: url("Branding/Approved Branding Fonts/OpenSans-Semibold.ttf"); font-weight: 600; }
@font-face { font-family: "Open Sans"; src: url("Branding/Approved Branding Fonts/OpenSans-Bold.ttf"); font-weight: 700; }
@font-face { font-family: "PT Serif"; src: url("Branding/Approved Branding Fonts/PT_Serif/PT_Serif-Web-Regular.ttf"); font-weight: 400; }
@font-face { font-family: "PT Serif"; src: url("Branding/Approved Branding Fonts/PT_Serif/PT_Serif-Web-Bold.ttf"); font-weight: 700; }
@font-face { font-family: "Novecentowide"; src: url("Branding/Approved Branding Fonts/Novecentowide-Bold.otf"); font-weight: 700; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(143, 184, 206, 0.18), transparent 24%),
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 18%, #f7f4ef 100%);
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page-wrap { min-height: 100vh; }

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.topbar-inner {
  min-height: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  flex-wrap: wrap;
}

.inline-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-links span,
.inline-links a {
  line-height: 1.2;
}

.inline-links a {
  opacity: 0.92;
}

.topbar strong { color: var(--white); }
.topbar a:hover { color: var(--teal); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 251, 252, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12, 35, 48, 0.06);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 158px;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.brand-copy span {
  font-size: 12px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.main-nav a,
.mobile-drawer a {
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(0, 114, 151, 0.08);
  color: var(--blue);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: 180ms ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-2); }
.btn-outline-dark { border-color: var(--line); background: var(--white); color: var(--ink); }
.btn-outline-dark:hover { border-color: rgba(0, 114, 151, 0.3); color: var(--blue); }
.btn-outline-light { border-color: rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.08); color: var(--white); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-drawer {
  display: none;
  padding: 0 0 18px;
}

.mobile-drawer nav {
  display: grid;
  gap: 10px;
}

.mobile-drawer a {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

body.menu-open .mobile-drawer { display: block; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Novecentowide", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.section {
  padding: 76px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head h1,
.section-head h2,
.hero-copy h1,
.page-hero-copy h1,
.footer-brand h3,
.callout-copy h2 {
  margin: 0;
  font-family: "PT Serif", serif;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.section-head h2,
.page-hero-copy h1,
.callout-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.lede,
.section-copy,
.section-head p {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
}

.hero {
  padding: 34px 0 24px;
}

.hero-shell,
.page-hero-shell,
.callout-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.hero-shell {
  min-height: 760px;
  background:
    linear-gradient(114deg, rgba(12, 35, 48, 0.94) 0%, rgba(12, 35, 48, 0.72) 43%, rgba(12, 35, 48, 0.3) 100%),
    url("Branding/Graphics/MAP YOUR MISSION_DELIVERABLES/MAP YOUR MISSION_1920x1080.jpg") center/cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 30px;
  padding: 52px;
}

.hero-copy {
  color: var(--white);
  padding-top: 28px;
}

.hero-kicker,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-kicker {
  background: rgba(143, 184, 206, 0.12);
  border: 1px solid rgba(143, 184, 206, 0.24);
  color: var(--teal);
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.hero-copy h1 {
  font-size: clamp(3.35rem, 7vw, 6rem);
  margin-top: 24px;
  max-width: 10ch;
}

.hero-copy h1 span { color: var(--teal); }
.hero-copy .lede {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 560px;
}

.hero-actions,
.stacked-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions { margin-top: 30px; }

.quick-links,
.pills-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-links { margin-top: 20px; }

.quick-links a,
.pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

.hero-meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta strong {
  display: block;
  font-family: "PT Serif", serif;
  font-size: 1.95rem;
  color: var(--white);
}

.hero-meta span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.surface-card,
.mini-card,
.info-card,
.feature-card,
.path-card,
.list-card,
.template-card,
.content-block,
.sidebar-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.surface-card { padding: 24px; }

.mini-event-list,
.stack-list,
.detail-list,
.link-list {
  display: grid;
  gap: 14px;
}

.mini-card {
  padding: 14px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
}

.date-block {
  min-height: 74px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px 8px;
}

.date-block span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.date-block strong {
  display: block;
  font-family: "PT Serif", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.mini-card b { display: block; margin-bottom: 4px; }
.mini-card small { display: block; color: var(--muted); margin-bottom: 6px; }
.text-link { color: var(--blue); font-weight: 700; }

.action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.action-card,
.template-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.action-card {
  background: linear-gradient(180deg, rgba(12, 35, 48, 0.88), rgba(0, 114, 151, 0.76));
}

.action-card:nth-child(2) { background: linear-gradient(180deg, rgba(0, 114, 151, 0.92), rgba(18, 56, 74, 0.88)); }
.action-card:nth-child(3) { background: linear-gradient(180deg, rgba(157, 34, 53, 0.9), rgba(12, 35, 48, 0.9)); }
.action-card:nth-child(4) { background: linear-gradient(180deg, rgba(18, 56, 74, 0.96), rgba(143, 184, 206, 0.84)); }

.action-card small,
.template-card small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.action-card h3,
.template-card h3,
.feature-card h3,
.path-card h3,
.list-card h3,
.sidebar-card h3 {
  margin: 0 0 10px;
}

.action-card h3,
.template-card h3 {
  font-family: "PT Serif", serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.action-card p,
.template-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  max-width: 28ch;
}

.action-card .arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.path-card,
.list-card,
.template-card,
.content-block,
.sidebar-card,
.info-card {
  padding: 24px;
}

.feature-card p,
.path-card p,
.list-card p,
.content-block p,
.sidebar-card p,
.info-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 114, 151, 0.09);
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 16px;
}

.logo-chip {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
}

.callout-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background:
    linear-gradient(140deg, rgba(12, 35, 48, 0.96), rgba(18, 56, 74, 0.92)),
    url("Branding/Graphics/MAP YOUR MISSION_DELIVERABLES/MAP YOUR MISSION_1280x720.jpg") center/cover;
  color: var(--white);
}

.callout-media {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: end;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(12, 35, 48, 0.18), rgba(12, 35, 48, 0.6)),
    url("Branding/Graphics/MAP YOUR MISSION_DELIVERABLES/MAP YOUR MISSION_1280x720.jpg") center/cover;
}

.play-badge {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 28px;
  margin-bottom: 18px;
}

.callout-copy {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.callout-copy .section-copy { color: rgba(255, 255, 255, 0.74); margin-bottom: 20px; }

.dark-section {
  background: linear-gradient(180deg, rgba(12, 35, 48, 0.98), rgba(18, 56, 74, 0.98));
  color: var(--white);
}

.dark-section .section-head p,
.dark-section .section-copy,
.dark-section .list-card p,
.dark-section .sidebar-card p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-section .surface-card,
.dark-section .list-card,
.dark-section .sidebar-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.page-hero {
  padding: 34px 0 10px;
}

.page-hero-shell {
  min-height: 420px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(114deg, rgba(12, 35, 48, 0.94) 0%, rgba(12, 35, 48, 0.76) 48%, rgba(12, 35, 48, 0.34) 100%),
    url("Branding/Graphics/MAP YOUR MISSION_DELIVERABLES/MAP YOUR MISSION_1920x1080_IMAG.jpg") center/cover;
}

.page-hero-copy {
  color: var(--white);
  padding: 44px;
  max-width: 760px;
}

.page-hero-copy p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
}

.content-stack {
  display: grid;
  gap: 20px;
}

.content-block h2,
.sidebar-card h3 {
  margin: 0 0 14px;
  font-family: "PT Serif", serif;
}

.content-block ul,
.sidebar-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.content-block li,
.sidebar-card li {
  margin-bottom: 10px;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  overflow: hidden;
}

.event-card-top {
  padding: 24px;
  min-height: 170px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 35, 48, 0.96), rgba(0, 114, 151, 0.86));
}

.event-card:nth-child(2) .event-card-top { background: linear-gradient(180deg, rgba(157, 34, 53, 0.92), rgba(12, 35, 48, 0.9)); }
.event-card:nth-child(3) .event-card-top { background: linear-gradient(180deg, rgba(18, 56, 74, 0.96), rgba(143, 184, 206, 0.86)); }

.event-type {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.event-body {
  padding: 24px;
}

.event-body p { margin: 0 0 14px; }

.event-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
}

.event-meta strong { color: var(--ink); }
.event-meta span { color: var(--muted); }

.visit-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(12, 35, 48, 0.98), rgba(18, 56, 74, 0.95)),
    url("Branding/Graphics/MAP YOUR MISSION_DELIVERABLES/MAP YOUR MISSION_1920x1080.jpg") center/cover;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.visit-copy,
.visit-card {
  padding: 36px;
}

.visit-copy .section-copy { color: rgba(255, 255, 255, 0.74); margin: 0; }

.step-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.step h3 { margin: 0 0 4px; font-size: 1rem; }
.step p { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 14px; }

.visit-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
}

.visit-detail {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--sand);
  border: 1px solid rgba(12, 35, 48, 0.06);
}

.visit-detail + .visit-detail { margin-top: 12px; }
.visit-detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-detail span { color: var(--muted); font-size: 14px; }

.site-footer {
  padding-top: 28px;
}

.footer-shell {
  border-radius: 34px 34px 0 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.74);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand img {
  width: 188px;
  margin-bottom: 18px;
}

.footer-brand p {
  margin: 0 0 18px;
  max-width: 330px;
  font-size: 14px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-family: "Novecentowide", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a:hover,
.footer-bottom a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.muted-note {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .main-nav,
  .header-actions .desktop-only {
    display: none;
  }

  .menu-toggle { display: inline-block; }
  .action-grid,
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid,
  .callout-shell,
  .visit-panel,
  .page-layout,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .topbar-inner,
  .section-head,
  .header-inner {
    flex-direction: column;
    align-items: start;
  }

  .header-inner {
    padding: 12px 0;
    gap: 12px;
  }

  .topbar {
    font-size: 10px;
  }

  .topbar-inner {
    min-height: 0;
    gap: 6px;
    padding: 5px 0;
  }

  .brand { width: 100%; justify-content: space-between; }
  .brand-copy { display: none; }
  .header-actions { width: 100%; justify-content: flex-end; }

  .hero-shell,
  .page-hero-shell,
  .callout-shell,
  .visit-panel,
  .footer-shell {
    border-radius: 24px;
  }

  .hero-grid,
  .page-hero-copy,
  .callout-copy,
  .visit-copy,
  .visit-card {
    padding: 24px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: none;
  }

  .action-grid,
  .grid-4,
  .card-row {
    grid-template-columns: 1fr;
  }

  .footer-grid { grid-template-columns: 1fr; }
}
