@font-face{font-family:Bricolage;font-style:normal;font-weight:700 800;font-display:optional;src:url(/fonts/bricolage.woff2) format("woff2")}
@font-face{font-family:"Source Serif";font-style:normal;font-weight:400 600;font-display:optional;src:url(/fonts/source-serif.woff2) format("woff2")}

:root{
  --paper:#F6EBD8;
  --paper-2:#EFE0C8;
  --ink:#1A120C;
  --ink-soft:#4A3A2E;
  --forest:#0E5C3A;
  --forest-deep:#083E27;
  --tomato:#D83A22;
  --tomato-deep:#B22C19;
  --gold:#E3A014;
  --sky:#1F6AA5;
  --night:#16110D;
  --line:rgba(26,18,12,.14);
  --max:1180px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:clip}
html,body{margin:0;background:var(--paper);color:var(--ink)}
body{
  font-family:"Source Serif",Georgia,serif;
  font-size:1.0625rem;
  line-height:1.55;
  min-height:100vh;
  overflow-x:clip;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--forest);text-underline-offset:3px}
a:hover{color:var(--tomato)}
h1,h2,h3,h4,.logo,.btn,.nav a,.card-title,.gate-card h2{
  font-family:Bricolage,system-ui,sans-serif;
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.08;
  margin:0;
}
p{margin:0 0 1rem}

.wrap{width:min(var(--max),calc(100% - 2rem));margin-inline:auto}
.site{min-height:100vh;display:flex;flex-direction:column}
main{flex:1}

/* Header */
.header{
  position:sticky;top:0;z-index:40;
  background:var(--paper);
  border-bottom:4px solid var(--forest);
}
.header::before{
  content:"";display:block;height:7px;
  background:linear-gradient(90deg,#D83A22 0 25%,#E3A014 25% 50%,#0E5C3A 50% 75%,#1F6AA5 75% 100%);
}
.header-inner{
  width:min(var(--max),calc(100% - 2rem));
  margin-inline:auto;
  display:flex;align-items:center;gap:.75rem;
  height:72px;min-height:72px;
}
.logo{
  display:flex;align-items:baseline;flex-wrap:wrap;gap:.15rem .4rem;
  text-decoration:none;color:var(--ink);font-size:1.2rem;
  margin-right:auto;min-width:0;
}
.logo b{color:var(--tomato)}
.logo span{font-size:.72rem;font-weight:700;color:var(--forest);letter-spacing:.12em;text-transform:uppercase;white-space:nowrap}
.nav{display:flex;align-items:center;gap:.2rem}
.nav a{
  text-decoration:none;color:var(--ink);
  padding:.55rem .75rem;font-size:.92rem;font-weight:700;
}
.nav a[aria-current="page"]{background:var(--forest);color:var(--paper)}
.nav a.cta{background:var(--tomato);color:#fff;margin-left:.4rem}
.nav a.cta:hover{background:var(--tomato-deep);color:#fff}
.age{
  font-family:Bricolage,sans-serif;font-weight:800;font-size:.78rem;
  background:var(--ink);color:var(--gold);padding:.25rem .45rem;
  flex:none;white-space:nowrap;
}
.nav-toggle{
  display:none;width:44px;height:44px;border:2px solid var(--ink);
  background:var(--paper);cursor:pointer;padding:0;flex:none;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
  appearance:none;-webkit-appearance:none;color:var(--ink);
}
.nav-toggle span{display:block;width:18px;height:2px;background:var(--ink);margin:0}

/* Hero */
.hero{
  display:grid;grid-template-columns:1.05fr .95fr;gap:2.2rem;align-items:end;
  padding:2.4rem 0 2.8rem;
}
.hero-kicker{
  font-family:Bricolage,sans-serif;font-weight:700;font-size:.78rem;
  letter-spacing:.16em;text-transform:uppercase;color:var(--tomato);margin-bottom:.7rem;
}
.hero h1{font-size:clamp(2.4rem,6vw,4.4rem);max-width:14ch;margin-bottom:1rem}
.hero p{font-size:1.15rem;color:var(--ink-soft);max-width:42ch}
.hero-actions{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:1.3rem}
.hero-photo{
  border:4px solid var(--ink);
  box-shadow:12px 12px 0 var(--forest);
}
.hero-photo img{width:100%;aspect-ratio:1400/788;object-fit:cover}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  text-decoration:none;border:0;cursor:pointer;
  padding:.85rem 1.15rem;font-size:1rem;
  background:var(--tomato);color:#fff;
}
.btn:hover{background:var(--tomato-deep);color:#fff}
.btn-ink{background:var(--ink);color:var(--paper)}
.btn-ink:hover{background:#000;color:#fff}
.btn-forest{background:var(--forest);color:#fff}
.btn-forest:hover{background:var(--forest-deep);color:#fff}
.btn-ghost{background:transparent;color:var(--ink);outline:2px solid var(--ink);outline-offset:-2px}
.btn-ghost:hover{background:var(--ink);color:var(--paper)}
.btn-playstore{background:#161110;color:#fff;gap:.7rem;padding:.9rem 1.2rem}
.btn-playstore svg{width:22px;height:22px;flex:none}
.btn-playstore:hover{background:#000;color:#fff}

/* Sections */
.band{padding:2.4rem 0 3rem}
.band-head{display:flex;justify-content:space-between;align-items:end;gap:1rem;margin-bottom:1.4rem}
.band-head h2{font-size:clamp(1.7rem,3.4vw,2.5rem)}
.band-head p{margin:0;color:var(--ink-soft);max-width:36ch}
.forest-band{background:var(--forest);color:var(--paper)}
.forest-band h2,.forest-band p,.forest-band a{color:var(--paper)}
.night-band{background:var(--night);color:var(--paper)}
.paper-2{background:var(--paper-2)}

.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.card{
  background:var(--ink);color:var(--paper);display:flex;flex-direction:column;
  text-decoration:none;border:3px solid var(--ink);
}
.card:hover{color:var(--paper)}
.card img{width:100%;aspect-ratio:3/2;object-fit:cover}
.card-body{padding:.85rem .9rem 1rem;display:flex;flex-direction:column;gap:.35rem;flex:1}
.card-title{font-size:1.12rem}
.card p{margin:0;font-size:.92rem;color:#E8D7BE;flex:1}
.card .go{font-family:Bricolage,sans-serif;font-weight:700;font-size:.85rem;color:var(--gold);margin-top:.4rem}
.card:nth-child(4n+1) .card-body{background:var(--tomato)}
.card:nth-child(4n+2) .card-body{background:var(--forest)}
.card:nth-child(4n+3) .card-body{background:var(--sky)}
.card:nth-child(4n) .card-body{background:#8A2F12}
.card:nth-child(4n+1) p,.card:nth-child(4n+2) p,.card:nth-child(4n+3) p,.card:nth-child(4n) p{color:#fff;opacity:.9}

/* Tower Dash */
.tower{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:0;
  border:4px solid var(--ink);background:var(--night);color:var(--paper);
  margin:0 auto;
  width:min(var(--max),calc(100% - 2rem));
}
.tower img{width:100%;height:100%;object-fit:cover;min-height:280px;aspect-ratio:3/2}
.tower-copy{padding:1.8rem 1.7rem 2rem}
.tower-copy h2{font-size:clamp(2rem,4vw,3rem);margin:.4rem 0 1rem}
.tower-copy p{color:#E8D7BE}
.tower-meta{font-family:Bricolage,sans-serif;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold)}

.facts{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.fact{background:var(--paper);border:3px solid var(--ink);padding:1.2rem 1.15rem}
.fact h3{font-size:1.2rem;margin-bottom:.45rem}
.info-split{display:grid;grid-template-columns:.95fr 1.05fr;gap:1.8rem;align-items:center}
.info-art{margin:0;border:3px solid var(--ink);background:#fff}
.info-art img{width:100%;aspect-ratio:4/3;object-fit:cover}
.info-note{
  display:grid;grid-template-columns:200px 1fr;gap:1.2rem;align-items:center;
  margin-top:1.6rem;background:#fff6ea;border:3px solid var(--ink);padding:1rem;
}
.info-note img{width:100%;aspect-ratio:4/3;object-fit:cover;border:2px solid var(--ink)}
.info-note h3{font-size:1.3rem;margin-bottom:.4rem}
.plain-list{margin:1rem 0 0;padding-left:1.15rem;color:var(--ink-soft)}
.plain-list li{margin:.4rem 0}
.house .info-split{grid-template-columns:1.05fr .95fr}

.faq details{border-bottom:2px solid var(--line);padding:.9rem 0}
.faq summary{font-family:Bricolage,sans-serif;font-weight:700;cursor:pointer;font-size:1.05rem}
.faq p{margin:.6rem 0 0;color:var(--ink-soft)}

/* Play */
.play-hero{padding:1.6rem 0 1.15rem}
.play-hero h1{font-size:clamp(2rem,4vw,3.1rem);margin-bottom:.6rem}
.play-hero p{max-width:58ch;color:var(--ink-soft);margin-bottom:0}
.play-desk{padding-bottom:.4rem}
.stage{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:#111;
  border:4px solid var(--ink);
  height:min(58vh, 520px);
  min-height:280px;
}
.stage.is-playing{height:min(76vh, 720px)}
.stage iframe{
  position:absolute;inset:0;width:100%;height:100%;
  border:0;background:#000;display:block;
}
.stage-launch{
  position:absolute;inset:0;border:0;cursor:pointer;padding:0;
  display:grid;place-items:center;background:#111;z-index:1;
}
.stage-launch img{
  position:absolute;inset:0;
  width:100%;height:100%;max-width:none;
  object-fit:cover;
}
.stage-launch::after{
  content:"";position:absolute;inset:0;
  background:rgba(16,12,8,.4);z-index:1;
}
.stage-launch span{
  position:relative;z-index:2;
  font-family:Bricolage,sans-serif;font-weight:800;
  background:var(--tomato);color:#fff;
  padding:.9rem 1.35rem;font-size:1.1rem;
}
.play-more{background:var(--paper);padding-top:2rem}

/* Legal / contact */
.page{padding:2rem 0 3.2rem}
.page h1{font-size:clamp(2.1rem,4.5vw,3.3rem);margin-bottom:1rem}
.page h2{font-size:1.45rem;margin:2rem 0 .7rem}
.page h3{font-size:1.15rem;margin:1.3rem 0 .4rem}
.prose{max-width:68ch}
.prose p,.prose li{color:var(--ink-soft)}
.prose ul{padding-left:1.15rem}
.prose li{margin:.35rem 0}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem;align-items:start}
.contact-grid figure{margin:0;border:3px solid var(--ink)}
.contact-grid figure img{width:100%;aspect-ratio:4/3;object-fit:cover}
.page-photo{margin:1.2rem 0 1.6rem;border:3px solid var(--ink);max-width:100%}
.page-photo img{width:100%;aspect-ratio:16/9;object-fit:cover}
.prose .page-photo{max-width:100%}
.contact-card{border:3px solid var(--ink);padding:1.3rem;background:#fff6ea}
.contact-card dt{font-family:Bricolage,sans-serif;font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;color:var(--tomato);margin-top:.8rem}
.contact-card dd{margin:.2rem 0 0}
form{display:grid;gap:.7rem}
label{font-family:Bricolage,sans-serif;font-size:.85rem}
input,textarea,select{
  font:inherit;width:100%;padding:.7rem .75rem;border:2px solid var(--ink);
  background:#fff;color:var(--ink);
}
textarea{min-height:140px;resize:vertical}

/* Footer */
.footer{background:var(--night);color:#E8D7BE;padding:2.2rem 0 1.4rem;margin-top:auto}
.footer a{color:#fff}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.15fr;gap:1.6rem}
.footer h2{color:#fff;font-size:1.15rem;margin-bottom:.6rem}
.footer ul{list-style:none;margin:0;padding:0}
.footer li{margin:.3rem 0}
.footer-note{margin-top:1.6rem;padding-top:1rem;border-top:1px solid rgba(255,255,255,.12);font-size:.88rem}
.footer-logos{display:flex;flex-direction:column;align-items:flex-start;gap:.55rem}
.footer-logos a{
  display:flex;align-items:center;background:#fff;padding:.35rem .5rem;
  text-decoration:none;
}
.footer-logos img{width:140px;height:18px;object-fit:contain}
.footer-logos .logo-gamcare{width:112px;height:41px;max-width:112px}
.help-centres{
  display:flex;flex-wrap:wrap;align-items:center;gap:.8rem 1.1rem;
  margin-top:1.4rem;padding:.85rem 1rem;
  border:3px solid var(--ink);background:#fff;
}
.help-centres p{
  margin:0;margin-right:auto;
  font-family:Bricolage,sans-serif;font-weight:700;font-size:.88rem;
}
.help-centres a{display:flex;align-items:center;line-height:0}
.help-centres img{width:180px;height:24px;object-fit:contain}
.help-centres .logo-gamcare{width:120px;height:44px;max-width:120px}
.form-thanks{
  margin-top:1.2rem;padding:1.1rem 1.15rem;
  border:3px solid var(--forest);background:#fff;
  font-family:Bricolage,sans-serif;font-weight:700;
}

/* Overlays */
.gate,.cookie{
  position:fixed;inset:auto 0 0 0;z-index:70;
}
.gate{inset:0;background:rgba(22,17,13,.72);display:grid;place-items:center;padding:1rem}
.gate[hidden],.cookie[hidden],html.ok-age .gate,html.ok-cookie .cookie{display:none}
.gate-card{
  background:var(--paper);color:var(--ink);max-width:440px;padding:1.6rem;
  border:4px solid var(--ink);
}
.gate-card p{color:var(--ink-soft)}
.gate-actions{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:1rem}
.cookie{
  background:var(--ink);color:var(--paper);padding:1rem 1.1rem;
}
.cookie-inner{width:min(var(--max),calc(100% - 0rem));margin:0 auto;display:flex;gap:1rem;align-items:center;justify-content:space-between;flex-wrap:wrap}
.cookie p{margin:0 0 .35rem;font-size:.95rem;color:#E8D7BE}
.cookie p:last-child{margin:0}
.cookie a{color:var(--gold)}
.cookie-actions{display:flex;gap:.6rem;flex-wrap:wrap;align-items:center}
.cookie .btn-ghost{color:#fff;outline-color:#fff}
.cookie .btn-ghost:hover{background:#fff;color:var(--ink)}

.prose table{width:100%;border-collapse:collapse;margin:1rem 0 1.4rem;font-size:.95rem}
.prose th,.prose td{border:2px solid var(--line);padding:.55rem .6rem;text-align:left;vertical-align:top}
.prose th{font-family:Bricolage,sans-serif;font-size:.8rem;letter-spacing:.04em;background:var(--paper-2)}
code{font-size:.9em}

.err{padding:4rem 0;text-align:center}
.err h1{font-size:4rem}

@media (max-width:980px){
  .hero,.tower,.contact-grid,.grid-4,.facts,.footer-grid,.info-split,.house .info-split{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .wrap,.header-inner,.tower,.cookie-inner{width:min(var(--max),calc(100% - 1.5rem))}
  .header-inner{gap:.5rem;height:68px;min-height:68px}
  .logo{
    flex-direction:row;flex-wrap:wrap;align-items:baseline;
    gap:.1rem .3rem;font-size:1.05rem;line-height:1.05;
  }
  .logo span{flex:1 0 100%;font-size:.58rem;letter-spacing:.14em}
  .age{font-size:.7rem;padding:.2rem .38rem;margin:0}
  .nav-toggle{display:flex}
  .nav{
    display:none;position:absolute;left:0;right:0;top:100%;
    background:var(--paper);border-bottom:4px solid var(--forest);
    flex-direction:column;align-items:stretch;padding:.5rem 1rem .9rem;
    z-index:45;
  }
  .nav.open{display:flex}
  .nav a{padding:.85rem .35rem;min-height:44px;display:flex;align-items:center}
  .nav a.cta{margin:.35rem 0 0;justify-content:flex-start}
  .hero,.tower,.contact-grid,.grid-4,.grid-3,.facts,.footer-grid,.info-split,.house .info-split,.info-note{grid-template-columns:1fr}
  .hero{padding:1.25rem 0 1.6rem;gap:1.3rem}
  .hero h1{font-size:clamp(1.85rem,9.5vw,3.2rem);max-width:none}
  .hero p{font-size:1.02rem}
  .hero-kicker{letter-spacing:.07em;font-size:.7rem;line-height:1.4}
  .hero-actions{flex-direction:column;align-items:stretch;gap:.55rem}
  .hero-actions .btn{width:100%}
  .hero-photo{box-shadow:6px 6px 0 var(--forest)}
  .band{padding:1.7rem 0 2.1rem}
  .band-head{flex-direction:column;align-items:flex-start;gap:.35rem}
  .tower-copy{padding:1.25rem 1.1rem 1.4rem}
  .tower img{min-height:200px}
  .btn-playstore{width:100%}
  .info-note{padding:.8rem}
  .help-centres{flex-direction:column;align-items:flex-start;gap:.7rem;padding:.8rem .85rem}
  .help-centres p{margin-right:0}
  .help-centres img{width:150px;height:20px}
  .help-centres .logo-gamcare{width:108px;height:40px;max-width:108px}
  .footer-grid{gap:1.2rem}
  .footer-logos img{width:140px;height:18px}
  .footer-logos .logo-gamcare{width:100px;height:37px;max-width:100px}
  .page{padding:1.4rem 0 2.4rem}
  .contact-card{padding:1rem}
  .contact-card a,.footer a{overflow-wrap:anywhere}
  .prose{overflow-x:auto}
  .stage{height:48vh;min-height:220px}
  .stage.is-playing{height:70vh}
  .stage-launch span{padding:.75rem 1rem;font-size:1rem}
  .gate{padding:.75rem;align-items:end}
  .gate-card{padding:1.25rem 1.1rem;width:100%}
  .gate-actions{flex-direction:column}
  .gate-actions .btn{width:100%}
  .cookie{padding:.85rem .9rem}
  .cookie-inner{flex-direction:column;align-items:stretch;gap:.75rem}
  .cookie-actions{width:100%}
  .cookie-actions .btn{flex:1;justify-content:center}
  .err{padding:2.4rem 0}
  .err h1{font-size:clamp(2.4rem,18vw,4rem)}
}
@media (max-width:380px){
  .logo{font-size:.98rem}
  .hero-kicker{letter-spacing:.04em}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
}
