/* Kingdom Ember — original, dependency-free responsive website.
   Fonts deliberately use local/system stacks; no font files or CDN requests. */
:root {
  color-scheme: dark;
  --bg: #081e1b;
  --bg-deep: #061612;
  --surface: #102c27;
  --surface-raised: #173a32;
  --ink: #f6f0e2;
  --muted: #aec0b5;
  --gold: #e5bc74;
  --gold-bright: #f6d392;
  --line: rgba(197, 210, 184, .17);
  --gold-line: rgba(229, 188, 116, .35);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --width: 1240px;
  --header-height: 94px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--bg); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a, input, textarea, select { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
button, input, textarea, select { border-radius: 0; }
button:disabled { cursor: not-allowed; }
:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 5px; }
::selection { background: var(--gold); color: var(--bg-deep); }
[hidden] { display: none !important; }
.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: 8px; left: 16px; z-index: 200; padding: 10px 18px; background: var(--gold); color: var(--bg); transform: translateY(-150%); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.icon { width: 24px; height: 24px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon--sm { width: 18px; height: 18px; }
.icon--lg { width: 32px; height: 32px; }
.container { width: min(var(--width), calc(100% - 112px)); margin-inline: auto; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 23px; color: var(--gold); font-size: 10px; line-height: 1.5; letter-spacing: 2.8px; font-weight: 700; text-transform: uppercase; }
.eyebrow::before { content: ''; height: 1px; width: 30px; background: currentColor; opacity: .7; }
.section-heading { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(38px, 4.4vw, 59px); font-weight: 400; line-height: 1.12; letter-spacing: -1.9px; }
.section-heading em { color: var(--gold); font-weight: 400; }
.section-copy { color: var(--muted); max-width: 470px; line-height: 1.9; }
.section-copy p { margin: 0 0 20px; }
.text-link { display: inline-flex; align-items: center; justify-content: flex-start; gap: 12px; min-height: 44px; color: var(--gold); font-size: 13px; font-weight: 600; }
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 17px; min-height: 54px; padding: 14px 25px; border: 1px solid var(--gold); background: linear-gradient(120deg, #f1cb88, #dab06b); color: #183529; font-size: 12px; line-height: 1.5; font-weight: 750; letter-spacing: .5px; box-shadow: inset 0 0 0 3px rgba(23, 53, 41, .10); transition: background .2s, transform .2s, box-shadow .2s; }
.button:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(229, 188, 116, .15), inset 0 0 0 3px rgba(23, 53, 41, .1); }
.button--outline { background: transparent; color: var(--gold); border-color: var(--gold-line); box-shadow: none; }
.button--outline:hover { background: rgba(229, 188, 116, .08); box-shadow: none; }
.button--small { min-height: 44px; padding: 11px 20px; font-size: 11px; }
.button--full { width: 100%; }
.icon-button { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: 0 0 auto; color: var(--gold); background: transparent; border: 1px solid var(--gold-line); transition: background .2s; }
.icon-button:hover { background: rgba(229,188,116,.1); }
/* Header */
.site-header { position: relative; z-index: 30; height: var(--header-height); background: #081e1b; border-bottom: 1px solid var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; flex: 0 0 auto; }
.brand-emblem { display: grid; place-items: center; width: 43px; height: 47px; color: var(--gold); border: 1px solid var(--gold-line); clip-path: polygon(0 0,100% 0,100% 76%,50% 100%,0 76%); background: linear-gradient(155deg, #234233, #102d24); }
.brand-emblem .icon { width: 30px; height: 30px; }
.brand-name { font-family: var(--serif); font-size: 17px; line-height: 1.05; letter-spacing: 2.7px; }
.brand-name span { display: block; color: var(--gold); font-size: 14px; letter-spacing: 5.4px; margin-top: 6px; }
.site-nav { display: flex; align-items: center; gap: 31px; margin-left: auto; }
.nav-link { position: relative; padding-block: 12px; color: #becac0; font-size: 12px; font-weight: 500; }
.nav-link::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 1px; transform: scaleX(0); background: var(--gold); transition: transform .2s; }
.nav-link:hover, .nav-link[aria-current='page'] { color: var(--gold); }
.nav-link[aria-current='page']::after, .nav-link:hover::after { transform: scaleX(1); }
.header-cta { margin-left: 13px; }
.menu-toggle { display: none; }
/* Hero */
.hero { position: relative; min-height: 765px; isolation: isolate; overflow: hidden; background: #081e1b; }
.hero-scene { position: absolute; z-index: -4; right: 0; top: 0; width: 76%; height: 100%; object-fit: cover; object-position: 54% 27%; filter: saturate(.85); -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%); mask-image: linear-gradient(90deg, transparent, #000 16%); }
.hero::before { position: absolute; content: ''; inset: 0; z-index: -3; background: linear-gradient(90deg, #081e1b 2%, rgba(8,30,27,.97) 23%, rgba(8,30,27,.81) 39%, rgba(8,30,27,.25) 67%, rgba(8,30,27,.04) 100%); }
.hero::after { position: absolute; content: ''; inset: 0; z-index: -2; background: linear-gradient(0deg, #081e1b 1%, rgba(8,30,27,.6) 13%, transparent 38%, rgba(8,30,27,.08) 76%, rgba(8,30,27,.3) 100%); }
.hero-inner { position: relative; min-height: 765px; display: flex; flex-direction: column; justify-content: center; padding-top: 58px; padding-bottom: 135px; }
.hero-copy { width: 680px; max-width: 65%; }
.hero .eyebrow { margin-bottom: 27px; font-size: 9px; letter-spacing: 2.7px; }
.hero-heading { margin: 0; font-family: var(--serif); font-size: clamp(58px, 6.5vw, 91px); font-weight: 400; letter-spacing: -3.7px; line-height: 1.055; }
.hero-heading span { display: block; }
.hero-heading em { color: var(--gold-bright); font-weight: 400; }
.hero-description { color: #c4cfc3; max-width: 372px; font-size: 15px; line-height: 1.9; margin: 28px 0 31px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 27px; }
.watch-button { display: inline-flex; align-items: center; gap: 12px; min-height: 50px; padding: 0; border: 0; background: none; color: var(--ink); font-size: 12px; font-weight: 550; }
.play-circle { width: 38px; height: 38px; border: 1px solid rgba(245,239,222,.4); border-radius: 50%; display: grid; place-items: center; transition: border-color .2s, background .2s; }
.play-circle .icon { width: 14px; height: 14px; margin-left: 2px; }
.watch-button:hover .play-circle { background: rgba(229,188,116,.1); border-color: var(--gold); }
.hero-foot { position: absolute; left: 0; bottom: 40px; right: 0; display: flex; align-items: center; justify-content: space-between; }
.hero-facts { display: flex; gap: 25px; color: #b8c9ba; font-size: 9px; letter-spacing: 1.7px; font-weight: 600; }
.hero-facts span { display: inline-flex; align-items: center; gap: 9px; }
.hero-facts .icon { width: 17px; height: 17px; color: var(--gold); }
.scroll-cue { display: inline-flex; align-items: center; gap: 13px; color: #c6d3c3; font-size: 9px; letter-spacing: 2px; }
.scroll-cue .icon { width: 15px; height: 24px; color: var(--gold); }
.hero-game-badge { position: absolute; right: 0; bottom: 132px; display: flex; align-items: center; gap: 15px; padding: 15px 24px 15px 15px; border: 1px solid rgba(239,223,174,.28); background: rgba(8,30,27,.72); backdrop-filter: blur(14px); }
.hero-game-badge img { width: 58px; height: 58px; border-radius: 12px; }
.badge-title { margin: 0 0 3px; font-family: var(--serif); font-size: 17px; letter-spacing: .5px; }
.badge-caption { margin: 0; color: #c3c9ad; font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase; }
.embers { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: -1; }
.embers i { position: absolute; width: 3px; height: 3px; background: #f3c47d; border-radius: 50%; opacity: .45; box-shadow: 0 0 11px #f2bd66; animation: ember-rise 9s ease-in-out infinite; }
.embers i:nth-child(1) { left: 48%; top: 72%; animation-delay: -3s; }
.embers i:nth-child(2) { left: 73%; top: 61%; animation-delay: -6s; }
.embers i:nth-child(3) { left: 56%; top: 22%; animation-delay: -1s; }
.embers i:nth-child(4) { left: 83%; top: 33%; animation-delay: -5s; }
.embers i:nth-child(5) { left: 31%; top: 40%; animation-delay: -7s; }
@keyframes ember-rise { 0%,100% { transform: translate(0,0); opacity: 0; } 30% { opacity: .65; } 90% { transform: translate(20px,-85px); opacity: 0; } }
/* Promise strip */
.strategy-strip { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--line); padding: 34px 0; }
.strategy-item { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 0 24px; border-right: 1px solid var(--line); }
.strategy-item:first-child { justify-content: flex-start; padding-left: 4px; }
.strategy-item:last-child { border: 0; justify-content: flex-end; padding-right: 4px; }
.strategy-item > .icon { width: 36px; height: 36px; color: var(--gold); }
.strategy-item h2 { margin: 0 0 2px; font-family: var(--serif); font-size: 19px; font-weight: 400; }
.strategy-item p { margin: 0; color: var(--muted); font-size: 11px; }
/* Gameplay section */
.game-section { position: relative; padding: 112px 0 95px; overflow: hidden; }
.game-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.game-intro { padding: 18px 0; }
.game-intro .section-copy { max-width: 405px; margin-bottom: 29px; font-size: 14px; }
.feature-tabs { display: flex; flex-direction: column; gap: 0; max-width: 451px; }
.feature-tab { display: grid; grid-template-columns: 32px 1fr 22px; text-align: left; gap: 15px; width: 100%; padding: 21px 18px; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-left: 2px solid transparent; }
.feature-tab[aria-selected='true'] { background: linear-gradient(90deg, rgba(229,188,116,.09),rgba(229,188,116,.015)); border-left-color: var(--gold); }
.feature-tab:hover { background: rgba(229,188,116,.04); }
.feature-tab .tab-number { color: #b0bfb2; font-size: 10px; padding-top: 3px; }
.feature-tab[aria-selected='true'] .tab-number { color: var(--gold); }
.tab-title { display: block; margin: 0; font-size: 15px; font-weight: 600; color: #e5eadd; }
.tab-description { display: block; color: var(--muted); font-size: 12px; line-height: 1.8; margin-top: 8px; max-width: 290px; }
.feature-tab:not([aria-selected='true']) .tab-description { display: none; }
.feature-tab > .icon { margin-top: 2px; color: var(--gold); width: 18px; height: 18px; }
.feature-tab:not([aria-selected='true']) > .icon { opacity: .45; }
.game-intro > .text-link { margin-top: 23px; }
.game-visual { position: relative; min-height: 600px; display: flex; justify-content: center; align-items: center; isolation: isolate; }
.game-visual::before { content: ''; position: absolute; width: 485px; height: 485px; border: 1px solid rgba(229,188,116,.15); border-radius: 50%; z-index: -2; background: radial-gradient(circle, rgba(70,99,68,.27), transparent 67%); }
.game-visual::after { content: ''; position: absolute; width: 560px; height: 560px; border: 1px solid rgba(229,188,116,.07); border-radius: 50%; z-index: -2; }
.screen-back { position: absolute; width: 241px; right: -1px; top: 62px; transform: rotate(8deg); border: 5px solid #203c32; border-radius: 29px; overflow: hidden; opacity: .55; box-shadow: 0 20px 40px rgba(0,0,0,.25); z-index: -1; }
.screen-back img { width: 100%; }
.phone-frame { display: block; position: relative; width: 274px; padding: 7px; border: 1px solid #ae9765; border-radius: 35px; background: #11261f; transform: rotate(-5deg); box-shadow: 0 30px 75px rgba(0,0,0,.45), inset 0 0 0 2px #304b39; overflow: hidden; margin-left: -62px; transition: transform .25s ease; }
.phone-frame:hover { transform: rotate(-3deg) translateY(-6px); }
.phone-frame img { width: 100%; height: auto; border-radius: 27px; }
.phone-frame .expand-indicator { position: absolute; bottom: 22px; right: 20px; display: grid; place-items: center; width: 32px; height: 32px; background: rgba(8,30,27,.85); color: var(--gold); border: 1px solid var(--gold-line); border-radius: 50%; }
.visual-label { position: absolute; left: 0; bottom: 50px; padding: 12px 19px; border: 1px solid var(--gold-line); display: flex; align-items: center; gap: 12px; background: #112e27; transform: rotate(-5deg); box-shadow: 0 10px 30px rgba(0,0,0,.2); pointer-events: none; }
.visual-label .icon { color: var(--gold); }
.visual-label span { font-size: 9px; line-height: 1.6; color: #cfdec9; letter-spacing: 1.4px; }
.visual-label strong { display: block; color: var(--gold); font-family: var(--serif); font-size: 17px; font-weight: 400; letter-spacing: .3px; }
.visual-side-label { position: absolute; right: -22px; top: 49%; writing-mode: vertical-rl; color: #aec0ac; font-size: 8px; letter-spacing: 3px; }
/* Gallery */
.gallery-section { padding: 25px 0 106px; }
.section-head-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 37px; }
.section-head-row .section-heading { margin-bottom: 0; font-size: clamp(35px,4vw,49px); }
.section-head-row .eyebrow { margin-bottom: 17px; }
.gallery-hint { display: flex; gap: 9px; align-items: center; color: var(--muted); font-size: 11px; padding-bottom: 5px; }
.gallery-hint .icon { width: 15px; height: 15px; color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: 1.65fr 1fr 1fr; gap: 20px; }
.gallery-card { position: relative; display: block; height: 380px; padding: 0; text-align: left; border: 1px solid var(--line); overflow: hidden; background: var(--surface); }
.gallery-card > img { width: 100%; height: 100%; object-fit: cover; object-position: center 21%; transition: transform .5s ease; }
.gallery-card:first-child > img { object-position: 65% 45%; }
.gallery-card:hover > img { transform: scale(1.045); }
.gallery-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,20,16,.97), rgba(4,20,16,.2) 36%, rgba(4,20,16,0) 70%); }
.gallery-caption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 22px; }
.gallery-caption > span { display: block; color: var(--gold); font-size: 8px; letter-spacing: 2.3px; text-transform: uppercase; margin-bottom: 7px; }
.gallery-caption strong { font-family: var(--serif); font-size: 22px; line-height: 1.25; font-weight: 400; display: block; max-width: 230px; }
.gallery-expand { position: absolute; z-index: 1; top: 16px; right: 16px; width: 32px; height: 32px; display: grid; place-items: center; background: rgba(8,30,27,.65); border: 1px solid rgba(239,223,174,.4); color: var(--ink); }
.gallery-expand .icon { width: 15px; height: 15px; }
/* Contact callout */
.contact-callout { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; margin-bottom: 92px; padding: 48px 57px; border: 1px solid var(--gold-line); background: radial-gradient(ellipse at 86% 50%, #234d3a, transparent 50%), #102e26; overflow: hidden; }
.contact-callout::before, .contact-callout::after { content: ''; position: absolute; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); opacity: .7; }
.contact-callout::before { left: -5px; top: -5px; }
.contact-callout::after { right: -5px; bottom: -5px; }
.contact-callout .section-heading { font-size: 37px; letter-spacing: -1px; margin-bottom: 24px; }
.contact-callout .eyebrow { margin-bottom: 16px; font-size: 9px; }
.callout-art { position: relative; margin-right: 47px; }
.callout-art::before { content: ''; position: absolute; inset: -25px; border: 1px solid rgba(229,188,116,.18); border-radius: 50%; }
.callout-art img { width: 180px; border-radius: 33px; transform: rotate(8deg); border: 1px solid rgba(229,188,116,.5); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
/* Footer */
.site-footer { background: var(--bg-deep); padding: 60px 0 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.45fr .65fr 1fr 1.2fr; gap: 45px; padding-bottom: 44px; }
.footer-brand-note { color: #98ad9e; font-family: var(--serif); font-size: 15px; line-height: 1.6; max-width: 218px; margin-top: 19px; }
.footer-title { color: var(--gold); font-size: 9px; font-weight: 650; letter-spacing: 2px; margin: 0 0 17px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #b3c3b8; font-size: 12px; display: inline-block; padding: 3px 0; }
.footer-links a:hover, .footer-email:hover { color: var(--gold); }
.footer-email { color: #dee6d8; font-size: 13px; overflow-wrap: anywhere; }
.footer-address { margin-top: 12px; color: #98ad9e; font-size: 11px; font-style: normal; line-height: 1.8; }
.footer-bottom { padding: 23px 0; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 25px; color: #9bae9f; font-size: 10px; }
.footer-bottom-right { display: inline-flex; align-items: center; gap: 30px; }
.back-top { display: inline-flex; align-items: center; gap: 8px; min-height: 28px; color: var(--gold); }
.back-top .icon { width: 14px; height: 14px; }
/* Interior pages */
.interior-main { position: relative; overflow: clip; background: radial-gradient(ellipse at 80% 0,rgba(76,103,58,.13), transparent 44%); }
.page-intro { padding: 64px 0 52px; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; color: #a9bcae; font-size: 11px; margin-bottom: 41px; }
.breadcrumb .icon { width: 12px; height: 12px; color: var(--gold); }
.breadcrumb a:hover { color: var(--gold); }
.page-title { font-family: var(--serif); font-size: clamp(46px,5.4vw,70px); font-weight: 400; letter-spacing: -2.6px; line-height: 1.08; margin: 0 0 23px; }
.page-title em { color: var(--gold); font-weight: 400; }
.page-lead { color: var(--muted); font-size: 15px; line-height: 1.9; max-width: 650px; margin: 0; }
/* Contact */
.contact-intro { padding-bottom: 58px; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 86px; padding-bottom: 90px; }
.contact-details { padding-top: 10px; }
.contact-detail { padding: 27px 0; border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; gap: 20px; }
.contact-detail:first-child { padding-top: 0; }
.contact-detail > .icon { color: var(--gold); margin-top: 6px; }
.detail-label { font-size: 9px; letter-spacing: 2px; color: var(--gold); margin: 0 0 9px; font-weight: 650; }
.detail-value { font-size: 18px; line-height: 1.7; color: var(--ink); font-style: normal; margin: 0; overflow-wrap: anywhere; }
.detail-note { font-size: 12px; color: var(--muted); margin: 9px 0 0; }
.email-row { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.email-row .icon-button { border: 0; width: 36px; height: 36px; }
.email-row .icon-button .icon { width: 17px; height: 17px; }
.contact-tip { margin: 29px 0 0; padding: 23px; border: 1px solid var(--line); background: rgba(172,188,149,.035); }
.contact-tip .detail-label { display: flex; align-items: center; gap: 11px; }
.contact-tip p:last-child { color: var(--muted); font-size: 12px; line-height: 1.85; margin: 10px 0 0; }
.contact-art { position: relative; height: 183px; margin-top: 30px; overflow: hidden; border: 1px solid var(--line); }
.contact-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.contact-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,30,27,.8),transparent),linear-gradient(0deg,rgba(8,30,27,.55),transparent); }
.contact-art span { position: absolute; bottom: 19px; left: 23px; z-index: 1; font-family: var(--serif); font-size: 21px; }
.form-card { position: relative; padding: 35px; border: 1px solid var(--gold-line); background: linear-gradient(150deg,#15372e,#0d2822); }
.form-card::before { content: ''; position: absolute; inset: 6px; border: 1px solid rgba(229,188,116,.07); pointer-events: none; }
.form-card h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.form-intro { color: var(--muted); font-size: 12px; line-height: 1.9; margin: 0 0 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.field { margin-bottom: 19px; min-width: 0; }
.field label { display: flex; align-items: center; gap: 7px; font-size: 11px; color: #e5e9de; margin-bottom: 8px; font-weight: 600; }
.field label span { font-size: 10px; color: #b0c1b2; font-weight: 400; }
.field input, .field textarea, .field select { display: block; width: 100%; border: 1px solid rgba(191,207,174,.23); padding: 12px 13px; background: #0c241e; color: var(--ink); font-size: 12px; line-height: 1.7; min-height: 46px; }
.field input::placeholder, .field textarea::placeholder { color: #94ac9b; }
.field textarea { resize: vertical; min-height: 140px; max-height: 520px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field select { color-scheme: dark; }
.field-bottom { margin-top: 7px; display: flex; justify-content: space-between; gap: 10px; color: #a9bbae; font-size: 10px; }
.form-privacy { color: var(--muted); font-size: 10px; line-height: 1.8; margin: 17px 0 0; text-align: center; }
.form-privacy a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.draft-panel { margin-top: 25px; border: 1px solid var(--gold-line); padding: 19px; background: #0b231c; }
.draft-panel h3 { color: var(--gold); font-size: 14px; margin: 0 0 5px; }
.draft-panel p { color: var(--muted); font-size: 12px; line-height: 1.8; }
.draft-preview { max-height: 240px; overflow: auto; white-space: pre-wrap; overflow-wrap: anywhere; color: #e4eadc; font: 12px/1.75 var(--sans); border-top: 1px solid var(--line); padding-top: 13px; }
.draft-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 17px; }
.draft-actions .button { font-size: 10px; }
.faq-section { padding: 0 0 100px; }
.faq-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 86px; border-top: 1px solid var(--line); padding-top: 51px; }
.faq-layout .section-heading { font-size: 38px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; padding: 19px 0; font-size: 13px; font-weight: 550; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { color: var(--gold); width: 18px; height: 18px; transition: transform .2s; }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 13px; line-height: 1.9; margin: 0 20px 20px 0; }
.faq-item p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
/* Legal reading experience */
.legal-intro { padding-bottom: 44px; }
.legal-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 17px; margin-top: 27px; color: var(--muted); font-size: 11px; }
.meta-badge { padding: 5px 11px; border: 1px solid var(--gold-line); color: var(--gold); font-size: 9px; letter-spacing: 1px; }
.legal-layout { display: grid; grid-template-columns: 238px minmax(0,1fr); gap: 49px; align-items: start; padding-bottom: 92px; }
.legal-sidebar { position: sticky; top: 30px; }
.legal-toc { border-top: 1px solid var(--gold-line); padding-top: 21px; }
.legal-toc h2 { font-size: 9px; letter-spacing: 2px; color: var(--gold); margin: 0 0 17px; font-weight: 600; }
.legal-toc ol { padding: 0; margin: 0; list-style: none; }
.legal-toc li { margin-bottom: 2px; }
.legal-toc a { display: flex; align-items: baseline; gap: 12px; font-size: 11px; line-height: 1.6; color: #b4c6b7; padding: 8px 10px; border-left: 2px solid transparent; }
.legal-toc a span { color: #a9b8a5; font-size: 9px; width: 14px; flex: 0 0 auto; }
.legal-toc a:hover, .legal-toc a.is-active { color: var(--gold); border-left-color: var(--gold); background: rgba(229,188,116,.05); }
.legal-help { margin-top: 28px; padding: 20px 0; border-top: 1px solid var(--line); }
.legal-help p { color: var(--muted); font-size: 11px; line-height: 1.8; margin-bottom: 10px; }
.legal-help .text-link { font-size: 11px; }
.legal-paper { min-width: 0; background: #f3f0e6; color: #34463d; padding: 43px 49px 28px; border: 1px solid #d4d1bd; color-scheme: light; }
.legal-summary { padding: 22px 24px; border: 1px solid #d5d8c8; background: #e7ebdf; margin-bottom: 37px; }
.legal-summary .icon { color: #42634a; margin-bottom: 13px; }
.legal-summary h2 { font-size: 17px; font-family: var(--serif); font-weight: 400; color: #203e30; margin: 0 0 11px; }
.legal-summary p { color: #3c5547; font-size: 12px; line-height: 1.95; margin: 0; }
.legal-section { scroll-margin-top: 32px; padding-bottom: 26px; margin-bottom: 27px; border-bottom: 1px solid #d8d9cc; }
.legal-section:last-of-type { border-bottom: 0; margin-bottom: 0; }
.legal-section h2 { color: #1d3b2c; font-family: var(--serif); font-size: 24px; line-height: 1.3; font-weight: 400; letter-spacing: -.3px; margin: 0 0 16px; display: flex; gap: 13px; }
.legal-section h2 > span { font: 10px/2.4 var(--sans); color: #637859; flex: 0 0 auto; }
.legal-section h3 { color: #294934; font-size: 13px; margin: 21px 0 9px; }
.legal-section p, .legal-section li, .legal-section address { font-size: 15px; line-height: 1.9; margin: 0 0 15px; font-style: normal; }
.legal-section ul { padding-left: 19px; }
.legal-paper a { color: #315f41; text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal-paper a:hover { color: #122f1d; }
.legal-paper :focus-visible { outline-color: #536a35; }
.legal-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 23px; margin-top: 3px; border-top: 1px solid #d8d9cc; font-size: 11px; }
.legal-print { padding: 8px 0; display: flex; align-items: center; gap: 8px; background: none; color: #35573e; border: 0; font-size: 11px; }
.legal-print .icon { width: 16px; height: 16px; }
/* Gallery dialog: native modal, keyboard navigable */
.gallery-dialog { width: min(1000px, calc(100vw - 48px)); max-width: none; padding: 0; background: #081f1b; border: 1px solid var(--gold-line); color: var(--ink); max-height: calc(100dvh - 40px); box-shadow: 0 30px 120px #0008; }
.gallery-dialog::backdrop { background: rgba(2,12,8,.89); backdrop-filter: blur(8px); }
.dialog-top { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; border-bottom: 1px solid var(--line); }
.dialog-top h2 { font-family: var(--serif); font-size: 21px; font-weight: 400; margin: 0; }
.dialog-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; height: min(70dvh,700px); background: #06130f; }
.dialog-image-wrap img { max-height: 100%; max-width: 100%; object-fit: contain; }
.dialog-prev, .dialog-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(8,30,27,.9); }
.dialog-prev { left: 16px; }
.dialog-next { right: 16px; }
.dialog-bottom { padding: 17px 22px; display: flex; justify-content: space-between; gap: 20px; }
.dialog-caption { margin: 0; color: #d5ddca; font-size: 12px; }
.dialog-count { color: var(--gold); font-size: 11px; white-space: nowrap; }
.toast { position: fixed; bottom: 25px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 100; border: 1px solid var(--gold-line); padding: 13px 22px; background: #eac381; color: #173522; font-size: 12px; max-width: calc(100% - 40px); width: max-content; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.not-found { min-height: 65vh; text-align: center; display: flex; align-items: center; justify-content: center; padding: 80px 0; }
.not-found .eyebrow { justify-content: center; }
.not-found .page-lead { margin: 0 auto 28px; }
.not-found > .container > .icon { width: 70px; height: 70px; color: var(--gold); margin: 0 auto 30px; }
@media(min-width: 1650px) { .hero, .hero-inner { min-height: 825px; } .hero-scene { width: 74%; object-position: 54% 30%; } }
@media(max-width: 1199px) {
 .container { width: calc(100% - 72px); }
 .site-nav { gap: 21px; }
 .header-cta { margin-left: 0; }
 .hero, .hero-inner { min-height: 705px; }
 .hero-copy { max-width: 69%; }
 .hero-heading { font-size: 76px; }
 .hero-game-badge { right: 0; bottom: 127px; padding: 12px; }
 .hero-game-badge img { width: 45px; height: 45px; }
 .badge-title { font-size: 15px; }
 .badge-caption { font-size: 8px; }
 .game-layout { gap: 50px; }
 .game-visual { transform: scale(.92); transform-origin: center; }
 .gallery-grid { gap: 15px; }
 .gallery-card { height: 338px; }
 .gallery-caption { left: 20px; right: 18px; }
 .gallery-caption strong { font-size: 20px; }
 .contact-layout, .faq-layout { gap: 48px; }
 .legal-layout { gap: 30px; grid-template-columns: 215px minmax(0,1fr); }
 .legal-paper { padding: 35px; }
 .footer-grid { gap: 28px; grid-template-columns: 1.2fr .65fr 1fr 1.1fr; }
}
@media(max-width: 959px) {
 :root { --header-height: 82px; }
 .container { width: calc(100% - 56px); }
 .brand-name { font-size: 15px; }
 .brand-name span { font-size: 12px; }
 .site-nav { gap: 17px; }
 .nav-link { font-size: 11px; }
 .header-cta { display: none; }
 .hero, .hero-inner { min-height: 690px; }
 .hero-copy { max-width: 80%; width: 650px; }
 .hero-heading { font-size: 72px; }
 .hero::before { background: linear-gradient(90deg,#081e1b 0,rgba(8,30,27,.92) 25%,rgba(8,30,27,.5) 70%,rgba(8,30,27,.18)); }
 .hero-scene { width: 100%; object-position: 65% 26%; }
 .hero-game-badge { bottom: 112px; }
 .hero-game-badge .badge-caption { max-width: 125px; }
 .hero-facts { gap: 15px; font-size: 8px; letter-spacing: 1px; }
 .strategy-item { padding-inline: 20px; gap: 12px; }
 .strategy-item > .icon { width: 28px; height: 28px; }
 .strategy-item h2 { font-size: 17px; }
 .strategy-item p { font-size: 10px; }
 .game-section { padding-top: 73px; padding-bottom: 63px; }
 .game-layout { gap: 20px; grid-template-columns: 1fr .9fr; }
 .game-visual { transform: scale(.8); margin-left: -15px; }
 .game-intro .section-heading { font-size: 42px; }
 .feature-tab { gap: 9px; padding: 18px 13px; grid-template-columns: 24px 1fr 18px; }
 .tab-title { font-size: 13px; }
 .gallery-section { padding-bottom: 73px; }
 .gallery-card { height: 315px; }
 .gallery-caption { left: 16px; right: 14px; bottom: 18px; }
 .gallery-caption strong { font-size: 19px; }
 .gallery-caption > span { font-size: 7px; }
 .contact-callout { gap: 35px; padding: 36px; margin-bottom: 65px; }
 .contact-callout .section-heading { font-size: 31px; }
 .callout-art { margin-right: 10px; }
 .callout-art img { width: 145px; border-radius: 25px; }
 .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 70px; }
 .footer-brand-col { grid-row: span 1; }
 .contact-layout { gap: 35px; grid-template-columns: 1fr 1.12fr; }
 .form-card { padding: 24px; }
 .form-row { grid-template-columns: 1fr; gap: 0; }
 .detail-value { font-size: 16px; }
 .contact-detail { gap: 13px; }
 .faq-layout { grid-template-columns: 1fr 1.12fr; gap: 35px; }
 .legal-layout { gap: 24px; grid-template-columns: 183px minmax(0,1fr); }
 .legal-paper { padding: 28px; }
 .legal-toc a { font-size: 10px; gap: 8px; }
}
@media(max-width: 699px) {
 :root { --header-height: 76px; }
 html { scroll-padding-top: 24px; }
 .container { width: calc(100% - 40px); }
 .site-header { height: auto; min-height: var(--header-height); }
 .header-inner { min-height: var(--header-height); flex-wrap: wrap; gap: 0; }
 .brand-emblem { width: 35px; height: 40px; }
 .brand-emblem .icon { width: 25px; height: 25px; }
 .brand { gap: 10px; }
 .brand-name { font-size: 14px; letter-spacing: 2px; }
 .brand-name span { font-size: 11px; letter-spacing: 4.4px; margin-top: 5px; }
 .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--gold-line); background: none; margin-left: auto; color: var(--gold); }
 .menu-toggle .close-icon { display: none; }
 .menu-toggle[aria-expanded='true'] .menu-icon { display: none; }
 .menu-toggle[aria-expanded='true'] .close-icon { display: block; }
 .site-nav { display: none; flex: 0 0 100%; margin: 0; padding: 10px 0 21px; flex-direction: column; align-items: stretch; gap: 0; }
 .site-nav.is-open { display: flex; }
 .nav-link { padding: 13px 7px; font-size: 13px; border-bottom: 1px solid var(--line); }
 .nav-link::after { display: none; }
 .hero, .hero-inner { min-height: 850px; }
 .hero-inner { justify-content: flex-start; padding-top: 55px; padding-bottom: 260px; }
 .hero-copy { max-width: none; width: 100%; }
 .hero .eyebrow { font-size: 8px; letter-spacing: 1.8px; gap: 9px; margin-bottom: 25px; }
 .hero .eyebrow::before { width: 21px; }
 .hero-heading { font-size: clamp(46px, 11.7vw, 75px); line-height: 1.08; letter-spacing: -2px; }
 .hero-description { margin-top: 24px; margin-bottom: 27px; max-width: 310px; font-size: 13px; line-height: 1.9; }
 .hero-actions { gap: 19px; }
 .hero-actions .button { min-height: 49px; padding: 12px 19px; font-size: 11px; gap: 12px; }
 .watch-button { gap: 9px; font-size: 11px; }
 .play-circle { width: 32px; height: 32px; }
 .hero-scene { width: 100%; height: 66%; top: auto; bottom: 0; object-position: 60% 30%; filter: saturate(.85) brightness(.9); -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%); mask-image: linear-gradient(180deg, transparent, #000 22%); }
 .hero::before { background: linear-gradient(180deg,#081e1b 2%,#081e1b 23%,rgba(8,30,27,.92) 34%,rgba(8,30,27,.45) 50%,rgba(8,30,27,0) 69%); }
 .hero::after { background: linear-gradient(0deg,#081e1b 0,rgba(8,30,27,.75) 9%,transparent 24%); }
 .hero-game-badge { bottom: 99px; left: 0; right: auto; gap: 12px; padding: 11px 18px 11px 11px; }
 .hero-game-badge img { width: 44px; height: 44px; }
 .badge-title { font-size: 16px; }
 .hero-game-badge .badge-caption { max-width: none; font-size: 7px; }
 .hero-foot { bottom: 30px; }
 .hero-facts { gap: 17px; font-size: 7px; letter-spacing: .9px; flex-wrap: wrap; }
 .hero-facts .icon { width: 15px; height: 15px; }
 .scroll-cue { font-size: 0; gap: 0; }
 .scroll-cue .icon { width: 15px; }
 .strategy-strip { grid-template-columns: 1fr; padding: 10px 0; }
 .strategy-item, .strategy-item:first-child, .strategy-item:last-child { padding: 20px 9px; justify-content: flex-start; gap: 20px; border-right: 0; border-bottom: 1px solid var(--line); }
 .strategy-item:last-child { border-bottom: 0; }
 .strategy-item > .icon { width: 30px; height: 30px; }
 .strategy-item h2 { font-size: 21px; }
 .strategy-item p { font-size: 11px; }
 .game-section { padding-top: 55px; padding-bottom: 28px; }
 .game-layout { grid-template-columns: 1fr; gap: 10px; }
 .game-intro { padding: 0; }
 .game-intro .section-heading { font-size: 44px; }
 .section-heading { letter-spacing: -1.4px; }
 .eyebrow { font-size: 8px; letter-spacing: 2.1px; margin-bottom: 18px; }
 .game-intro .section-copy { font-size: 13px; margin-bottom: 22px; }
 .feature-tabs { max-width: none; }
 .feature-tab { padding: 20px 15px; grid-template-columns: 27px 1fr 18px; gap: 13px; }
 .tab-title { font-size: 14px; }
 .tab-description { font-size: 12px; max-width: none; }
 .game-intro > .text-link { margin-top: 15px; }
 .game-visual { min-height: 575px; margin: 0; transform: scale(.85); }
 .screen-back { right: 6px; }
 .phone-frame { margin-left: -38px; }
 .visual-label { left: 1px; bottom: 19px; }
 .visual-side-label { right: -3px; font-size: 8px; }
 .gallery-section { padding: 0 0 54px; }
 .section-head-row { align-items: start; flex-direction: column; gap: 20px; margin-bottom: 25px; }
 .section-head-row .section-heading { font-size: 38px; }
 .gallery-hint { font-size: 10px; }
 .gallery-grid { grid-template-columns: 1fr 1fr; gap: 13px; }
 .gallery-card:first-child { grid-column: 1 / -1; height: 300px; }
 .gallery-card { height: 310px; }
 .gallery-caption { left: 15px; bottom: 17px; }
 .gallery-caption > span { font-size: 7px; letter-spacing: 1.2px; }
 .gallery-caption strong { font-size: 20px; }
 .gallery-card:first-child .gallery-caption strong { font-size: 27px; max-width: none; }
 .gallery-card:first-child > img { object-position: 50% 43%; }
 .gallery-expand { top: 12px; right: 12px; }
 .contact-callout { display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 31px; padding: 32px 25px; margin-bottom: 57px; }
 .contact-callout .section-heading { font-size: 32px; line-height: 1.2; }
 .contact-callout .eyebrow { font-size: 8px; }
 .callout-art { margin: 10px 0 4px 7px; }
 .callout-art img { width: 94px; border-radius: 19px; }
 .callout-art::before { inset: -17px; }
 .site-footer { padding-top: 40px; }
 .footer-grid { gap: 30px 17px; grid-template-columns: 1fr 1fr; padding-bottom: 30px; }
 .footer-brand-col { grid-column: 1 / -1; }
 .footer-brand-note { max-width: none; font-size: 14px; margin-top: 15px; }
 .footer-contact { grid-column: 1 / -1; padding-top: 3px; }
 .footer-title { margin-bottom: 13px; font-size: 8px; }
 .footer-links li { margin-bottom: 6px; }
 .footer-links a { font-size: 12px; }
 .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding: 21px 0; font-size: 9px; }
 .footer-bottom-right { width: 100%; justify-content: space-between; gap: 12px; }
 .page-intro { padding-top: 31px; padding-bottom: 35px; }
 .breadcrumb { font-size: 10px; margin-bottom: 31px; }
 .page-title { font-size: 49px; letter-spacing: -1.8px; }
 .page-lead { font-size: 13px; }
 .contact-layout { grid-template-columns: 1fr; gap: 39px; padding-bottom: 56px; }
 .contact-details { padding-top: 0; }
 .contact-detail { padding-block: 23px; gap: 18px; }
 .detail-value { font-size: 18px; }
 .contact-art { height: 162px; }
 .form-card { padding: 26px 22px; }
 .form-row { grid-template-columns: 1fr; gap: 0; }
 .field { margin-bottom: 19px; }
 .field input, .field select, .field textarea { font-size: 16px; min-height: 48px; }
 .field label { font-size: 12px; }
 .faq-layout { grid-template-columns: 1fr; gap: 12px; padding-top: 36px; }
 .faq-layout .section-heading { font-size: 37px; }
 .faq-section { padding-bottom: 61px; }
 .legal-intro { padding-bottom: 31px; }
 .legal-meta { font-size: 10px; gap: 10px; }
 .legal-layout { grid-template-columns: 1fr; gap: 26px; padding-bottom: 53px; }
 .legal-sidebar { position: static; }
 .legal-toc { padding-top: 20px; }
 .legal-toc ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0 6px; }
 .legal-toc a { font-size: 11px; padding: 9px 5px; }
 .legal-toc h2 { font-size: 8px; margin-bottom: 12px; }
 .legal-help { display: none; }
 .legal-paper { padding: 26px 20px 20px; }
 .legal-summary { padding: 19px; margin-bottom: 28px; }
 .legal-summary p { font-size: 12px; }
 .legal-section h2 { font-size: 23px; gap: 10px; }
 .legal-section p, .legal-section li, .legal-section address { font-size: 14px; }
 .legal-section { padding-bottom: 18px; margin-bottom: 24px; scroll-margin-top: 20px; }
 .legal-bottom { flex-wrap: wrap; gap: 15px; }
 .gallery-dialog { width: calc(100vw - 24px); max-height: calc(100dvh - 24px); }
 .dialog-image-wrap { height: 68dvh; }
 .dialog-top { padding: 10px 13px; }
 .dialog-top h2 { font-size: 18px; }
 .dialog-prev { left: 7px; }
 .dialog-next { right: 7px; }
 .dialog-bottom { padding: 13px; gap: 10px; }
 .dialog-caption { font-size: 11px; }
}
@media(max-width: 374px) {
 .container { width: calc(100% - 32px); }
 .hero-heading { font-size: 43px; letter-spacing: -1.9px; }
 .hero .eyebrow { font-size: 7px; letter-spacing: 1.3px; }
 .hero-actions { gap: 12px; }
 .hero-actions .button { padding-inline: 14px; font-size: 10px; }
 .watch-button { font-size: 10px; gap: 7px; }
 .hero-facts { font-size: 6px; gap: 12px; }
 .game-visual { transform: scale(.76); margin-inline: -19px; min-height: 540px; }
 .gallery-card { height: 285px; }
 .page-title { font-size: 42px; }
 .detail-value { font-size: 16px; }
 .legal-toc a { font-size: 10px; }
}
@media(prefers-reduced-motion: reduce) {
 html { scroll-behavior: auto; }
 *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
 .embers { display: none; }
}
@media print {
 :root { color-scheme: light; }
 body { background: white; color: black; font-size: 11pt; }
 .site-header, .site-footer, .legal-sidebar, .legal-bottom, .breadcrumb, .toast, .skip-link, .gallery-dialog { display: none !important; }
 .container { width: 100%; }
 .interior-main { background: white; }
 .page-intro { padding: 0 0 20px; }
 .page-title { color: #132d22; font-size: 30pt; }
 .page-lead, .legal-meta { color: #333; }
 .eyebrow { color: #35513e; }
 .meta-badge { color: #333; border-color: #888; }
 .legal-layout { display: block; padding: 0; }
 .legal-paper { border: 0; padding: 0; background: white; }
 .legal-summary { background: #f5f5ef; }
 .legal-section { break-inside: auto; }
 .legal-section h2 { break-after: avoid; }
 .legal-section p { widows: 3; orphans: 3; }
}
/* Progressive enhancement: reading and image links remain available without JS. */
.no-js .contact-form { display: none; }
.no-js .feature-tab .tab-description { display: block; }
.no-js [data-print] { display: none; }
@media(max-width: 699px) {
 .no-js .menu-toggle { display: none; }
 .no-js .site-nav { display: flex; }
}
