:root {
  color-scheme: light;
  --club-blue: #0056b8;
  --club-blue-dark: #003d87;
  --club-gold: #d0b888;
  --ink: #092046;
  --muted: #5f6f86;
  --paper: #ffffff;
  --line: rgba(9, 32, 70, 0.14);
  font-family: Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: Sora;
  src: url("assets/fonts/Sora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sora;
  src: url("assets/fonts/Sora-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sora;
  src: url("assets/fonts/Sora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
}

.home-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(26px + env(safe-area-inset-top)) clamp(18px, 5vw, 72px) calc(26px + env(safe-area-inset-bottom));
}

.home-hero {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.home-logo {
  width: min(100%, 420px);
  max-height: min(72vh, 650px);
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 61, 135, 0.18));
}

.home-content {
  display: grid;
  gap: 22px;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.home-kicker {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(208, 184, 136, 0.72);
  border-radius: 999px;
  color: var(--club-blue-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-slogan {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.65rem);
  font-weight: 300;
  line-height: 1.35;
}

.home-actions {
  width: min(100%, 432px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.home-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(9, 32, 70, 0.08);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.home-button:hover,
.home-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 86, 184, 0.38);
  background: #fff;
  box-shadow: 0 16px 34px rgba(9, 32, 70, 0.14);
}

.home-button:focus-visible {
  outline: 3px solid rgba(208, 184, 136, 0.8);
  outline-offset: 3px;
}

.home-button-primary {
  color: #fff;
  border-color: var(--club-blue);
  background: var(--club-blue);
}

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

.home-button-wide {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .home-page {
    align-items: start;
    padding-top: calc(18px + env(safe-area-inset-top));
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .home-logo {
    width: min(52vw, 220px);
    max-height: 34vh;
  }

  .home-content {
    justify-items: center;
    gap: 14px;
  }

  .home-slogan {
    font-size: clamp(1rem, 5vw, 1.28rem);
  }

  .home-actions {
    width: min(100%, 430px);
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 6px;
  }

  .home-button {
    min-height: 54px;
    width: 100%;
  }
}
