
:root {
  --ink: #10263a;
  --ink-soft: #233c50;
  --cream: #fbf4e7;
  --cream-2: #fffaf0;
  --gold: #c99138;
  --red: #7b1e1e;
  --muted: #6d6257;
  --line: rgba(16, 38, 58, 0.14);
  --shadow: 0 20px 60px rgba(16, 38, 58, 0.12);
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.62; }

.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.narrow { max-width: 760px; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 99; padding: 10px 12px; border-radius: 10px; background: var(--gold); color: var(--ink); font-weight: 900; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 244, 231, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 950; letter-spacing: -0.04em; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.brand img { width: 38px; height: 38px; }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--cream-2); color: var(--ink); border-radius: 999px; padding: 10px 14px; font-weight: 900; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 10px 12px; border-radius: 999px; color: var(--muted); font-weight: 850; font-size: .95rem; }
.nav-links a:hover, .nav-links a:focus-visible { background: rgba(201,145,56,.14); color: var(--ink); }

.hero { padding: clamp(44px, 7vw, 92px) 0 clamp(28px, 5vw, 60px); }
.hero-simple-grid, .split { display: grid; grid-template-columns: .96fr 1.04fr; gap: clamp(30px, 6vw, 72px); align-items: center; }
.hero-copy { max-width: 720px; }
.kicker { margin: 0 0 12px; color: var(--red); font-size: .78rem; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: -.055em; font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: 5.4rem; font-size: clamp(3.1rem, 7.3vw, 6.2rem); }
h2 { font-size: 3.3rem; font-size: clamp(2.15rem, 5vw, 4rem); }
h3 { font-size: 1.8rem; font-size: clamp(1.45rem, 3vw, 2.1rem); }
.lede { margin: 22px 0 0; color: var(--muted); font-size: clamp(1.07rem, 2vw, 1.25rem); max-width: 670px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border-radius: 999px; padding: 0 20px; font-weight: 950; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--ink); color: var(--cream-2); box-shadow: 0 10px 24px rgba(16,38,58,.18); }
.btn.secondary { background: var(--cream-2); border-color: var(--line); color: var(--ink); }
.btn.gold { background: var(--gold); color: #241607; box-shadow: 0 10px 24px rgba(201,145,56,.2); }

.section { padding: clamp(52px, 7vw, 88px) 0; }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p { color: var(--muted); margin: 16px 0 0; }
.feature, .soft { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature p:not(.kicker), .game-page-hero p:not(.kicker), .person-card p, .teaser-body p { color: var(--muted); }

/* Reusable fanned-art module */
.fan { position: relative; min-height: 390px; }
.fan img {
  position: absolute;
  width: min(48%, 250px);
  height: auto;
  border-radius: 18px;
  border: 0;
  background: transparent;
  box-shadow: var(--shadow);
  object-fit: contain;
  object-position: center center;
}
.fan img:nth-child(1) { left: 7%; top: 10%; transform: rotate(-8deg); z-index: 1; }
.fan img:nth-child(2) { left: 29%; top: 1%; transform: rotate(4deg); z-index: 3; }
.fan img:nth-child(3) { left: 50%; top: 13%; transform: rotate(9deg); z-index: 2; }
.fan img:nth-child(4) { left: 38%; top: 31%; transform: rotate(-2deg); z-index: 4; }
.fan-hero img, .fan-wide img, .fan-detail img { height: 330px; }
.fan-hero img:nth-child(4), .fan-wide img:nth-child(4), .fan-detail img:nth-child(4) { width: min(53%, 320px); height: 245px; }
.fan-card { min-height: 270px; }
.fan-card img { width: min(46%, 205px); height: auto; border-radius: 14px; }
.fan-card img:nth-child(1) { left: 12%; top: 20%; }
.fan-card img:nth-child(2) { left: 37%; top: 7%; }
.fan-card img:nth-child(3) { left: 47%; top: 22%; }
.fan-card img:nth-child(4) { left: 30%; top: 35%; width: min(46%, 205px); }
.fan-landscape img { width: min(64%, 300px); height: auto; }
.fan-landscape img:nth-child(1) { left: 5%; top: 17%; }
.fan-landscape img:nth-child(2) { left: 31%; top: 7%; }

.teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.teaser-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.teaser-featured { border-color: rgba(123,30,30,.28); }
.teaser-media { display: block; background: linear-gradient(180deg, rgba(201,145,56,.16), transparent); border-bottom: 1px solid var(--line); }
.teaser-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.status { display: inline-block; width: fit-content; margin-bottom: 12px; color: var(--red); font-size: .72rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.status.hot { background: rgba(123,30,30,.1); border: 1px solid rgba(123,30,30,.18); border-radius: 999px; padding: 7px 10px; }
.text-link { display: inline-block; margin-top: auto; padding-top: 18px; color: var(--ink); font-weight: 950; }
.text-link::after { content: " →"; color: var(--gold); }

.about-section { background: var(--ink); color: var(--cream-2); }
.about-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(26px, 5vw, 52px); align-items: start; }
.about-section .section-heading p { color: rgba(255,250,240,.78); }
.about-section .kicker { color: #f0bf6c; }
.people-grid { display: grid; gap: 16px; }
.person-card { padding: 24px; border-radius: var(--radius); background: rgba(255,250,240,.08); border: 1px solid rgba(255,250,240,.14); }
.person-card p { color: rgba(255,250,240,.78); margin-bottom: 0; }

.cta { padding: 56px 0; background: var(--red); color: var(--cream-2); }
.cta-grid { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.cta p { color: rgba(255,250,240,.78); margin: 10px 0 0; }
.cta .kicker { color: #f0bf6c; }

.site-footer { padding: 30px 0; background: #071724; color: rgba(255,250,240,.76); }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-grid .brand { color: var(--cream-2); }
.footer-grid p { margin: 10px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--cream-2); font-weight: 850; }

.meta { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 22px 0 0; list-style: none; }
.meta li { background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px; padding: 8px 11px; font-weight: 850; font-size: .9rem; }
.game-page-hero { padding: clamp(50px, 7vw, 92px) 0; }
.game-page-hero .split { grid-template-columns: .9fr 1.1fr; }
.fan-detail { min-height: 430px; }
.soft p { color: var(--muted); }

@media (max-width: 1040px) {
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-simple-grid, .split, .about-layout, .game-page-hero .split { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .fan-hero, .fan-wide, .fan-detail { min-height: 365px; }
  .fan-hero img, .fan-wide img, .fan-detail img { height: 300px; }
}

@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .nav { min-height: 64px; }
  .nav-toggle { display: inline-flex; }
  .nav-links { position: absolute; left: 12px; right: 12px; top: 70px; display: none; flex-direction: column; align-items: stretch; background: var(--cream-2); border: 1px solid var(--line); border-radius: 18px; padding: 10px; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  h1 { font-size: 3.4rem; font-size: clamp(3rem, 15vw, 4.4rem); }
  .actions, .cta-grid, .footer-grid { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .teaser-grid { grid-template-columns: 1fr; }
  .fan { min-height: 300px; }
  .fan img { width: 45%; border-radius: 14px; }
  .fan-hero img, .fan-wide img, .fan-detail img { height: auto; }
  .fan-hero img:nth-child(4), .fan-wide img:nth-child(4), .fan-detail img:nth-child(4) { height: auto; }
  .fan-card { min-height: 240px; }
  .fan-card img { width: 43%; height: auto; }
  .fan-card img:nth-child(4) { width: 43%; height: auto; }
  .footer-links { flex-direction: column; gap: 10px; }
}

/* Simple homepage feature strip */
.feature-panel {
  max-width: 820px;
  text-align: center;
}
.feature-panel .actions {
  justify-content: center;
}
.teaser-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}
.teaser-copy p:last-child {
  margin-bottom: 0;
}
.brand img {
  object-fit: contain;
}
@media (max-width: 680px) {
  .feature-panel {
    text-align: left;
  }
  .feature-panel .actions {
    justify-content: flex-start;
  }
}


/* Kit mailing list embed */
.mailing-list-embed {
  flex: 0 1 520px;
  width: min(100%, 520px);
}
.mailing-list-embed .formkit-form {
  margin-left: auto;
}
@media (max-width: 680px) {
  .mailing-list-embed { width: 100%; }
  .mailing-list-embed .formkit-form { max-width: 100% !important; }
}


/* Bouquet Parlay fanned cards */
.fan-bouquet-card { min-height: 270px; }
.fan-bouquet-card img { width: min(38%, 165px); height: auto; }
.fan-bouquet-card img:nth-child(1) { left: 4%; top: 24%; transform: rotate(-10deg); z-index: 1; }
.fan-bouquet-card img:nth-child(2) { left: 20%; top: 9%; transform: rotate(-4deg); z-index: 3; }
.fan-bouquet-card img:nth-child(3) { left: 39%; top: 9%; transform: rotate(5deg); z-index: 2; }
.fan-bouquet-card img:nth-child(4) { left: 55%; top: 23%; transform: rotate(10deg); z-index: 1; }

.fan-bouquet-detail { min-height: 520px; }
.fan-bouquet-detail img { width: min(29%, 185px); height: auto; border-radius: 16px; }
.fan-bouquet-detail img:nth-child(1) { left: 3%; top: 20%; transform: rotate(-12deg); z-index: 1; }
.fan-bouquet-detail img:nth-child(2) { left: 18%; top: 5%; transform: rotate(-6deg); z-index: 3; }
.fan-bouquet-detail img:nth-child(3) { left: 37%; top: 0%; transform: rotate(0deg); z-index: 5; }
.fan-bouquet-detail img:nth-child(4) { left: 55%; top: 6%; transform: rotate(6deg); z-index: 4; }
.fan-bouquet-detail img:nth-child(5) { left: 70%; top: 20%; transform: rotate(12deg); z-index: 2; }
.fan-bouquet-detail img:nth-child(6) { left: 39%; top: 39%; transform: rotate(0deg); z-index: 6; }

@media (max-width: 860px) {
  .fan-bouquet-detail { min-height: 470px; }
  .fan-bouquet-detail img { width: 30%; height: auto; }
}

@media (max-width: 680px) {
  .fan-bouquet-card { min-height: 245px; }
  .fan-bouquet-card img { width: 38%; height: auto; }
  .fan-bouquet-detail { min-height: 410px; }
  .fan-bouquet-detail img { width: 32%; height: auto; }
  .fan-bouquet-detail img:nth-child(6) { top: 42%; }
}


/* Rotating hero carousel */
.hero-carousel {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,250,240,.94), rgba(201,145,56,.12));
  box-shadow: var(--shadow);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  padding: 22px;
  opacity: 0;
  transform: translateX(10%);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-slide.is-leaving {
  transform: translateX(-10%);
}
.hero-slide .fan { min-height: 360px; }
.hero-slide .fan img { box-shadow: 0 18px 45px rgba(16, 38, 58, .18); }
.slide-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 20;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255,250,240,.92);
  border: 1px solid var(--line);
  color: var(--red);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.slide-label.hot { background: rgba(123,30,30,.1); border-color: rgba(123,30,30,.2); }
.slide-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 20;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(7, 23, 36, .88);
  color: var(--cream-2);
  backdrop-filter: blur(8px);
}
.slide-caption strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1; }
.slide-caption small { color: rgba(255,250,240,.78); font-weight: 750; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(16,38,58,.28);
  background: rgba(16,38,58,.14);
  padding: 0;
  cursor: pointer;
}
.carousel-dots button.is-active {
  width: 28px;
  background: var(--gold);
  border-color: var(--gold);
}
.fan-bouquet-hero img { height: 310px; width: min(37%, 200px); }
.fan-bouquet-hero img:nth-child(1) { left: 5%; top: 18%; transform: rotate(-10deg); z-index: 1; }
.fan-bouquet-hero img:nth-child(2) { left: 23%; top: 6%; transform: rotate(-4deg); z-index: 3; }
.fan-bouquet-hero img:nth-child(3) { left: 42%; top: 6%; transform: rotate(5deg); z-index: 2; }
.fan-bouquet-hero img:nth-child(4) { left: 58%; top: 18%; transform: rotate(10deg); z-index: 1; }
.btn.disabled,
.btn[aria-disabled="true"] {
  opacity: .62;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}
@media (max-width: 860px) {
  .hero-carousel { min-height: 410px; }
  .hero-slide .fan { min-height: 320px; }
}
@media (max-width: 680px) {
  .hero-carousel { min-height: 350px; }
  .hero-slide { padding: 16px; }
  .hero-slide .fan { min-height: 270px; }
  .slide-caption { left: 16px; right: 16px; bottom: 16px; }
  .slide-caption strong { font-size: 1.15rem; }
  .fan-bouquet-hero img { height: 220px; }
}


/* Hero carousel: use same card layouts as teaser grid */
.fan-stage { min-height: 335px; margin-top: 28px; }
.hero-slide .fan-card img { box-shadow: 0 18px 45px rgba(16, 38, 58, .18); }
.hero-slide .fan-stage img { width: min(46%, 220px); height: auto; }
.hero-slide .fan-stage img:nth-child(4) { width: min(46%, 220px); height: auto; }
.hero-slide .fan-stage.fan-landscape { min-height: 320px; }
.hero-slide .fan-stage.fan-landscape img { width: min(60%, 290px); height: auto; }
.hero-slide .fan-stage.fan-bouquet-card { min-height: 340px; }
.hero-slide .fan-stage.fan-bouquet-card img { width: min(35%, 160px); height: auto; }
.hero-slide .fan-stage.fan-bouquet-card img:nth-child(1) { left: 8%; top: 22%; }
.hero-slide .fan-stage.fan-bouquet-card img:nth-child(2) { left: 24%; top: 10%; }
.hero-slide .fan-stage.fan-bouquet-card img:nth-child(3) { left: 42%; top: 10%; }
.hero-slide .fan-stage.fan-bouquet-card img:nth-child(4) { left: 58%; top: 22%; width: min(35%, 160px); height: auto; }

/* Bouquet Parlay teaser page */
.fan-bouquet-stage { min-height: 430px; max-width: 620px; margin-inline: auto; }
.fan-bouquet-stage img { width: min(39%, 190px); height: auto; }
.fan-bouquet-stage img:nth-child(1) { left: 4%; top: 18%; transform: rotate(-10deg); z-index: 1; }
.fan-bouquet-stage img:nth-child(2) { left: 22%; top: 4%; transform: rotate(-4deg); z-index: 3; }
.fan-bouquet-stage img:nth-child(3) { left: 42%; top: 4%; transform: rotate(5deg); z-index: 2; }
.fan-bouquet-stage img:nth-child(4) { left: 59%; top: 18%; transform: rotate(10deg); z-index: 1; }
.showcase-image { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--cream-2); }
.showcase-image img { width: 100%; height: auto; display: block; }

@media (max-width: 860px) {
  .hero-slide .fan-stage { min-height: 300px; }
  .hero-slide .fan-stage img { width: min(45%, 200px); height: auto; }
  .hero-slide .fan-stage.fan-bouquet-card img { width: min(36%, 150px); height: auto; }
  .hero-slide .fan-stage.fan-bouquet-card img:nth-child(4) { width: min(36%, 150px); height: auto; }
  .fan-bouquet-stage { min-height: 380px; }
  .fan-bouquet-stage img { width: min(39%, 170px); height: auto; }
  .fan-bouquet-stage img:nth-child(4) { width: min(39%, 170px); height: auto; }
}

@media (max-width: 680px) {
  .hero-carousel { min-height: 410px; }
  .hero-slide { padding: 18px; }
  .hero-slide .fan-stage { min-height: 255px; margin-top: 34px; }
  .hero-slide .fan-stage img { width: 42%; height: auto; }
  .hero-slide .fan-stage img:nth-child(4) { width: 42%; height: auto; }
  .hero-slide .fan-stage.fan-landscape img { width: 62%; height: auto; }
  .hero-slide .fan-stage.fan-bouquet-card img { width: 38%; height: auto; }
  .hero-slide .fan-stage.fan-bouquet-card img:nth-child(4) { width: 38%; height: auto; }
  .fan-bouquet-stage { min-height: 310px; }
  .fan-bouquet-stage img { width: 40%; height: auto; }
  .fan-bouquet-stage img:nth-child(4) { width: 40%; height: auto; }
}


/* Show full artwork in all teaser/card fans without cropping */
.teaser-media, .hero-slide { overflow: visible; }
.fan-card, .fan-stage, .fan-bouquet-stage, .fan-bouquet-detail, .fan-landscape { overflow: visible; }


.game-page-hero .fan-bouquet-stage {
  width: 100%;
}
.game-page-hero .split {
  align-items: start;
}
.hero-art, .teaser-media {
  overflow: hidden;
}
