:root {
  --night: #0b1d2b;
  --night-raised: #102838;
  --night-soft: #173747;
  --copper: #c87943;
  --copper-bright: #e29a62;
  --teal: #0f5d66;
  --teal-bright: #7dc8c5;
  --paper: #f7f0e4;
  --parchment: #eadcc7;
  --white: #fffdf8;
  --ink: #152936;
  --ink-secondary: #485b63;
  --ink-tertiary: #6d7779;
  --line: rgba(21, 41, 54, .16);
  --line-dark: rgba(255, 253, 248, .17);
  --focus: #f1b27d;
  --shadow: 0 18px 50px rgba(11, 29, 43, .12);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; border-radius: 2px; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 16px; color: var(--night); background: var(--white); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--night);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 42px; overflow: visible; }
.brand-mark > path:first-child { fill: var(--copper); stroke: none; }
.brand-mark circle { fill: var(--paper); stroke: none; }
.brand-mark path:last-child { fill: none; stroke: var(--paper); stroke-width: 1.8; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-size: 20px; letter-spacing: -.04em; }
.brand small { margin-top: 5px; color: var(--teal-bright); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.main-nav a { position: relative; color: #dce6e7; font-size: 14px; font-weight: 600; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--copper-bright); transform: scaleX(0); transform-origin: right; transition: transform .24s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta { padding: 10px 0 10px 28px; border-left: 1px solid var(--line-dark); color: var(--white); font-size: 13px; font-weight: 700; }
.header-cta span { margin-left: 8px; color: var(--copper-bright); }

.hero { position: relative; min-height: 690px; display: flex; align-items: stretch; overflow: hidden; color: var(--white); background: var(--night); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 20, 31, .98) 0%, rgba(6, 20, 31, .9) 31%, rgba(6, 20, 31, .3) 65%, rgba(6, 20, 31, .05) 100%), linear-gradient(0deg, rgba(6, 20, 31, .72), transparent 42%); }
.hero-media { position: absolute; z-index: 2; top: 0; left: calc(50% - 590px); width: 1px; height: 100%; background: rgba(255,255,255,.16); }
.hero-media::after { content: ""; position: absolute; top: 100px; left: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--copper-bright); box-shadow: 0 136px 0 var(--teal-bright); }
.hero-content { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: flex-end; padding-top: 112px; padding-bottom: 126px; }
.hero-copy { width: min(700px, 67%); }
.kicker { margin: 0 0 20px; display: flex; align-items: center; gap: 11px; color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.kicker span { width: 27px; height: 2px; background: currentColor; }
.kicker-light { color: var(--teal-bright); }
.hero h1, .legal-hero h1 { max-width: 720px; margin: 0; font-size: clamp(55px, 6.8vw, 94px); line-height: .94; letter-spacing: -.065em; }
.hero h1 em, .legal-hero h1 em, .closing-note h2 em { color: var(--copper-bright); font-family: Georgia, serif; font-weight: 500; }
.hero-lead { max-width: 620px; margin: 28px 0 34px; color: #d7e0e1; font-size: 18px; line-height: 1.65; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-width: 240px; padding: 14px 20px; border: 1px solid transparent; font-size: 13px; font-weight: 700; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-copper { color: var(--night); background: var(--copper-bright); }
.button-copper:hover { background: var(--paper); }
.hero-note { width: 245px; margin-bottom: 7px; display: flex; gap: 18px; padding: 20px; border-top: 1px solid var(--copper-bright); border-bottom: 1px solid var(--line-dark); background: rgba(9, 29, 42, .72); backdrop-filter: blur(8px); }
.note-number { color: var(--copper-bright); font-family: Georgia, serif; font-size: 24px; font-style: italic; }
.hero-note p { margin: 0; line-height: 1.45; }
.note-label { margin-bottom: 5px !important; color: var(--teal-bright); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-ticker { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; min-height: 60px; display: flex; align-items: center; border-top: 1px solid var(--line-dark); background: rgba(11,29,43,.88); }
.ticker-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #dce5e6; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.ticker-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--copper-bright); }

.section { padding: 112px 0; }
.section-paper { background: var(--paper); }
.section-beige { background: var(--parchment); }
.section-navy { color: var(--white); background: var(--night); }
.section-teal { color: var(--white); background: var(--teal); }
.section-head { margin-bottom: 50px; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.section-head > div { flex: 1; }
.section-head .kicker { margin-bottom: 12px; }
.section-head h2, .guide-intro h2, .safety-title h2 { margin: 0; font-size: clamp(38px, 5vw, 66px); line-height: 1; letter-spacing: -.055em; }
.section-head > p { width: min(430px, 42%); margin: 0 0 3px; color: var(--ink-secondary); }
.section-head.light > p { color: #b9c9cc; }

.news-grid { display: grid; grid-template-columns: 1.35fr 1fr .84fr; gap: 24px; align-items: stretch; }
.shield-cut { clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px)); }
.lead-card { position: relative; min-height: 446px; display: flex; flex-direction: column; padding: 36px; overflow: hidden; color: var(--white); background: var(--night-raised); }
.lead-card::before { content: ""; position: absolute; right: -78px; bottom: -105px; width: 270px; height: 300px; border: 1px solid rgba(125,200,197,.22); transform: rotate(30deg); }
.lead-card::after { content: ""; position: absolute; right: 22px; bottom: 58px; width: 140px; height: 2px; background: var(--copper); transform: rotate(-30deg); }
.card-topline, .mini-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.category { color: var(--copper-bright); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.category.teal { color: var(--teal); }
.card-topline time, .mini-meta time { color: #91a3a8; font-size: 11px; }
.lead-card h3 { max-width: 390px; margin: 70px 0 18px; font-size: 36px; line-height: 1.06; letter-spacing: -.045em; }
.lead-card > p { max-width: 410px; margin: 0; color: #c3d0d2; }
.text-link { z-index: 2; margin-top: auto; color: var(--copper-bright); font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.text-link span { margin-left: 8px; }
.card-index { position: absolute; right: 28px; bottom: 20px; color: rgba(255,255,255,.17); font-size: 12px; }
.news-stack { display: grid; gap: 24px; }
.mini-card { position: relative; display: flex; flex-direction: column; min-height: 211px; padding: 25px 27px; border: 1px solid var(--line); background: var(--white); transition: transform .22s, box-shadow .22s, border-color .22s; }
.mini-card:hover { transform: translateY(-3px); border-color: rgba(15,93,102,.4); box-shadow: var(--shadow); }
.mini-card h3 { max-width: 360px; margin: 22px 32px 8px 0; font-size: 21px; line-height: 1.16; letter-spacing: -.03em; }
.mini-card p { margin: 0; color: var(--ink-secondary); font-size: 13px; line-height: 1.5; }
.mini-card > a { position: absolute; right: 26px; bottom: 23px; color: var(--copper); font-size: 22px; }
.dispatch { padding: 28px 28px 20px; border-top: 4px solid var(--copper); background: #e8dac4; }
.dispatch-label { margin: 0 0 30px; color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.dispatch ol { margin: 0; padding: 0; list-style: none; }
.dispatch li { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding: 19px 0; border-top: 1px solid var(--line); }
.dispatch li span { color: var(--copper); font-family: Georgia, serif; font-size: 16px; font-style: italic; }
.dispatch li p { margin: 0; font-size: 13px; line-height: 1.55; }

.profiles { position: relative; overflow: hidden; }
.profiles::before { content: ""; position: absolute; top: 0; right: 6%; width: 1px; height: 100%; background: var(--line-dark); }
.profile-layout { display: grid; grid-template-columns: 1.14fr .86fr; gap: 54px; align-items: center; }
.profile-photo { position: relative; height: 540px; margin: 0; overflow: hidden; background: var(--night-raised); }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,25,36,.9), transparent 42%); }
.profile-photo figcaption { position: absolute; z-index: 2; right: 36px; bottom: 30px; left: 36px; display: flex; flex-direction: column; }
.profile-photo figcaption span { color: var(--teal-bright); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.profile-photo figcaption strong { margin-top: 4px; font-size: 22px; }
.profile-stories { display: flex; flex-direction: column; gap: 20px; }
.quote-card { display: grid; grid-template-columns: 58px 1fr; gap: 23px; padding: 30px; border: 1px solid var(--line-dark); background: var(--night-raised); }
.avatar-badge { width: 58px; height: 64px; display: grid; place-items: center; color: var(--night); background: var(--teal-bright); clip-path: polygon(50% 0,100% 14%,100% 64%,50% 100%,0 64%,0 14%); font-size: 13px; font-weight: 800; }
.avatar-badge.copper { background: var(--copper-bright); }
.quote-mark { height: 26px; margin: -13px 0 0; color: var(--copper-bright); font-family: Georgia, serif; font-size: 58px; line-height: 1; }
.quote-card blockquote { margin: 0; color: #f0eee7; font-family: Georgia, serif; font-size: 23px; font-style: italic; line-height: 1.35; }
.quote-card.compact blockquote { font-size: 19px; }
.quote-by { margin: 17px 0 0; color: #93a8ac; font-size: 11px; }
.quote-by strong { color: var(--teal-bright); }
.button-outline { align-self: flex-start; color: var(--white); border-color: rgba(255,255,255,.32); }
.button-outline:hover { color: var(--night); background: var(--paper); border-color: var(--paper); }

.guide-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: 100px; align-items: start; }
.guide-intro { position: sticky; top: 40px; }
.guide-intro > p:not(.kicker) { max-width: 430px; margin: 26px 0; color: var(--ink-secondary); font-size: 17px; }
.guide-stamp { display: flex; align-items: center; gap: 15px; margin-top: 42px; color: var(--teal); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.guide-stamp svg { width: 52px; height: 56px; }
.guide-stamp svg path:first-child { fill: none; stroke: var(--teal); stroke-width: 2; }
.guide-stamp svg path:last-child { fill: none; stroke: var(--copper); stroke-width: 4; }
.guide-stamp span { display: flex; flex-direction: column; }
.guide-stamp strong { color: var(--ink); }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(21,41,54,.32); }
.steps li { display: grid; grid-template-columns: 64px 1fr; gap: 26px; padding: 32px 0; border-bottom: 1px solid rgba(21,41,54,.25); }
.step-no { color: var(--copper); font-family: Georgia, serif; font-size: 25px; font-style: italic; }
.steps h3 { margin: 0 0 7px; font-size: 22px; letter-spacing: -.025em; }
.steps p { margin: 0; color: var(--ink-secondary); }

.recommend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.game-card { min-height: 440px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); transition: transform .22s, box-shadow .22s; }
.game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.game-teal { background: #d8e6df; }
.game-copper { background: #e8cfb5; }
.game-navy { color: var(--white); background: var(--night-raised); }
.game-symbol { position: relative; width: 80px; height: 68px; margin-bottom: 38px; }
.game-symbol span { position: absolute; width: 27px; height: 32px; clip-path: polygon(50% 0,100% 18%,100% 66%,50% 100%,0 66%,0 18%); background: var(--teal); }
.game-symbol span:nth-child(2) { left: 26px; top: 25px; background: var(--copper); }
.game-symbol span:nth-child(3) { left: 53px; top: 3px; background: var(--night); }
.game-symbol.rings span { border-radius: 50%; clip-path: none; background: transparent; border: 4px solid var(--copper); }
.game-symbol.rings span:nth-child(2) { border-color: var(--teal); }
.game-symbol.rings span:nth-child(3) { border-color: var(--night); }
.game-symbol.route::before, .game-symbol.route::after { content: ""; position: absolute; z-index: 0; height: 2px; background: var(--teal-bright); transform: rotate(25deg); }
.game-symbol.route::before { top: 26px; left: 15px; width: 42px; }
.game-symbol.route::after { top: 39px; left: 38px; width: 35px; transform: rotate(-34deg); }
.game-symbol.route span { z-index: 1; width: 22px; height: 25px; background: var(--paper); }
.game-symbol.route span:nth-child(2) { left: 30px; top: 28px; background: var(--copper-bright); }
.game-symbol.route span:nth-child(3) { left: 61px; top: 12px; background: var(--teal-bright); }
.game-type { margin: 0 0 13px; color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.game-navy .game-type { color: var(--teal-bright); }
.game-card h3 { margin: 0 0 14px; font-size: 25px; line-height: 1.12; letter-spacing: -.035em; }
.game-card > p:not(.game-type) { margin: 0; color: var(--ink-secondary); font-size: 14px; }
.game-navy > p:not(.game-type) { color: #bdcbd0; }
.game-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: auto 0 20px; padding: 0; list-style: none; }
.game-card li { padding: 5px 9px; border: 1px solid rgba(21,41,54,.22); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.game-navy li { border-color: var(--line-dark); }
.game-card > a { padding-top: 16px; border-top: 1px solid rgba(21,41,54,.18); font-size: 12px; font-weight: 700; }
.game-card > a span { float: right; }
.game-navy > a { border-color: var(--line-dark); color: var(--copper-bright); }

.safety { position: relative; overflow: hidden; }
.safety::before { content: ""; position: absolute; top: -160px; right: -130px; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.14); transform: rotate(30deg); }
.safety-layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.safety-title > p:last-child { max-width: 420px; margin: 28px 0 0; color: #d6e9e8; }
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.28); border-left: 1px solid rgba(255,255,255,.28); }
.safety-grid article { min-height: 215px; padding: 26px; border-right: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
.safety-grid article > span { color: var(--copper-bright); font-family: Georgia, serif; font-size: 21px; font-style: italic; }
.safety-grid h3 { margin: 24px 0 8px; font-size: 17px; }
.safety-grid p { margin: 0; color: #cbe0df; font-size: 13px; line-height: 1.55; }
.safety-callout { grid-column: 1 / -1; display: grid; grid-template-columns: 220px 1fr; gap: 35px; margin-top: 18px; padding: 22px 28px; color: var(--ink); background: var(--copper-bright); }
.safety-callout strong { font-size: 18px; }
.safety-callout p { margin: 0; }

.events-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.event-photo { position: relative; min-height: 500px; margin: 0; overflow: hidden; }
.event-photo img { width: 100%; height: 100%; object-fit: cover; }
.event-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,24,35,.96), transparent 58%); }
.event-photo figcaption { position: absolute; z-index: 2; right: 34px; bottom: 32px; left: 34px; display: grid; }
.event-photo figcaption span { color: var(--teal-bright); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.event-photo figcaption strong { max-width: 450px; margin: 7px 0 16px; font-size: 25px; line-height: 1.2; }
.event-photo figcaption a { color: var(--copper-bright); font-size: 12px; font-weight: 700; }
.event-list { border-top: 1px solid var(--line-dark); }
.event-list article { display: grid; grid-template-columns: 75px 1fr 30px; gap: 22px; align-items: center; min-height: 162px; border-bottom: 1px solid var(--line-dark); transition: background .2s, padding .2s; }
.event-list article:hover { padding-inline: 12px; background: rgba(255,255,255,.035); }
.event-list time { display: flex; flex-direction: column; align-items: center; padding-right: 20px; border-right: 1px solid var(--line-dark); line-height: 1; }
.event-list time strong { color: var(--copper-bright); font-family: Georgia, serif; font-size: 40px; font-style: italic; }
.event-list time span { margin-top: 5px; color: #91a4a9; font-size: 9px; letter-spacing: .12em; }
.event-list h3 { margin: 5px 0; font-size: 18px; line-height: 1.25; }
.event-list p { margin: 0; color: #91a4a9; font-size: 11px; }
.event-list .category { color: var(--teal-bright); }
.event-list article > a { color: var(--copper-bright); font-size: 21px; }

.closing-note { padding: 88px 0; background: var(--parchment); }
.closing-inner { display: grid; grid-template-columns: 120px 1fr auto; gap: 50px; align-items: center; }
.closing-emblem { position: relative; width: 104px; height: 110px; border: 2px solid var(--teal); clip-path: polygon(50% 0,100% 15%,100% 64%,50% 100%,0 64%,0 15%); }
.closing-emblem span { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--copper); }
.closing-emblem span:nth-child(1) { top: 25px; left: 23px; }
.closing-emblem span:nth-child(2) { top: 42px; right: 20px; }
.closing-emblem span:nth-child(3) { bottom: 22px; left: 42px; }
.closing-emblem::before, .closing-emblem::after { content: ""; position: absolute; height: 2px; background: var(--teal); transform-origin: left; }
.closing-emblem::before { top: 32px; left: 34px; width: 42px; transform: rotate(22deg); }
.closing-emblem::after { top: 38px; left: 29px; width: 48px; transform: rotate(62deg); }
.closing-inner .kicker { margin-bottom: 12px; }
.closing-note h2 { margin: 0; font-size: clamp(30px, 4vw, 50px); line-height: 1.08; letter-spacing: -.045em; }
.closing-note h2 em { color: var(--teal); }
.button-navy { color: var(--white); background: var(--night); }
.button-navy:hover { background: var(--teal); }

.site-footer { color: var(--white); background: #07151f; }
.footer-main { min-height: 220px; display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 60px; align-items: center; }
.footer-brand { align-self: center; }
.footer-main > p { color: #91a4a9; font-size: 13px; }
.footer-main nav { display: flex; justify-content: flex-end; gap: 24px; font-size: 12px; font-weight: 600; }
.footer-main a:hover, .footer-bottom a:hover { color: var(--copper-bright); }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid var(--line-dark); color: #7d9197; font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; }

/* Jogi oldalak */
.legal-page { background: var(--paper); }
.legal-hero { padding: 90px 0 80px; color: var(--white); background: var(--night); }
.legal-hero h1 { font-size: clamp(50px, 7vw, 82px); }
.legal-hero > .shell > p:last-child { margin: 28px 0 0; color: #9eb0b4; font-size: 12px; }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 760px); gap: 100px; align-items: start; padding-top: 80px; padding-bottom: 110px; }
.legal-aside { position: sticky; top: 30px; display: flex; flex-direction: column; padding: 26px; border-top: 4px solid var(--copper); background: var(--parchment); }
.legal-aside p { margin: 0 0 16px; color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.legal-aside strong { font-size: 15px; line-height: 1.55; }
.legal-aside a { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--teal); font-size: 12px; font-weight: 700; }
.legal-content section { padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { margin-bottom: 0; }
.legal-content h2 { margin: 0 0 16px; font-size: 25px; letter-spacing: -.035em; }
.legal-content p { margin: 0 0 14px; color: var(--ink-secondary); }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { padding-left: 20px; color: var(--ink-secondary); }
.legal-content li { margin: 7px 0; padding-left: 7px; }

@media (max-width: 1020px) {
  .main-nav { gap: 20px; }
  .header-cta { display: none; }
  .hero-content { align-items: end; }
  .hero-copy { width: 73%; }
  .hero-note { width: 220px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .dispatch { grid-column: 1 / -1; }
  .dispatch ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .profile-layout { gap: 32px; }
  .guide-layout { gap: 56px; }
  .safety-layout { grid-template-columns: 1fr; gap: 45px; }
  .closing-inner { grid-template-columns: 100px 1fr; }
  .closing-inner .button { grid-column: 2; justify-self: start; }
  .legal-layout { grid-template-columns: 240px 1fr; gap: 56px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 620px); }
  .header-inner { min-height: 76px; gap: 12px; }
  .brand-mark { width: 34px; }
  .brand strong { font-size: 18px; }
  .main-nav { gap: 13px; }
  .main-nav a { font-size: 11px; }
  .main-nav { display: none; }
  .hero { min-height: 720px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,20,31,.97), rgba(6,20,31,.64)), linear-gradient(0deg, rgba(6,20,31,.92), transparent 60%); }
  .hero-content { display: block; padding-top: 88px; padding-bottom: 108px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-lead { font-size: 16px; }
  .hero-note { display: none; }
  .ticker-inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .ticker-inner span:nth-of-type(n+3), .ticker-inner i:nth-of-type(n+2) { display: none; }
  .section { padding: 78px 0; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head > p { width: 100%; margin-top: 20px; }
  .news-grid, .profile-layout, .guide-layout, .recommend-grid, .events-layout { grid-template-columns: 1fr; }
  .lead-card { min-height: 410px; }
  .dispatch ol { grid-template-columns: 1fr; gap: 0; }
  .profile-photo { height: 420px; }
  .guide-layout { gap: 50px; }
  .guide-intro { position: static; }
  .game-card { min-height: 390px; }
  .safety-grid { grid-template-columns: 1fr; }
  .safety-callout { grid-template-columns: 1fr; gap: 8px; }
  .events-layout { gap: 40px; }
  .event-photo { min-height: 430px; }
  .closing-inner { grid-template-columns: 1fr; gap: 28px; }
  .closing-emblem { width: 82px; height: 88px; }
  .closing-inner .button { grid-column: 1; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; padding: 52px 0; }
  .footer-main nav { justify-content: flex-start; }
  .footer-bottom { padding: 22px 0; align-items: flex-start; flex-direction: column; }
  .legal-layout { grid-template-columns: 1fr; gap: 46px; padding-top: 52px; }
  .legal-aside { position: static; }
}

@media (max-width: 480px) {
  .brand small { display: none; }
  .hero { min-height: 660px; }
  .hero h1 { font-size: 49px; }
  .button { min-width: 0; width: 100%; }
  .lead-card { padding: 28px; }
  .lead-card h3 { margin-top: 48px; font-size: 31px; }
  .profile-photo figcaption { right: 24px; bottom: 24px; left: 24px; }
  .quote-card { grid-template-columns: 1fr; }
  .quote-card blockquote { font-size: 21px; }
  .steps li { grid-template-columns: 45px 1fr; gap: 12px; }
  .event-list article { grid-template-columns: 64px 1fr 20px; gap: 13px; }
  .event-list h3 { font-size: 16px; }
  .footer-main nav { flex-wrap: wrap; }
  .footer-bottom div { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
