:root {
  color-scheme: dark;
  --bg: #020612;
  --panel: #101014;
  --panel-2: #141418;
  --field: #0b0b0d;
  --line: #262629;
  --text: #ececec;
  --muted: #9a9a9f;
  --soft: #cfcfcf;
  --red: #c8102e;
  --red-light: #e21a3c;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 18, 0.94);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo { display: flex; align-items: center; text-decoration: none; }
.header-logo img { height: 5rem; width: auto; display: block; border-radius: 4px; }
.nav { display: flex; gap: 1.5rem; color: var(--muted); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.nav a { text-decoration: none; white-space: nowrap; }
.nav a:hover, .nav a:focus { color: var(--text); }
.hero { border-bottom: 1px solid var(--line); background: var(--bg); padding: 5rem 1.25rem; text-align: center; }
.hero-inner { max-width: 56rem; margin: 0 auto; }
.hero-mark { width: min(80vw, 42rem); height: auto; display: block; margin: 0 auto 1.5rem; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6)); }
h1 { margin: 0 0 1rem; font-size: clamp(2.35rem, 5vw, 3.75rem); line-height: 1.05; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.hero p { max-width: 42rem; margin: 0 auto 2rem; color: var(--muted); font-size: 1.125rem; }
.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3rem; padding: 0.75rem 1.5rem; border-radius: 4px; border: 2px solid var(--red); background: var(--red); color: #fff; font-size: 0.875rem; font-weight: 800; text-transform: uppercase; text-decoration: none; }
.button:hover, .button:focus { border-color: var(--red-light); background: var(--red-light); }
.button.secondary { border-color: var(--line); background: transparent; }
.button.secondary:hover, .button.secondary:focus { border-color: var(--red); background: transparent; color: var(--red-light); }
.section { padding: 4rem 1.25rem; }
.section.alt { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); }
.container { width: min(100%, 72rem); margin: 0 auto; }
h2 { margin: 0 0 0.25rem; padding-left: 0.75rem; border-left: 4px solid var(--red); font-size: clamp(1.5rem, 3vw, 1.875rem); line-height: 1.15; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.section-note { margin: 0.25rem 0 1.5rem 0.75rem; color: var(--muted); }
.video-frame, .calendar-frame { overflow: hidden; border-radius: 4px; border: 1px solid var(--line); background: var(--bg); }
.video-frame { position: relative; padding-top: 56.25%; margin-top: 1.5rem; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.calendar-frame { height: 720px; background: #fff; }
.calendar-frame iframe { width: 100%; height: 100%; border: 0; }
.subscribe { margin-top: 0.75rem; color: var(--muted); font-size: 0.875rem; }
.subscribe a { color: var(--red-light); }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3rem; }
.contact-copy { margin-top: 1rem; color: var(--soft); }
.contact-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.contact-list li { display: flex; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.contact-list span { min-width: 60px; color: var(--muted); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.contact-list a { font-weight: 700; text-decoration: none; }
.contact-list a:hover, .contact-list a:focus { color: var(--red-light); }
.socials { display: flex; gap: 0.75rem; }
.socials a { display: inline-flex; width: 3rem; height: 3rem; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); transition: 160ms ease; }
.socials a:hover, .socials a:focus { border-color: var(--red); background: var(--red); color: #fff; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; padding: 1.75rem; border: 1px solid var(--line); border-radius: 4px; background: var(--panel-2); }
label { display: flex; flex-direction: column; gap: 0.25rem; color: var(--muted); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 4px; background: var(--field); color: var(--text); padding: 0.65rem 0.75rem; font: inherit; font-size: 1rem; }
input:focus, textarea:focus { border-color: var(--red); outline: none; }
textarea { resize: vertical; min-height: 9rem; }
.form-note { margin: -0.25rem 0 0; color: var(--muted); font-size: 0.75rem; text-transform: none; }
.footer { border-top: 1px solid var(--line); padding: 1.5rem 1.25rem; color: var(--muted); text-align: center; font-size: 0.875rem; }
.footer p { margin: 0; }
@media (max-width: 760px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .header-logo img { height: 4.25rem; }
  .nav { width: 100%; justify-content: space-between; gap: 0.75rem; }
  .hero { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .calendar-frame { height: 620px; }
  .contact-form { padding: 1.25rem; }
}
