:root {
  color-scheme: light;
  --ink: #10131a;
  --muted: #5f6672;
  --paper: #f7f8fa;
  --surface: #ffffff;
  --line: #d9dee6;
  --accent: #f2c94c;
  --accent-strong: #0b57a3;
  --deep: #061826;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(188px, 44vw);
  height: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a,
.inline-link {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
  transition: opacity 0.15s ease;
}

nav a:hover,
.inline-link:hover {
  opacity: 0.7;
}

a:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 38, 0.92), rgba(6, 24, 38, 0.42) 56%, rgba(6, 24, 38, 0.08)),
    linear-gradient(0deg, rgba(6, 24, 38, 0.72), rgba(6, 24, 38, 0.1) 45%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 2rem));
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 3rem);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 4vw + 2rem, 4.5rem);
  line-height: 0.98;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 2vw + 1.5rem, 2.75rem);
  line-height: 1.05;
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 58ch;
  margin: 1.2rem 0 0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.button.primary {
  background: var(--accent);
  color: #121212;
}

.button.primary:hover {
  background: #f6d876;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.button.secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.status-strip p {
  margin: 0;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  background: var(--surface);
  color: var(--muted);
}

.status-strip strong {
  color: var(--ink);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.section-body {
  font-size: 1.05rem;
  color: var(--muted);
}

.section-body p:first-child {
  margin-top: 0;
}

.media-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--deep);
}

.media-band img {
  width: 100%;
  height: clamp(240px, 32vw, 460px);
  object-fit: cover;
  display: block;
}

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

.section-heading {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
}

.panel,
.contact-card {
  min-height: 190px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.panel p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-card a {
  font-weight: 800;
  color: var(--accent-strong);
  transition: opacity 0.15s ease;
}

.contact-card a:hover {
  opacity: 0.75;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  background: var(--deep);
  color: #ffffff;
}

.site-footer p {
  margin: 0;
}

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

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .hero {
    min-height: 72svh;
  }

  .status-strip,
  .two-column,
  .grid-section,
  .contact-grid,
  .media-band {
    grid-template-columns: 1fr;
  }

  .media-band img {
    height: 260px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.55rem;
  }

  .button {
    width: 100%;
  }
}
