
:root {
  --ink: #101714;
  --paper: #f1eee4;
  --paper-deep: #e4decf;
  --green: #0b4d3b;
  --green-dark: #062f26;
  --acid: #d9ff70;
  --brass: #b98b4a;
  --line: rgba(16, 23, 20, .17);
  --white: #fffef8;
  --radius: 0;
  --background: var(--paper);
  --foreground: var(--ink);
  --card: var(--white);
  --card-foreground: var(--ink);
  --primary: var(--green);
  --primary-foreground: var(--white);
  --secondary: var(--paper-deep);
  --secondary-foreground: var(--ink);
  --muted: var(--paper-deep);
  --muted-foreground: #5f675f;
  --accent: var(--acid);
  --accent-foreground: var(--ink);
  --border: var(--line);
  --input: var(--line);
  --ring: var(--green);
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --font-sans: "Aptos", "Segoe UI", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Aptos", "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
main { overflow: hidden; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(241, 238, 228, .94); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.header-inner { max-width: 1440px; margin: auto; min-height: 86px; display: flex; align-items: center; gap: 32px; padding: 0 4vw; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 235px; }
.brand-mark { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); color: var(--green-dark); font: 700 24px/1 Georgia, serif; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: .98rem; line-height: 1.2; letter-spacing: .02em; }
.brand small { margin-top: 3px; color: #667069; font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; }
nav { display: flex; align-items: center; justify-content: center; flex: 1; gap: clamp(14px, 2vw, 32px); }
nav a { font-size: .84rem; font-weight: 650; }
nav a:hover { color: var(--green); }
.header-cta { display: flex; align-items: center; gap: 8px; background: var(--ink); color: var(--white); padding: 12px 17px; font-size: .8rem; font-weight: 700; }

.hero { max-width: 1440px; margin: auto; min-height: 670px; display: grid; grid-template-columns: .86fr 1.14fr; padding: 0 4vw; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.hero-copy { padding: clamp(70px, 8vw, 130px) clamp(30px, 5vw, 80px) 70px 0; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 18px; color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; display: inline-block; vertical-align: middle; margin-right: 10px; background: currentColor; }
.hero h1 { margin: 0; font: 500 clamp(4rem, 7.7vw, 8.4rem)/.84 Georgia, serif; letter-spacing: -.075em; }
.hero-lead { max-width: 590px; margin: 36px 0 0; font-size: clamp(1.04rem, 1.4vw, 1.28rem); line-height: 1.7; color: #4b544e; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.button { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 12px 21px; border: 1px solid var(--ink); font-size: .84rem; font-weight: 800; }
.button.primary { background: var(--green); border-color: var(--green); color: var(--white); }
.button.ghost { background: transparent; }
.button.light { background: var(--acid); border-color: var(--acid); color: var(--ink); }
.button:hover, .header-cta:hover { transform: translateY(-2px); transition: .2s ease; }
.verified { display: flex; align-items: center; gap: 8px; margin: 25px 0 0; color: #6b746d; font-size: .76rem; }
.hero-visual { min-height: 670px; position: relative; overflow: hidden; clip-path: polygon(5% 0,100% 0,100% 100%,0 100%,0 9%); }
.hero-visual img { height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); }
.image-note { position: absolute; right: 0; bottom: 0; width: min(390px, 70%); background: var(--acid); padding: 24px 28px; }
.image-note span, .image-note strong { display: block; }
.image-note span { margin-bottom: 5px; font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.image-note strong { font: 500 1.08rem/1.4 Georgia, serif; }

.facts { max-width: 1440px; margin: auto; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-top: 0; }
.facts > div { min-height: 105px; padding: 24px; display: flex; align-items: flex-start; gap: 14px; border-right: 1px solid var(--line); }
.facts > div:last-child { border-right: 0; }
.facts svg { margin-top: 3px; color: var(--green); flex: none; }
.facts small, .facts span { display: block; }
.facts small { margin-bottom: 6px; color: #69736c; font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.facts span { font-size: .87rem; font-weight: 650; line-height: 1.5; }

.band, .games-section, .visit-grid, .legal-section, .lemon-band { max-width: 1440px; margin: auto; }
.intro { display: grid; grid-template-columns: 100px 1fr 1fr; gap: 7vw; padding: 130px 4vw; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.section-number { color: var(--brass); font: italic 2.4rem Georgia, serif; }
.section-heading h2, .games-section h2, .feature-copy h2, .legal-section h2, .lemon-band h2 { margin: 0; font: 500 clamp(2.35rem, 4.5vw, 5.2rem)/1.02 Georgia, serif; letter-spacing: -.045em; }
.section-copy p, .section-heading > p:last-child { color: #4f5952; }
.section-copy p:first-child { margin-top: 0; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 15px; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--green); font-weight: 750; }

.games-section { padding: 110px 4vw 130px; background: var(--green-dark); color: var(--white); }
.games-section .eyebrow { color: var(--acid); }
.section-heading.wide { max-width: 980px; }
.section-heading.wide > p:last-child { max-width: 650px; color: rgba(255,255,255,.65); }
.game-list { margin-top: 70px; border-top: 1px solid rgba(255,255,255,.2); }
.game-row { display: grid; grid-template-columns: 70px .7fr 1fr 30px; align-items: center; gap: 30px; padding: 28px 5px; border-bottom: 1px solid rgba(255,255,255,.2); }
.game-row > span { color: var(--acid); font: italic 1.1rem Georgia, serif; }
.game-row h3 { margin: 0; font: 500 2rem Georgia, serif; }
.game-row p { margin: 0; color: rgba(255,255,255,.65); }
.game-row svg { color: var(--acid); }
.game-row:hover { padding-left: 16px; background: rgba(255,255,255,.04); transition: .2s ease; }

.split-feature { display: grid; grid-template-columns: 1.08fr .92fr; background: var(--ink); color: var(--white); }
.detail-image { min-height: 670px; }
.detail-image img { height: 100%; object-fit: cover; }
.feature-copy { padding: clamp(60px, 7vw, 115px); display: flex; flex-direction: column; justify-content: center; }
.feature-copy .eyebrow { color: var(--acid); }
.feature-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); font-size: 1.05rem; }
.feature-copy ul { padding: 0; margin: 20px 0 30px; list-style: none; }
.feature-copy li { display: flex; align-items: center; gap: 12px; margin: 12px 0; }
.feature-copy li svg { color: var(--acid); width: 19px; }
.feature-copy .button { align-self: flex-start; }

.visit-grid { display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--line); }
.visit-grid article { min-height: 360px; display: flex; flex-direction: column; padding: 38px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.visit-grid article:nth-child(even) { background: var(--paper-deep); }
.visit-grid article > svg { color: var(--green); width: 27px; height: 27px; }
.visit-grid article > span { margin: 65px 0 12px; color: var(--brass); font: italic 1rem Georgia, serif; }
.visit-grid h3 { margin: 0; font: 500 1.65rem Georgia, serif; }
.visit-grid p { color: #556059; }
.visit-grid a { margin-top: auto; font-size: .82rem; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }

.legal-section { display: grid; grid-template-columns: 1.25fr .75fr; padding: 120px 4vw; gap: 8vw; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.legal-section > div > p:not(.eyebrow) { max-width: 720px; color: #4f5952; font-size: 1.05rem; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.legal-actions a { display: flex; align-items: center; gap: 10px; padding: 15px 18px; border: 1px solid var(--line); background: var(--white); font-weight: 750; }
.legal-actions svg { color: var(--green); }
.legal-section aside { padding: 40px; background: var(--acid); align-self: start; }
.stamp { width: 62px; height: 62px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; font: 700 1.2rem Georgia, serif; transform: rotate(-7deg); }
.legal-section aside h3 { font: 500 2rem Georgia, serif; margin: 24px 0 10px; }

.lemon-band { display: grid; grid-template-columns: 50px 1.2fr 1fr auto; align-items: center; gap: 35px; padding: 55px 4vw; background: var(--brass); color: var(--ink); }
.lemon-band > svg { width: 38px; height: 38px; }
.lemon-band h2 { font-size: clamp(1.8rem, 3vw, 3.2rem); }
.lemon-band p { margin: 0; }
.lemon-band .eyebrow { color: var(--ink); }

.article-page { max-width: 1440px; margin: auto; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.article-hero { min-height: 520px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; padding: 95px 4vw 75px; background: var(--green-dark); color: var(--white); }
.article-hero .eyebrow { color: var(--acid); }
.article-hero h1 { max-width: 980px; margin: 0; font: 500 clamp(3.2rem, 6vw, 6.8rem)/.95 Georgia, serif; letter-spacing: -.055em; }
.article-lead { max-width: 760px; margin: 30px 0 0; color: rgba(255,255,255,.7); font-size: 1.15rem; }
.article-fact { align-self: end; padding: 32px; border: 1px solid rgba(255,255,255,.24); }
.article-fact svg { color: var(--acid); }
.article-fact > span, .article-fact > strong { display: block; }
.article-fact > span { margin-top: 40px; color: var(--acid); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-fact > strong { margin: 7px 0 15px; font: 500 1.4rem Georgia, serif; }
.article-fact p { margin: 7px 0; color: rgba(255,255,255,.68); font-size: .84rem; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 8vw; padding: 100px 8vw; }
.article-body { max-width: 830px; }
.article-body section { position: relative; padding: 0 0 70px 74px; border-left: 1px solid var(--line); }
.article-body .chapter { position: absolute; left: -21px; top: 0; width: 41px; height: 41px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); color: var(--green); font: italic .85rem Georgia, serif; }
.article-body h2 { margin: 0 0 24px; font: 500 clamp(2rem, 3.5vw, 3.6rem)/1.05 Georgia, serif; letter-spacing: -.04em; }
.article-body p { color: #48544c; font-size: 1.03rem; line-height: 1.8; }
.source-note { display: flex; gap: 14px; padding: 24px; background: var(--paper-deep); border-left: 4px solid var(--green); }
.source-note svg { flex: none; margin-top: 4px; color: var(--green); }
.source-note p { margin: 0; font-size: .86rem; }
.article-nav { align-self: start; position: sticky; top: 120px; border-top: 4px solid var(--green); background: var(--white); padding: 25px; box-shadow: 0 20px 60px rgba(16,23,20,.08); }
.article-nav > p { margin: 0 0 18px; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .85rem; font-weight: 700; }
.article-nav svg { width: 18px; color: var(--green); }
.article-nav a.responsible { margin-top: 20px; padding: 14px; justify-content: center; background: var(--acid); border: 0; }
.next-pages { padding: 80px 4vw 100px; border-top: 1px solid var(--line); }
.next-pages > div { display: grid; grid-template-columns: repeat(3,1fr); }
.next-pages a { min-height: 205px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-right: 0; background: var(--white); }
.next-pages a:last-child { border-right: 1px solid var(--line); }
.next-pages small { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.next-pages strong { max-width: 330px; margin-top: 20px; font: 500 1.35rem/1.3 Georgia, serif; }
.next-pages svg { margin-top: auto; color: var(--green); }

.site-footer { background: var(--ink); color: var(--white); padding: 80px 4vw 25px; }
.footer-grid { max-width: 1320px; margin: auto; display: grid; grid-template-columns: 1.3fr .7fr; gap: 10vw; }
.footer-kicker { color: var(--acid); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-footer h2 { max-width: 690px; margin: 18px 0; font: 500 clamp(2.2rem, 4vw, 4.5rem)/1 Georgia, serif; letter-spacing: -.04em; }
.footer-grid > div > p:last-child { max-width: 690px; color: rgba(255,255,255,.57); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; align-content: start; }
.footer-links a { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .83rem; }
.footer-bottom { max-width: 1320px; margin: 65px auto 0; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.5); font-size: .72rem; }

@media (max-width: 1050px) {
  nav { display: none; }
  .header-inner { justify-content: space-between; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-right: 0; }
  .hero-visual { min-height: 540px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts > div:nth-child(2) { border-right: 0; }
  .facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro { grid-template-columns: 60px 1fr; }
  .intro .section-copy { grid-column: 2; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .legal-section, .article-hero { grid-template-columns: 1fr; }
  .article-fact { max-width: 500px; }
  .lemon-band { grid-template-columns: 45px 1fr; }
  .lemon-band > p, .lemon-band > a { grid-column: 2; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 72px; }
  .header-cta { display: none; }
  .brand { min-width: 0; }
  .hero { padding: 0 20px; }
  .hero-copy { padding: 72px 0 50px; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.8rem); }
  .hero-visual { min-height: 430px; clip-path: none; }
  .image-note { width: 86%; }
  .facts { grid-template-columns: 1fr; margin: 0 20px; }
  .facts > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .intro { grid-template-columns: 1fr; padding: 85px 20px; gap: 22px; }
  .intro .section-copy { grid-column: 1; }
  .games-section { padding: 80px 20px; }
  .game-row { grid-template-columns: 42px 1fr 24px; gap: 15px; }
  .game-row p { display: none; }
  .split-feature { grid-template-columns: 1fr; }
  .detail-image { min-height: 420px; }
  .feature-copy { padding: 70px 20px; }
  .visit-grid { grid-template-columns: 1fr; }
  .legal-section { padding: 80px 20px; }
  .lemon-band { margin: 0; padding: 50px 20px; }
  .article-hero { padding: 75px 20px 55px; }
  .article-layout { grid-template-columns: 1fr; padding: 70px 20px; }
  .article-body section { padding-left: 45px; }
  .article-nav { position: static; }
  .next-pages { padding: 60px 20px; }
  .next-pages > div { grid-template-columns: 1fr; }
  .next-pages a, .next-pages a:last-child { border-right: 1px solid var(--line); border-bottom: 0; }
  .next-pages a:last-child { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { gap: 18px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

.static-nav{display:flex;flex-wrap:wrap;gap:10px;padding:18px 4vw;border-bottom:1px solid var(--line);background:var(--paper-deep)}
.static-nav a{padding:8px 11px;border:1px solid var(--line);font-size:.78rem;font-weight:750;background:var(--white)}
.static-hero{max-width:1440px;margin:auto;display:grid;grid-template-columns:.9fr 1.1fr;min-height:650px;border-left:1px solid var(--line);border-right:1px solid var(--line)}
.static-hero-copy{padding:90px 5vw}.static-hero-copy h1{font:500 clamp(4rem,8vw,8rem)/.86 Georgia,serif;letter-spacing:-.07em;margin:0}.static-hero-copy>p:not(.eyebrow){font-size:1.12rem;color:#4b544e;max-width:600px}.static-image img{height:100%;object-fit:cover}
.static-cards{max-width:1440px;margin:auto;display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--line)}.static-cards div{padding:24px;border-right:1px solid var(--line)}.static-cards strong,.static-cards small{display:block}.static-cards small{text-transform:uppercase;letter-spacing:.12em;color:var(--green)}
@media(max-width:760px){.static-hero{grid-template-columns:1fr}.static-image{min-height:420px}.static-cards{grid-template-columns:1fr}.static-cards div{border-bottom:1px solid var(--line)}}