:root {
  --black: #101010;
  --charcoal: #222222;
  --white: #ffffff;
  --red: #e7283e;
  --red-dark: #bf1730;
  --cream: #fff1db;
  --pale-cream: #f1eacf;
  --text: #171717;
  --muted: #5f5f5f;
  --border: rgba(70, 70, 70, 0.15);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  --gutter: clamp(16px, 6vw, 80px);
  --max: 1280px;
  --ease: 0.3s ease-in-out;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Avenir Next, Avenir, Montserrat, Gotham, Helvetica Neue, Arial, sans-serif;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--black);
  padding: 10px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px var(--gutter);
  background: rgba(16, 16, 16, 0.96);
  color: var(--white);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  width: clamp(160px, 19vw, 238px);
  display: block;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a,
.footer-links a {
  position: relative;
  text-decoration: none;
}

.site-nav > a:not(.button)::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  white-space: nowrap;
}

.language-switch a[aria-current="page"] {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.82);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-light {
  background: var(--white);
  color: var(--black);
}

.button-outline {
  color: var(--red);
  border-color: var(--red);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--red);
  color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(78vh - 86px);
  display: grid;
  align-items: end;
  padding: clamp(104px, 16vh, 160px) var(--gutter) 48px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

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

.hero-media {
  z-index: 0;
}

.hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.12));
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.about-section,
.video-section,
.contact-section,
.policy-page {
  padding: 78px var(--gutter);
}

.about-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 36px;
}

.section-heading span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.support-band h2,
.policy-hero h1 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-grid,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--black);
}

.about-image img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.about-copy {
  border-left: 4px solid var(--red);
  padding-left: clamp(22px, 3vw, 38px);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.65;
}

.about-copy p:last-child,
.support-band p,
.footer-brand p,
.policy-content p:last-child {
  margin-bottom: 0;
}

.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 72px var(--gutter);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.95), rgba(16, 16, 16, 0.72)),
    url("site/wp-content/uploads/2013/10/CCO_Website_Profile_Banner.jpg") center / cover;
}

.support-band div {
  max-width: 760px;
}

.support-band p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.contact-section {
  background: var(--white);
}

.video-section {
  background: var(--white);
}

.video-heading {
  display: flex;
  max-width: none;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.video-heading .button {
  flex: 0 0 auto;
  min-width: 118px;
}

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

.video-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  color: var(--text);
  transition: transform var(--ease);
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-2px);
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  padding: 0;
}

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

.video-thumb {
  display: block;
  width: 100%;
  height: 100%;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 74px;
  height: 50px;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background: #ff0000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.play-icon::before {
  content: "";
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid var(--white);
}

.video-card-body {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 18px 8px 0;
  text-align: center;
}

.video-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
}

.video-card time,
.video-message {
  color: var(--muted);
  font-size: 14px;
}

.video-message {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.55;
}

.contact-details {
  align-self: start;
}

address {
  margin-bottom: 30px;
  color: var(--charcoal);
  font-style: normal;
  line-height: 1.6;
}

address strong {
  display: block;
  margin-bottom: 8px;
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dl div {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 400;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.2);
  border-radius: 5px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(231, 40, 62, 0.35);
  outline-offset: 3px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--red-dark);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 40px;
  align-items: end;
  padding: 56px var(--gutter) 34px;
  color: var(--white);
  background: var(--black);
  border-bottom: 5px solid var(--red);
}

.footer-brand img {
  width: 220px;
  margin-bottom: 22px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-page {
  background: var(--cream);
}

.policy-hero {
  max-width: 900px;
  padding: 54px 0 24px;
}

.policy-hero p {
  max-width: 660px;
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1.55;
}

.policy-content {
  max-width: 860px;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
}

.policy-content h2 {
  margin: 30px 0 10px;
  font-size: 24px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--charcoal);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .site-nav {
    position: static;
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: clamp(14px, 3vw, 24px);
    padding: 0;
    background: transparent;
    transform: none;
  }

  .site-nav > a:not(.button),
  .language-switch {
    padding: 0;
    border-bottom: 0;
  }

  .site-nav .button {
    display: none;
  }

  .about-grid,
  .video-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .support-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-heading {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    flex-wrap: nowrap;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-nav {
    flex: 0 0 auto;
    justify-content: flex-end;
    overflow: visible;
    font-size: 14px;
  }

  .brand {
    flex: 1 1 auto;
    width: auto;
    max-width: 230px;
    min-width: 0;
  }

  .brand img {
    max-width: min(100%, 210px);
  }

  .site-nav > a:not(.button),
  .site-nav .button {
    display: none;
  }

  .language-switch {
    display: flex;
    gap: 7px;
    font-size: 15px;
    font-weight: 800;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .hero-media {
    position: relative;
    height: clamp(218px, 62vw, 300px);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.32));
  }

  .hero-content {
    padding: 28px var(--gutter) 38px;
  }

  h1 {
    max-width: 9ch;
    margin-bottom: 14px;
    font-size: clamp(40px, 12vw, 50px);
    line-height: 0.98;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.5;
  }

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

  .hero-actions,
  .support-band .button,
  .contact-form .button {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .about-section,
  .video-section,
  .contact-section,
  .policy-page {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .about-copy {
    padding-left: 18px;
  }

  .support-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .contact-form,
  .policy-content {
    padding: 22px;
  }

  .footer-links {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
