@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --forest: #1e3b2e;
  --forest-deep: #0d1d16;
  --forest-black: #07100c;
  --oxidized: #7fae9e;
  --copper: #b65a2e;
  --copper-light: #d88755;
  --brass: #c8a15a;
  --charcoal: #1a1a1a;
  --cream: #f4f1ea;
  --cream-muted: #d7d2c7;
  --line: rgba(200, 161, 90, 0.26);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% -10%, rgba(127, 174, 158, 0.13), transparent 34rem),
    linear-gradient(180deg, #0b1711 0%, #07100c 55%, #050b08 100%);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.2) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(255,255,255,.14) 50%, transparent 51%);
  background-size: 4px 4px;
  z-index: 100;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  z-index: 999;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--cream);
  color: var(--forest-deep);
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(7, 16, 12, 0.45);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 16, 12, 0.9);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Cinzel, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--cream-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--copper-light);
  transition: right 180ms ease;
}

.site-nav a:hover {
  color: var(--cream);
}

.site-nav a:hover::after {
  right: 0;
}

.nav-cta {
  padding: 9px 15px;
  border: 1px solid rgba(200, 161, 90, 0.5);
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 132px 0 80px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.24;
  pointer-events: none;
}

.hero-glow-one {
  width: 36rem;
  height: 36rem;
  right: -10rem;
  top: 2rem;
  background: radial-gradient(circle, rgba(182, 90, 46, 0.65), transparent 70%);
}

.hero-glow-two {
  width: 34rem;
  height: 34rem;
  left: -14rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(127, 174, 158, 0.35), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.game-copy h2,
.contact-panel h2 {
  font-family: Cinzel, Georgia, serif;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.1rem, 6vw, 6.3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--copper-light);
}

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--cream-muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid var(--copper);
  background: linear-gradient(180deg, #cb7044, #a64827);
  color: #fffaf2;
  box-shadow: 0 10px 30px rgba(182, 90, 46, 0.18);
}

.button-secondary {
  border: 1px solid rgba(200, 161, 90, 0.42);
  background: rgba(244, 241, 234, 0.035);
  color: var(--cream);
}

.hero-meta {
  margin: 34px 0 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-meta li {
  display: grid;
  gap: 4px;
}

.hero-meta strong {
  color: var(--oxidized);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-meta span {
  font-weight: 600;
}

.hero-mark {
  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;
  width: min(100%, 580px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.logo-stage::before {
  inset: 5%;
  border: 1px solid rgba(200, 161, 90, 0.22);
}

.logo-stage::after {
  inset: 2%;
  background: radial-gradient(circle, rgba(182,90,46,.18), rgba(30,59,46,.05) 48%, transparent 70%);
  filter: blur(6px);
}

.logo-stage img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.42));
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.game-copy h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.06;
}

.section-heading > p:last-child,
.game-copy > p,
.contact-panel > div > p:last-child {
  color: var(--cream-muted);
  font-size: 1.05rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.principle {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244,241,234,.045), rgba(244,241,234,.012));
  box-shadow: inset 0 1px rgba(255,255,255,.035);
}

.principle-number {
  display: block;
  margin-bottom: 58px;
  color: var(--copper-light);
  font-family: Cinzel, Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.principle h3 {
  margin: 0 0 12px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.35rem;
}

.principle p {
  margin: 0;
  color: var(--cream-muted);
}

.game-section {
  position: relative;
  overflow: hidden;
}

.game-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 24%, rgba(182, 90, 46, 0.16), transparent 26rem),
    linear-gradient(180deg, transparent, rgba(182, 90, 46, 0.035), transparent);
}

.longhorn-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  min-height: 660px;
  border: 1px solid rgba(200, 161, 90, 0.42);
  background:
    linear-gradient(105deg, rgba(10, 25, 18, 0.98) 0 48%, rgba(9, 18, 13, 0.76) 62%, rgba(8, 14, 11, 0.38) 100%);
  box-shadow: var(--shadow);
}

.longhorn-showcase::before,
.longhorn-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.longhorn-showcase::before {
  inset: 12px;
  border: 1px solid rgba(200, 161, 90, 0.12);
}

.longhorn-showcase::after {
  left: 48%;
  top: 9%;
  bottom: 9%;
  width: 1px;
  background: linear-gradient(transparent, rgba(200, 161, 90, 0.34), transparent);
}

.longhorn-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: clamp(40px, 6vw, 76px);
}

.longhorn-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.longhorn-kicker-row .eyebrow {
  margin: 0;
}

.development-badge {
  padding: 7px 10px;
  border: 1px solid rgba(127, 174, 158, 0.38);
  background: rgba(127, 174, 158, 0.08);
  color: #c7ded5;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.longhorn-copy h2 {
  margin: 0;
  max-width: 580px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.longhorn-hook {
  margin: 30px 0 0;
  max-width: 680px;
  color: var(--brass);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.longhorn-description {
  margin: 22px 0 0;
  max-width: 670px;
  color: var(--cream-muted);
  font-size: 1rem;
}

.game-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.game-facts > div {
  min-height: 86px;
  padding: 17px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.018);
}

.game-facts dt {
  color: var(--oxidized);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.game-facts dd {
  margin: 4px 0 0;
  color: var(--cream);
  font-weight: 650;
}

.longhorn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.longhorn-visual {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  background:
    linear-gradient(180deg, rgba(7, 16, 12, 0.05), rgba(7, 16, 12, 0.12) 42%, rgba(7, 16, 12, 0.86) 100%),
    radial-gradient(circle at 70% 22%, rgba(211, 126, 67, 0.18), transparent 19rem),
    linear-gradient(150deg, #283629 0%, #19261d 40%, #0b1510 100%);
}

.longhorn-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    repeating-linear-gradient(90deg, transparent 0 19px, rgba(255,255,255,0.018) 20px),
    repeating-linear-gradient(0deg, transparent 0 19px, rgba(255,255,255,0.012) 20px);
}

.sun-disc {
  position: absolute;
  width: 270px;
  height: 270px;
  top: 58px;
  right: 74px;
  border: 1px solid rgba(216, 135, 83, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 135, 83, 0.16), rgba(182, 90, 46, 0.04) 62%, transparent 64%);
  box-shadow: 0 0 90px rgba(182, 90, 46, 0.11);
}

.mesa {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 120px;
  height: 190px;
  clip-path: polygon(0 72%, 11% 60%, 18% 62%, 26% 39%, 37% 42%, 43% 25%, 57% 31%, 64% 48%, 74% 45%, 82% 62%, 92% 55%, 100% 68%, 100% 100%, 0 100%);
}

.mesa-one {
  background: rgba(102, 74, 45, 0.52);
  transform: scaleY(0.9);
}

.mesa-two {
  bottom: 78px;
  background: rgba(20, 33, 24, 0.92);
  transform: scaleY(0.72) translateY(46px);
}

.trail-line {
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 420px;
  height: 320px;
  border: 2px solid rgba(200, 161, 90, 0.16);
  border-color: transparent transparent transparent rgba(200, 161, 90, 0.2);
  border-radius: 50%;
  transform: rotate(16deg);
}

.longhorn-title-card {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: min(74%, 470px);
  padding: 54px 34px;
  transform: translate(-50%, -49%);
  border: 1px solid rgba(200, 161, 90, 0.55);
  outline: 1px solid rgba(200, 161, 90, 0.14);
  outline-offset: -12px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 15%, rgba(182, 90, 46, 0.12), transparent 46%),
    rgba(5, 12, 8, 0.82);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(8px);
}

.title-card-kicker {
  color: var(--brass);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.longhorn-title-card h3 {
  margin: 23px 0 12px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.longhorn-title-card > p {
  margin: 0;
  color: var(--copper-light);
  font-family: Cinzel, Georgia, serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.title-card-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  width: 72%;
  margin: 26px auto;
}

.title-card-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass));
}

.title-card-divider span:last-child {
  background: linear-gradient(90deg, var(--brass), transparent);
}

.title-card-divider i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
}

.longhorn-title-card strong {
  color: var(--cream-muted);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-transform: uppercase;
}

.cattle-silhouette {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 50px;
  display: flex;
  gap: 20px;
  transform: translateX(-50%);
  opacity: 0.34;
}

.cattle-silhouette span {
  position: relative;
  display: block;
  width: 44px;
  height: 22px;
  border-radius: 50% 48% 42% 46%;
  background: #020604;
}

.cattle-silhouette span::before,
.cattle-silhouette span::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 3px;
  height: 18px;
  background: #020604;
}

.cattle-silhouette span::before {
  left: 9px;
}

.cattle-silhouette span::after {
  right: 9px;
}

.cattle-silhouette span:nth-child(2),
.cattle-silhouette span:nth-child(4) {
  transform: scale(0.82) translateY(6px);
}

.longhorn-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.longhorn-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 180px;
  padding: 27px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 241, 234, 0.038), rgba(244, 241, 234, 0.012));
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(182, 90, 46, 0.6);
  color: var(--copper-light);
  font-family: Cinzel, Georgia, serif;
  font-size: 0.74rem;
}

.longhorn-feature h3 {
  margin: 0 0 9px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.08rem;
}

.longhorn-feature p {
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.9rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.contact-actions {
  margin-top: 0;
  flex-direction: column;
  align-items: stretch;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.15);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-family: Cinzel, Georgia, serif;
}

.footer-brand span,
.footer-inner > p {
  color: #a9afa9;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


@media (max-width: 1050px) {
  .longhorn-showcase {
    grid-template-columns: 1fr;
  }

  .longhorn-showcase::after {
    display: none;
  }

  .longhorn-visual {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .longhorn-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .longhorn-copy {
    padding: 36px 24px;
  }

  .longhorn-kicker-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-facts {
    grid-template-columns: 1fr;
  }

  .longhorn-visual {
    min-height: 500px;
  }

  .longhorn-title-card {
    width: calc(100% - 36px);
    padding: 42px 22px;
  }

  .sun-disc {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(7,16,12,.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 6px;
  }

  .hero-grid,
  .game-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 2;
  }

  .hero-mark {
    order: 1;
  }

  .logo-stage {
    width: min(100%, 500px);
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 26px, 1180px);
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .game-panel {
    padding: 26px 18px;
  }

  .game-art {
    min-height: 340px;
  }

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