:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #f4f1e8;
  color: #17251f;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 85% 5%, rgb(207 111 71 / 16%), transparent 24rem),
    #f4f1e8;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.home,
.fixture-shell {
  width: min(92vw, 70rem);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgb(23 37 31 / 18%);
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #496057;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #d4663d;
  content: "";
}

.home {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.home-intro {
  max-width: 47rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #b44c2d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.lede {
  max-width: 43rem;
  margin: 1.6rem 0 0;
  color: #496057;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.fixture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.fixture-link {
  min-height: 10rem;
  padding: 1.4rem;
  border: 1px solid rgb(23 37 31 / 18%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 42%);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.fixture-link:hover,
.fixture-link:focus-visible {
  border-color: #b44c2d;
  transform: translateY(-2px);
}

.fixture-link span {
  color: #b44c2d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fixture-link h2 {
  margin: 0.75rem 0 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.fixture-link p {
  margin: 0;
  color: #5a6e65;
  font-size: 0.92rem;
  line-height: 1.5;
}

.fixture-shell {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.fixture-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 28rem);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.fixture-heading h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.fixture-heading .lede {
  margin: 0;
}

.frame-wrap {
  padding: clamp(0.45rem, 1.4vw, 0.8rem);
  border: 1px solid rgb(23 37 31 / 24%);
  border-radius: 1.25rem;
  background: #fffdf7;
  box-shadow: 0 1.4rem 4rem rgb(58 43 31 / 11%);
}

iframe {
  display: block;
  width: 100%;
  height: 35rem;
  border: 0;
  border-radius: 0.85rem;
  background: #18362f;
}

.site-footer {
  padding-block: 1.5rem 2.5rem;
  border-top: 1px solid rgb(23 37 31 / 18%);
  color: #5a6e65;
  font-size: 0.86rem;
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 720px) {
  .fixture-grid,
  .fixture-heading {
    grid-template-columns: 1fr;
  }

  .fixture-heading {
    align-items: start;
  }

  iframe {
    height: 39rem;
  }
}
