:root {
  --navy: #062b56;
  --navy-2: #0b3d70;
  --green: #286f5b;
  --gold: #c99a2e;
  --gold-soft: #f3dfaa;
  --warm-grey: #f4f1eb;
  --ink: #142033;
  --muted: #647084;
  --white: #ffffff;
  --line: #ded8cc;
  --shadow: 0 18px 50px rgba(6, 43, 86, .14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-grey);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--navy-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(6, 43, 86, .12);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold-soft);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(201, 154, 46, .16);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  padding: 9px 12px;
}

.hero,
.page-hero {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(6, 43, 86, .94), rgba(40, 111, 91, .86)),
    var(--navy);
  color: var(--white);
}

.hero.compact {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
}

.hero-copy {
  max-width: 680px;
}

.hero h1,
.page-hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

.hero p {
  color: rgba(255, 255, 255, .9);
}

.lead {
  font-size: 22px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

.hero-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

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

.hero-media.portrait {
  aspect-ratio: 4 / 3;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(6, 43, 86, .2);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.button.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.section {
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px);
}

.two-column,
.content-layout,
.video-grid,
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
}

h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.panel,
.card,
.article-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(20, 32, 51, .08);
}

.panel {
  padding: clamp(22px, 4vw, 34px);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 46, .18);
}

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

.feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.feature-band div {
  max-width: 850px;
}

.gold-sponsor-banner {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(244, 241, 235, .9)),
    var(--warm-grey);
}

.gold-sponsor-inner {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(201, 154, 46, .45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 116, 85, .98), rgba(6, 43, 86, .96));
  box-shadow: var(--shadow);
}

.gold-sponsor-brand {
  display: grid;
  gap: 20px;
  align-content: center;
  justify-items: start;
}

.gold-sponsor-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gold-sponsor-logo {
  width: min(100%, 330px);
  height: auto;
  object-fit: contain;
}

.gold-sponsor-content {
  color: var(--white);
}

.gold-sponsor-content h2 {
  color: var(--white);
}

.gold-sponsor-content .eyebrow {
  color: var(--gold-soft);
}

.gold-sponsor-subheading {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 800;
  line-height: 1.25;
}

.gold-sponsor-lead {
  font-size: 20px;
  font-weight: 800;
}

.gold-sponsor-content p {
  color: rgba(255, 255, 255, .9);
}

.gold-sponsor-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
}

.gold-sponsor-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, .94);
}

.gold-sponsor-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(244, 241, 235, .90)),
    url("assets/hospoguy-brand.png") right center / min(48vw, 620px) auto no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 760px;
}

.video-grid {
  align-items: center;
}

.video-box {
  display: grid;
  place-items: center;
  min-height: 330px;
  border: 2px dashed rgba(6, 43, 86, .24);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

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

.card {
  padding: 20px;
}

.sponsor-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.sponsor-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: clamp(20px, 4vw, 28px);
}

.sponsor-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(201, 154, 46, .35);
  border-radius: 8px;
  background: linear-gradient(135deg, #061f3f, var(--navy-2));
}

.sponsor-logo {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.sponsor-card-body {
  display: grid;
  gap: 12px;
}

.sponsor-card-body .button {
  justify-self: start;
}

.card p,
.article-card p,
.panel p {
  color: var(--muted);
}

.articles {
  display: grid;
  gap: 18px;
}

.article-card {
  padding: clamp(22px, 4vw, 34px);
}

.article-card a {
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.category-grid span {
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  border-left: 5px solid var(--gold);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(20, 32, 51, .07);
}

.contact-band {
  background: var(--navy);
  color: var(--white);
}

.contact-band h2,
.contact-band .eyebrow {
  color: var(--white);
}

.contact-band p {
  color: rgba(255, 255, 255, .84);
}

.email-form {
  display: grid;
  gap: 14px;
}

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

.email-form label {
  display: grid;
  gap: 6px;
  color: inherit;
  font-weight: 800;
}

.email-form input,
.email-form select,
.email-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
}

.email-form .full,
.email-form button {
  grid-column: 1 / -1;
}

.contact-card a {
  font-weight: 800;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 72px);
  background: #041f3f;
  color: rgba(255, 255, 255, .86);
  text-align: center;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  color: var(--gold-soft);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .hero.compact,
  .two-column,
  .content-layout,
  .video-grid,
  .contact-band,
  .gold-sponsor-inner,
  .sponsor-card {
    grid-template-columns: 1fr;
  }

  .gold-sponsor-brand {
    justify-items: center;
    text-align: center;
  }

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

  .page-hero {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(244, 241, 235, .94)),
      url("assets/hospoguy-brand.png") right bottom / 440px auto no-repeat;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .button-row,
  .feature-band {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .sponsor-card-body .button {
    justify-self: stretch;
  }

  .card-grid,
  .category-grid,
  .gold-sponsor-points,
  .check-list.columns,
  .email-form.wide {
    grid-template-columns: 1fr;
  }

  .gold-sponsor-inner {
    padding: 22px;
  }

  .page-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 241, 235, .96));
  }
}
