:root {
  --ink: #061f55;
  --ink-soft: #173b78;
  --blue: #066be8;
  --teal: #09aaa2;
  --teal-dark: #067e79;
  --orange: #f58f14;
  --orange-hover: #dc780b;
  --sky: #eaf6ff;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --line: #cfe6f7;
  --shadow: 0 18px 50px rgba(6, 31, 85, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface-soft);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body {
  margin: 0;
  min-width: 320px;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 max(22px, calc((100vw - var(--max-width)) / 2));
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  background: var(--surface);
  border-radius: 8px;
  display: flex;
  flex: 0 0 82px;
  min-height: 82px;
  padding: 0;
}

.brand img {
  height: 82px;
  max-height: 82px;
  object-fit: contain;
  object-position: center;
  width: 82px;
}

.main-nav,
.site-footer nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.main-nav {
  padding: 14px 0;
}

.main-nav a,
.site-footer a {
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 700;
  padding: 9px 13px;
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  border-color: var(--line);
}

.main-nav a.active,
.site-footer a.active {
  background: var(--ink);
  color: var(--surface);
}

main {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 26px 22px 56px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  padding: 10px 0 8px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 9px;
}

.hero-copy p:not(.eyebrow),
.subpage-hero p,
.intro-band p,
.youtube-card p,
.promo-card p,
.coming-soon p,
.contact-card p,
.contact-note p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.youtube-mark {
  height: 18px;
  margin-right: 9px;
  width: 25px;
}

.youtube-heading-mark {
  display: inline-block;
  height: 0.72em;
  margin-right: 12px;
  vertical-align: 0.02em;
  width: auto;
}

.button.primary {
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(245, 143, 20, 0.26);
  color: var(--surface);
  text-shadow: 0 1px 2px rgba(17, 17, 17, 0.75);
}

.button.primary:hover {
  background: var(--orange-hover);
}

.button.primary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.button.primary .youtube-mark {
  filter: drop-shadow(1px 0 0 #111111)
    drop-shadow(-1px 0 0 #111111)
    drop-shadow(0 1px 0 #111111)
    drop-shadow(0 -1px 0 #111111);
}

.button.secondary {
  background: var(--surface);
  border-color: var(--teal);
  color: var(--teal-dark);
}

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

.hero-media img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.intro-band,
.youtube-card,
.coming-soon,
.contact-layout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-band {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  margin-top: 18px;
  padding: 28px;
}

.section-heading {
  margin: 44px 0 18px;
}

.home-visuals {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.home-visuals figure {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.home-visuals img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.home-visuals figcaption {
  color: var(--ink-soft);
  font-weight: 800;
  padding: 16px 18px 18px;
}

.youtube-card {
  align-items: center;
  border-left: 8px solid var(--blue);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px;
}

.youtube-card > div {
  min-width: 0;
}

.youtube-card .button {
  flex: 0 0 auto;
}

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

.promo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 210px;
  padding: 28px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.promo-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.promo-icon {
  align-items: center;
  background: var(--sky);
  border-radius: 8px;
  color: var(--blue);
  display: inline-flex;
  font-size: 1.7rem;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.promo-heading {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.promo-heading h3 {
  margin: 0;
}

.youtube-promo-icon img {
  width: 28px;
}

.subpage-hero {
  background: linear-gradient(135deg, var(--sky), var(--surface));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px;
}

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

.video-section {
  margin-top: 28px;
}

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

.video-loading,
.video-feed-error {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
}

.video-feed-error a {
  color: var(--teal-dark);
  font-weight: 800;
}

.video-playlist-fallback p {
  color: var(--ink-soft);
  margin: 14px 0 0;
}

.video-playlist-fallback a {
  color: var(--teal-dark);
  font-weight: 800;
}

.video-embed {
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-embed iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.video-card {
  min-width: 0;
}

.video-card a {
  display: block;
  text-decoration: none;
}

.video-thumbnail {
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(6, 31, 85, 0.13);
  object-fit: cover;
  transition: transform 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.video-card a:hover .video-thumbnail,
.video-card a:focus-visible .video-thumbnail {
  box-shadow: 0 14px 32px rgba(6, 31, 85, 0.2);
  transform: translateY(-3px);
}

.video-card a:focus-visible {
  border-radius: 8px;
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.video-title {
  font-size: 1.03rem;
  line-height: 1.35;
  margin: 12px 0 5px;
}

.video-date {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0;
}

.video-channel-link {
  margin-top: 20px;
}

.coming-soon {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 220px minmax(0, 1fr);
  margin-top: 28px;
  padding: 34px;
}

.placeholder-print {
  align-items: end;
  background: var(--sky);
  border: 2px dashed var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  height: 180px;
  justify-content: center;
  padding: 28px;
}

.placeholder-print span {
  background: linear-gradient(180deg, var(--teal), var(--blue));
  border-radius: 8px 8px 4px 4px;
  display: block;
  width: 28px;
}

.placeholder-print span:nth-child(1) {
  height: 68px;
}

.placeholder-print span:nth-child(2) {
  height: 106px;
}

.placeholder-print span:nth-child(3) {
  height: 138px;
}

.placeholder-print span:nth-child(4) {
  height: 92px;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 340px;
  margin-top: 28px;
  padding: 32px;
}

.contact-card,
.contact-note {
  min-width: 0;
}

.contact-card a {
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-card .button {
  color: var(--surface);
  margin-top: 12px;
}

form {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  border: 2px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 12px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(9, 170, 162, 0.18);
}

textarea {
  resize: vertical;
}

.honeypot {
  left: -10000px;
  position: absolute;
}

form .button {
  justify-self: start;
  margin-top: 8px;
}

.contact-note {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.contact-note img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.contact-note h2,
.contact-note p {
  padding-left: 20px;
  padding-right: 20px;
}

.contact-note h2 {
  font-size: 1.35rem;
  margin: 20px 0 8px;
}

.contact-note p {
  padding-bottom: 20px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--surface);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 24px max(22px, calc((100vw - var(--max-width)) / 2));
}

.site-footer p {
  margin: 0;
}

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

.site-footer a:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer a.active {
  background: var(--surface);
  color: var(--ink);
}

@media (max-width: 820px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    position: static;
  }

  .brand {
    flex-basis: auto;
  }

  .main-nav a {
    flex: 1 1 92px;
    text-align: center;
  }

  main {
    padding-top: 24px;
  }

  .hero,
  .intro-band,
  .home-visuals,
  .coming-soon,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 0;
  }

  .hero-media {
    order: -1;
  }

  .youtube-card {
    align-items: stretch;
    flex-direction: column;
  }

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

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

@media (max-width: 520px) {
  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-actions,
  .button,
  .site-footer {
    width: 100%;
  }

  .button {
    display: flex;
  }

  .intro-band,
  .youtube-card,
  .promo-card,
  .subpage-hero,
  .coming-soon,
  .contact-layout {
    padding: 24px;
  }

  .coming-soon {
    gap: 22px;
  }

  .placeholder-print {
    height: 150px;
  }

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