/* TX Kosher landing — brand palette from brand guide */
:root {
  --iron-black: #1a1a1a;
  --ranch-brown: #5a3a22;
  --saddle-tan: #c69c6d;
  --heritage-navy: #1e2a3a;
  --cream: #f2e8d6;
  --aged-brass: #b08b57;
  --brass-light: #d4b483;
  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background:
    radial-gradient(ellipse at 50% 0%, #2a3d52 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(176, 139, 87, 0.12), transparent 40%),
    linear-gradient(180deg, var(--heritage-navy) 0%, #141c28 55%, var(--iron-black) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 16px 32px;
  position: relative;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

/* ---- TX Kosher top brand block ---- */
.brand-header {
  width: min(720px, 100%);
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding: 8px 8px 4px;
}

.brought-label {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(242, 232, 214, 0.8);
}

.brand-link {
  display: block;
  max-width: 520px;
  margin: 0 auto 14px;
  transition: transform 0.2s ease, filter 0.2s ease;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(176, 139, 87, 0.5);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(176, 139, 87, 0.15);
}

.brand-link:hover {
  transform: scale(1.015);
  filter: brightness(1.06);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(176, 139, 87, 0.2);
}

/* Navy / dark blue wordmark plate — full TX KOSHER logo */
.wordmark {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  background: var(--heritage-navy);
  vertical-align: middle;
}

.slogan {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--aged-brass);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.tagline {
  margin: 0 auto 8px;
  max-width: 30em;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(242, 232, 214, 0.78);
}

.est-line {
  margin: 0;
}

.est {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--aged-brass);
  opacity: 0.9;
}

/* ---- Game section ---- */
.hero {
  width: min(720px, 100%);
  flex: 1;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.hero-card {
  width: 100%;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(30, 42, 58, 0.92), rgba(20, 28, 40, 0.96));
  border: 1px solid rgba(176, 139, 87, 0.45);
  border-radius: 20px;
  padding: 28px 24px 32px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(242, 232, 214, 0.08);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aged-brass);
}

h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.45rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--cream);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.lead {
  margin: 0 auto 20px;
  max-width: 34em;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(242, 232, 214, 0.88);
}

.hero-art {
  margin: 0 auto 22px;
  max-width: 520px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(176, 139, 87, 0.4);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
  background: var(--iron-black);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 36px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--iron-black);
  background: linear-gradient(180deg, var(--brass-light), var(--aged-brass) 55%, #8f6f42);
  border: 1px solid #6e542f;
  box-shadow:
    0 4px 0 #4a3820,
    0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-play:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 6px 0 #4a3820,
    0 14px 28px rgba(0, 0, 0, 0.4);
}

.btn-play:active {
  transform: translateY(1px);
  box-shadow:
    0 2px 0 #4a3820,
    0 6px 16px rgba(0, 0, 0, 0.3);
}

.site-footer {
  width: min(720px, 100%);
  margin-top: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(242, 232, 214, 0.55);
}

.site-footer a {
  color: var(--saddle-tan);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--cream);
  text-decoration: underline;
}

.footer-brand {
  color: var(--aged-brass);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.dot {
  margin: 0 8px;
  opacity: 0.5;
}

@media (max-width: 520px) {
  .brand-header {
    margin-bottom: 14px;
  }

  .brand-link {
    max-width: 100%;
  }

  .hero-card {
    padding: 22px 16px 26px;
  }

  .btn-play {
    width: 100%;
  }

  .slogan {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-play,
  .brand-link {
    transition: none;
  }
}
