:root {
  --blue: #00274c;
  --blue-soft: #123b66;
  --maize: #ffcb05;
  --maize-soft: #ffe36f;
  --ink: #102033;
  --paper: #fbfcff;
  --muted: #526171;
  --line: rgba(0, 39, 76, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(135deg, rgba(0, 39, 76, 0.06), transparent 38%),
    linear-gradient(315deg, rgba(255, 203, 5, 0.2), transparent 42%),
    var(--paper);
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 56px;
}

.hero {
  display: grid;
  gap: 20px;
  padding: clamp(18px, 4vw, 42px) 0 clamp(28px, 5vw, 56px);
}

.domain {
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--maize);
  border: 1px solid rgba(0, 39, 76, 0.18);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 920px;
  color: var(--blue);
  font-size: clamp(2.45rem, 8vw, 5.8rem);
  line-height: 0.94;
}

.tagline {
  max-width: 820px;
  color: var(--blue-soft);
  font-size: clamp(1.03rem, 2.2vw, 1.28rem);
  line-height: 1.65;
}

.video-section {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 8px solid var(--maize);
  box-shadow: 0 24px 70px rgba(0, 39, 76, 0.13);
}

.section-heading {
  display: grid;
  gap: 4px;
}

.section-heading p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  color: var(--blue);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--blue);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 34px;
}

a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-color: var(--maize);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.contact-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 18px;
  max-width: 760px;
  padding: clamp(24px, 5vw, 46px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 8px solid var(--maize);
  box-shadow: 0 24px 70px rgba(0, 39, 76, 0.13);
}

.contact-panel p:not(.domain) {
  color: var(--blue-soft);
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  line-height: 1.55;
}

.back-link {
  width: fit-content;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 22px, 1120px);
    padding: 10px 0 34px;
  }

  .hero {
    gap: 16px;
  }

  .tagline {
    line-height: 1.55;
  }

  .video-section {
    padding: 16px;
    border-top-width: 6px;
  }

  .site-footer {
    width: min(100% - 22px, 1120px);
    padding-bottom: 24px;
  }
}
