:root {
	--color-bg: #f6f1e7;
	--color-surface: #fffaf1;
	--color-surface-strong: #181916;
	--color-text: #20211e;
	--color-muted: #696b63;
	--color-brand: #ff5b35;
	--color-brand-dark: #bc3218;
	--color-accent: #f4cb42;
	--color-green: #245e4b;
	--color-blue: #2e5e8e;
	--color-border: rgba(32, 33, 30, 0.16);
	--color-light-border: rgba(255, 255, 255, 0.22);
	--font-main: "Noto Sans TC", sans-serif;
	--container-width: 1240px;
	--header-height: 82px;
	--section-space: 136px;
	--transition-fast: 220ms ease;
	--transition-main: 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { margin: 0; overflow-x: hidden; background: var(--color-bg); color: var(--color-text); font-family: var(--font-main); line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.is-menu-open { overflow: hidden; }

img { display: block; width: 100%; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

p { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.15; }

/* header */
header { position: fixed; z-index: 100; top: 0; left: 0; display: flex; align-items: center; width: 100%; height: var(--header-height); border-bottom: 1px solid transparent; color: #ffffff; transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), height var(--transition-fast); }
header.is-scrolled { height: 68px; border-color: var(--color-border); background: rgba(246, 241, 231, 0.94); color: var(--color-text); backdrop-filter: blur(12px); }
header .header-inner { display: flex; align-items: center; justify-content: space-between; width: min(calc(100% - 72px), var(--container-width)); margin: 0 auto; }
header .brand-logo { display: inline-flex; align-items: center; gap: 13px; }
header .brand-mark { position: relative; display: grid; width: 38px; height: 38px; place-items: center; background: url(../images/logo-bafengte-mark.webp) no-repeat 50% / cover; }
header h1 { font-size: 1.1rem; font-weight: 900; letter-spacing: 0.16em; }
header .header-nav { display: flex; align-items: center; gap: 34px; }
header .header-nav a { position: relative; padding: 8px 0; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.08em; }
header .header-nav a::after { position: absolute; right: 0; bottom: 2px; width: 0; height: 2px; background: var(--color-brand); content: ""; transition: width var(--transition-fast); }
header .header-nav a:hover::after, header .header-nav a:focus-visible::after { right: auto; left: 0; width: 100%; }
header .header-entry { display: inline-flex; align-items: center; gap: 10px; padding: 11px 17px; border: 1px solid currentColor; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; transition: background-color var(--transition-fast), color var(--transition-fast); }
header .header-entry::after { content: "↗"; }
header .header-entry:hover, header .header-entry:focus-visible { background: currentColor; color: var(--color-brand); }
header.is-scrolled .header-entry:hover, header.is-scrolled .header-entry:focus-visible { background: var(--color-text); color: #ffffff; }
header .menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid currentColor; }
header .menu-toggle span { position: relative; width: 18px; height: 2px; background: currentColor; transition: background-color var(--transition-fast); }
header .menu-toggle span::before, header .menu-toggle span::after { position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; content: ""; transition: transform var(--transition-fast), top var(--transition-fast); }
header .menu-toggle span::before { top: -6px; }
header .menu-toggle span::after { top: 6px; }
header .menu-toggle.is-active span { background: transparent; }
header .menu-toggle.is-active span::before { top: 0; transform: rotate(45deg); }
header .menu-toggle.is-active span::after { top: 0; transform: rotate(-45deg); }

main { display: block; }

/* hero */
#hero-section { position: relative; min-height: 790px; overflow: hidden; background: #181916; color: #ffffff; }
#hero-section .hero-background { position: absolute; inset: 0; background-image: linear-gradient( 90deg, rgba(13, 15, 12, 0.92) 0%, rgba(13, 15, 12, 0.58) 42%, rgba(13, 15, 12, 0.12) 78% ), linear-gradient(0deg, rgba(13, 15, 12, 0.7) 0%, transparent 38%), url(../images/hero-adventure-world.webp); background-position: center; background-size: cover; transform: scale(1.045); transition: transform 1.6s cubic-bezier(0.16, 0.74, 0.27, 1); }
#hero-section.is-visible .hero-background { transform: scale(1); }
#hero-section .hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.55fr); align-items: end; width: min(calc(100% - 72px), var(--container-width)); min-height: 790px; margin: 0 auto; padding: 170px 0 72px; }
#hero-section .hero-content { max-width: 790px; }
#hero-section .hero-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; color: var(--color-accent); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em; transform: translateY(18px); opacity: 0; transition: opacity var(--transition-main), transform var(--transition-main); }
#hero-section .hero-kicker::before { width: 58px; height: 2px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: left; transition: transform 700ms 180ms ease; }
#hero-section.is-visible .hero-kicker { transform: translateY(0); opacity: 1; }
#hero-section.is-visible .hero-kicker::before { transform: scaleX(1); }
#hero-section .hero-title { max-width: 750px; overflow: hidden; font-size: clamp(3.8rem, 7.7vw, 7.7rem); font-weight: 900; letter-spacing: -0.06em; line-height: 0.96; text-wrap: balance; }
#hero-section .hero-title span { display: block; transform: translateY(112%); transition: transform 900ms cubic-bezier(0.18, 0.8, 0.24, 1); }
#hero-section .hero-title span:nth-child(2) { color: var(--color-accent); transition-delay: 120ms; }
#hero-section.is-visible .hero-title span { transform: translateY(0); }
#hero-section .hero-summary { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 36px; max-width: 680px; margin-top: 38px; transform: translateY(20px); opacity: 0; transition: opacity var(--transition-main) 300ms, transform var(--transition-main) 300ms; }
#hero-section.is-visible .hero-summary { transform: translateY(0); opacity: 1; }
#hero-section .hero-summary p { max-width: 470px; color: rgba(255, 255, 255, 0.76); font-size: 1rem; }
#hero-section .hero-action { display: inline-flex; align-items: center; gap: 16px; min-width: max-content; padding-bottom: 7px; border-bottom: 2px solid var(--color-accent); color: var(--color-accent); font-size: 0.92rem; font-weight: 800; }
#hero-section .hero-action::after { content: "→"; transition: transform var(--transition-fast); }
#hero-section .hero-action:hover::after, #hero-section .hero-action:focus-visible::after { transform: translateX(7px); }
#hero-section .hero-side { justify-self: end; width: 100%; max-width: 252px; border-top: 1px solid var(--color-light-border); }
#hero-section .hero-side-item { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--color-light-border); }
#hero-section .hero-side-number { color: var(--color-accent); font-size: 0.78rem; font-weight: 800; }
#hero-section .hero-side-text { color: rgba(255, 255, 255, 0.78); font-size: 0.86rem; line-height: 1.55; }
#hero-section .hero-scroll { position: absolute; right: 30px; bottom: 32px; z-index: 3; display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.64); font-size: 0.7rem; letter-spacing: 0.18em; writing-mode: vertical-rl; }
#hero-section .hero-scroll::after { width: 1px; height: 52px; background: rgba(255, 255, 255, 0.48); content: ""; transform-origin: top; transition: transform 900ms ease; }

/* game */
#game-lineup { padding: var(--section-space) 0; }
#game-lineup .lineup-inner { width: min(calc(100% - 72px), var(--container-width)); margin: 0 auto; }
#game-lineup .lineup-header { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 70px; align-items: end; margin-bottom: 72px; }
#game-lineup .lineup-label { color: var(--color-brand-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.2em; }
#game-lineup .lineup-heading { max-width: 720px; font-size: clamp(2.5rem, 4.5vw, 4.7rem); font-weight: 900; letter-spacing: -0.055em; }
#game-lineup .lineup-heading em { color: var(--color-brand); font-style: normal; }
#game-lineup .lineup-list { border-top: 1px solid var(--color-border); }
#game-lineup .lineup-item { position: relative; display: grid; grid-template-columns: 74px minmax(260px, 0.72fr) minmax(320px, 1.28fr); gap: 34px; align-items: center; min-height: 270px; padding: 34px 0; border-bottom: 1px solid var(--color-border); }
#game-lineup .lineup-index { align-self: start; padding-top: 8px; color: var(--color-muted); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; }
#game-lineup .lineup-content { position: relative; z-index: 2; padding-right: 20px; }
#game-lineup .lineup-content h3 { margin-bottom: 16px; font-size: clamp(1.85rem, 3.1vw, 3.2rem); font-weight: 900; letter-spacing: -0.045em; transition: color var(--transition-fast), transform var(--transition-fast); }
#game-lineup .lineup-content p { max-width: 410px; color: var(--color-muted); font-size: 0.92rem; }
#game-lineup .lineup-meta { display: flex; flex-wrap: wrap; gap: 8px 17px; margin-top: 22px; color: var(--color-brand-dark); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; }
#game-lineup .lineup-media { position: relative; height: 205px; overflow: hidden; background: var(--color-surface-strong); clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%); }
#game-lineup .lineup-media img { height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(0.2, 0.72, 0.25, 1), filter 450ms ease; }
#game-lineup .lineup-item:nth-child(1) .lineup-media img { object-position: center 38%; }
#game-lineup .lineup-item:nth-child(2) .lineup-media img { object-position: center 55%; }
#game-lineup .lineup-item:nth-child(3) .lineup-media img { object-position: center 48%; }
#game-lineup .lineup-item:hover .lineup-media img { filter: saturate(1.12); transform: scale(1.055); }
#game-lineup .lineup-item:hover .lineup-content h3 { color: var(--color-brand-dark); transform: translateX(7px); }
#game-lineup .lineup-link { position: absolute; inset: 0; z-index: 3; font-size: 0; }

/* world */
#world-section { position: relative; overflow: hidden; background: var(--color-green); color: #ffffff; }
#world-section .world-inner { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr); min-height: 760px; }
#world-section .world-media { position: relative; margin: 0; min-height: 760px; overflow: hidden; }
#world-section .world-media::after { position: absolute; inset: 0; background: linear-gradient( 90deg, transparent 64%, var(--color-green) 100% ); content: ""; }
#world-section .world-media img { height: 100%; object-fit: cover; object-position: 53% center; transform: scale(1.08); transition: transform 1.2s cubic-bezier(0.16, 0.73, 0.26, 1); }
#world-section.is-visible .world-media img { transform: scale(1); }
#world-section .world-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; max-width: 550px; padding: 100px 72px 100px 30px; }
#world-section .world-label { margin-bottom: 20px; color: var(--color-accent); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em; }
#world-section .world-heading { font-size: clamp(2.8rem, 4.8vw, 5.1rem); font-weight: 900; letter-spacing: -0.06em; }
#world-section .world-text { max-width: 480px; margin-top: 32px; color: rgba(255, 255, 255, 0.72); }
#world-section .world-quote { position: relative; margin-top: 54px; padding: 23px 0 23px 32px; border-top: 1px solid rgba(255, 255, 255, 0.22); border-bottom: 1px solid rgba(255, 255, 255, 0.22); font-size: 1.1rem; font-weight: 700; line-height: 1.65; }
#world-section .world-quote::before { position: absolute; top: 27px; left: 0; color: var(--color-accent); content: "✦"; }
#world-section .world-stamp { position: absolute; right: 26px; bottom: 28px; display: grid; width: 118px; height: 118px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.46); border-radius: 50%; color: rgba(255, 255, 255, 0.72); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-align: center; transform: rotate(8deg); }

/* play */
#play-modes { padding: var(--section-space) 0; background: var(--color-surface); }
#play-modes .modes-inner { width: min(calc(100% - 72px), var(--container-width)); margin: 0 auto; }
#play-modes .modes-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 58px; }
#play-modes .modes-heading { max-width: 700px; font-size: clamp(2.5rem, 4.5vw, 4.8rem); font-weight: 900; letter-spacing: -0.06em; }
#play-modes .modes-summary { max-width: 370px; color: var(--color-muted); font-size: 0.92rem; }
#play-modes .modes-list { border-top: 2px solid var(--color-text); }
#play-modes .modes-item { display: grid; grid-template-columns: 170px minmax(240px, 0.7fr) minmax(320px, 1fr) 48px; gap: 28px; align-items: center; padding: 29px 0; border-bottom: 1px solid var(--color-border); transition: padding var(--transition-fast), background-color var(--transition-fast); }
#play-modes .modes-item:hover { padding-right: 14px; padding-left: 14px; background: #eee5d6; }
#play-modes .modes-type { color: var(--color-brand-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; }
#play-modes .modes-item h3 { font-size: 1.35rem; font-weight: 800; }
#play-modes .modes-item p { color: var(--color-muted); font-size: 0.88rem; }
#play-modes .modes-icon { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--color-border); border-radius: 50%; font-size: 1rem; transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast); }
#play-modes .modes-item:hover .modes-icon { background: var(--color-brand); color: #ffffff; transform: rotate(-18deg); }

/* art */
#art-section { position: relative; padding: 126px 0 146px; overflow: hidden; background: var(--color-blue); color: #ffffff; }
#art-section .art-inner { width: min(calc(100% - 72px), var(--container-width)); margin: 0 auto; }
#art-section .art-header { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: start; margin-bottom: 68px; }
#art-section .art-label { color: var(--color-accent); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.2em; }
#art-section .art-heading { max-width: 740px; font-size: clamp(2.7rem, 5.2vw, 5.4rem); font-weight: 900; letter-spacing: -0.06em; }
#art-section .art-collage { position: relative; min-height: 650px; }
#art-section .art-figure { position: absolute; overflow: hidden; margin: 0; }
#art-section .art-figure img { height: 100%; object-fit: cover; transition: transform 850ms cubic-bezier(0.2, 0.73, 0.24, 1); }
#art-section .art-figure:hover img { transform: scale(1.055); }
#art-section .art-figure-primary { top: 0; left: 0; width: 58%; height: 510px; }
#art-section .art-figure-primary img { object-position: center 48%; }
#art-section .art-figure-secondary { top: 86px; right: 0; width: 37%; height: 290px; }
#art-section .art-figure-secondary img { object-position: center 42%; }
#art-section .art-figure-tertiary { right: 9%; bottom: 0; width: 31%; height: 220px; border: 12px solid var(--color-blue); }
#art-section .art-figure-tertiary img { object-position: center 55%; }
#art-section .art-caption { position: absolute; bottom: 0; left: 0; max-width: 405px; padding: 28px 34px 14px 0; background: var(--color-blue); color: rgba(255, 255, 255, 0.76); font-size: 0.88rem; }
#art-section .art-caption strong { display: block; margin-bottom: 8px; color: #ffffff; font-size: 1.15rem; }

/* latest */
#latest-section { padding: var(--section-space) 0; }
#latest-section .latest-inner { width: min(calc(100% - 72px), var(--container-width)); margin: 0 auto; }
#latest-section .latest-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
#latest-section .latest-heading { font-size: clamp(2.5rem, 4.3vw, 4.5rem); font-weight: 900; letter-spacing: -0.055em; }
#latest-section .latest-all { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 6px; border-bottom: 1px solid var(--color-text); font-size: 0.84rem; font-weight: 800; }
#latest-section .latest-all::after { content: "↗"; }
#latest-section .latest-grid { display: grid; grid-template-columns: 1.35fr 0.65fr; grid-template-rows: repeat(2, minmax(225px, auto)); gap: 22px; }
#latest-section .latest-item { position: relative; overflow: hidden; background: #ddd2c1; }
#latest-section .latest-item:first-child { grid-row: 1 / 3; min-height: 570px; }
#latest-section .latest-item img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(0.18, 0.76, 0.24, 1); }
#latest-section .latest-item:first-child img { object-position: center 45%; }
#latest-section .latest-item:nth-child(2) img { object-position: center 55%; }
#latest-section .latest-item:nth-child(3) img { object-position: center 42%; }
#latest-section .latest-item::after { position: absolute; inset: 0; background: linear-gradient( 0deg, rgba(15, 16, 14, 0.88), rgba(15, 16, 14, 0.02) 72% ); content: ""; }
#latest-section .latest-item:hover img { transform: scale(1.055); }
#latest-section .latest-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 30px; color: #ffffff; }
#latest-section .latest-meta { margin-bottom: 10px; color: var(--color-accent); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; }
#latest-section .latest-content h3 { max-width: 560px; font-size: 1.45rem; font-weight: 800; line-height: 1.4; }
#latest-section .latest-item:first-child .latest-content { padding: 42px; }
#latest-section .latest-item:first-child .latest-content h3 { font-size: clamp(1.8rem, 3vw, 3rem); }
#latest-section .latest-link { position: absolute; inset: 0; z-index: 3; font-size: 0; }

/* join */
#join-section { position: relative; min-height: 560px; overflow: hidden; background: #161713; color: #ffffff; }
#join-section .join-background { position: absolute; inset: 0; background-image: linear-gradient( 90deg, rgba(19, 20, 17, 0.96) 0%, rgba(19, 20, 17, 0.65) 48%, rgba(19, 20, 17, 0.15) 100% ), url(../images/join-next-adventure.webp); background-position: center; background-size: cover; }
#join-section .join-inner { position: relative; z-index: 2; display: flex; min-height: 560px; align-items: center; width: min(calc(100% - 72px), var(--container-width)); margin: 0 auto; }
#join-section .join-content { max-width: 820px; padding: 90px 0; }
#join-section .join-label { margin-bottom: 20px; color: var(--color-accent); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.2em; }
#join-section .join-heading { max-width: 800px; font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 900; letter-spacing: -0.065em; }
#join-section .join-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }
#join-section .join-primary { display: inline-flex; align-items: center; gap: 30px; padding: 17px 22px; background: var(--color-accent); color: var(--color-text); font-size: 0.88rem; font-weight: 900; transition: background-color var(--transition-fast), transform var(--transition-fast); }
#join-section .join-primary::after { content: "→"; }
#join-section .join-primary:hover, #join-section .join-primary:focus-visible { background: #ffffff; transform: translateY(-3px); }
#join-section .join-secondary { display: inline-flex; align-items: center; padding: 16px 22px; border: 1px solid rgba(255, 255, 255, 0.5); font-size: 0.86rem; font-weight: 700; transition: background-color var(--transition-fast), color var(--transition-fast); }
#join-section .join-secondary:hover, #join-section .join-secondary:focus-visible { background: #ffffff; color: var(--color-text); }

/* footer */
footer { padding: 66px 0 34px; background: #11120f; color: rgba(255, 255, 255, 0.7); }
footer .footer-inner { width: min(calc(100% - 72px), var(--container-width)); margin: 0 auto; }
footer .footer-main { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 80px; padding-bottom: 54px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
footer .footer-brand { max-width: 530px; }
footer .footer-logo { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; color: #ffffff; font-size: 1.25rem; font-weight: 900; letter-spacing: 0.15em; }
footer .footer-logo::before { display: inline-grid; width: 38px; height: 38px; place-items: center; background: url(../images/logo-bafengte-mark.webp) no-repeat 50% / cover; content: ""; }
footer .footer-description { max-width: 460px; font-size: 0.88rem; }
footer .footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 36px; align-content: start; }
footer .footer-nav a { padding-bottom: 11px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); color: #ffffff; font-size: 0.84rem; transition: color var(--transition-fast), padding-left var(--transition-fast); }
footer .footer-nav a:hover, footer .footer-nav a:focus-visible { padding-left: 7px; color: var(--color-accent); }
footer .footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; font-size: 0.72rem; letter-spacing: 0.04em; }

.reveal-section { opacity: 0; transform: translateY(34px); transition: opacity var(--transition-main), transform var(--transition-main); }
.reveal-section.is-visible { opacity: 1; transform: translateY(0); }

a:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 4px; }

@media (max-width: 1280px) {
	:root { --container-width: 1100px; --section-space: 116px; }
	header .header-inner { width: min(calc(100% - 48px), var(--container-width)); }
	#hero-section .hero-inner { width: min(calc(100% - 48px), var(--container-width)); }
	#game-lineup .lineup-inner { width: min(calc(100% - 48px), var(--container-width)); }
	#game-lineup .lineup-item { grid-template-columns: 54px minmax(250px, 0.76fr) minmax(300px, 1.24fr); gap: 26px; }
	#world-section .world-content { padding-right: 48px; }
	#play-modes .modes-inner { width: min(calc(100% - 48px), var(--container-width)); }
	#art-section .art-inner { width: min(calc(100% - 48px), var(--container-width)); }
	#latest-section .latest-inner { width: min(calc(100% - 48px), var(--container-width)); }
	#join-section .join-inner { width: min(calc(100% - 48px), var(--container-width)); }
	footer .footer-inner { width: min(calc(100% - 48px), var(--container-width)); }
}
@media (max-width: 960px) {
	:root { --header-height: 72px; --section-space: 98px; }
	header .header-nav { position: fixed; top: 0; right: 0; display: flex; width: min(420px, 86vw); height: 100vh; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 88px 44px 44px; background: var(--color-surface); color: var(--color-text); transform: translateX(105%); transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1); }
	header .header-nav.is-active { transform: translateX(0); }
	header .header-nav a { padding: 18px 0; border-bottom: 1px solid var(--color-border); font-size: 1.05rem; }
	header .header-entry { display: none; }
	header .menu-toggle { position: relative; z-index: 2; display: inline-flex; }
	header .menu-toggle.is-active { color: var(--color-text); }
	#hero-section { min-height: 760px; }
	#hero-section .hero-inner { grid-template-columns: 1fr; min-height: 760px; padding-top: 150px; }
	#hero-section .hero-content { align-self: end; padding-bottom: 34px; }
	#hero-section .hero-side { display: grid; grid-template-columns: repeat(3, 1fr); align-self: end; justify-self: stretch; max-width: none; border-top: 1px solid var(--color-light-border); }
	#hero-section .hero-side-item { grid-template-columns: 32px 1fr; padding-right: 18px; border-right: 1px solid var(--color-light-border); border-bottom: 0; }
	#hero-section .hero-side-item:last-child { border-right: 0; }
	#hero-section .hero-scroll { display: none; }
	#game-lineup .lineup-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 54px; }
	#game-lineup .lineup-item { grid-template-columns: 48px minmax(0, 0.86fr) minmax(280px, 1.14fr); }
	#world-section .world-inner { grid-template-columns: 1fr; }
	#world-section .world-media { min-height: 510px; }
	#world-section .world-media::after { background: linear-gradient( 0deg, var(--color-green) 0%, transparent 38% ); }
	#world-section .world-content { max-width: none; margin-top: -120px; padding: 170px 48px 90px; }
	#world-section .world-stamp { bottom: 36px; }
	#play-modes .modes-header { align-items: start; flex-direction: column; gap: 24px; }
	#play-modes .modes-item { grid-template-columns: 120px minmax(190px, 0.7fr) minmax( 260px, 1fr ) 42px; gap: 20px; }
	#art-section .art-header { grid-template-columns: 1fr; gap: 22px; }
	#art-section .art-collage { min-height: 600px; }
	#art-section .art-figure-primary { width: 64%; height: 455px; }
	#art-section .art-figure-secondary { width: 41%; }
	#art-section .art-figure-tertiary { right: 4%; width: 38%; }
	#latest-section .latest-grid { grid-template-columns: 1.15fr 0.85fr; }
	#latest-section .latest-item:first-child { min-height: 520px; }
}
@media (max-width: 768px) {
	:root { --section-space: 82px; }
	header .header-inner { width: calc(100% - 34px); }
	#hero-section { min-height: 720px; }
	#hero-section .hero-background { background-image: linear-gradient( 0deg, rgba(13, 15, 12, 0.96) 0%, rgba(13, 15, 12, 0.32) 76% ), url(../images/hero-adventure-world.webp); background-position: 58% center; }
	#hero-section .hero-inner { width: calc(100% - 34px); min-height: 720px; padding: 130px 0 30px; }
	#hero-section .hero-title { font-size: clamp(3.35rem, 14vw, 6.2rem); }
	#hero-section .hero-summary { grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
	#hero-section .hero-side { display: none; }
	#game-lineup .lineup-inner { width: calc(100% - 34px); }
	#game-lineup .lineup-item { grid-template-columns: 38px 1fr; gap: 18px; padding: 28px 0 34px; }
	#game-lineup .lineup-index { grid-row: 1 / 3; }
	#game-lineup .lineup-content { padding-right: 0; }
	#game-lineup .lineup-media { grid-column: 2; height: 230px; margin-top: 8px; clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%); }
	#world-section .world-media { min-height: 430px; }
	#world-section .world-content { margin-top: -92px; padding: 140px 24px 78px; }
	#world-section .world-stamp { position: static; width: 94px; height: 94px; margin-top: 36px; }
	#play-modes .modes-inner { width: calc(100% - 34px); }
	#play-modes .modes-item { grid-template-columns: 92px 1fr 42px; gap: 16px; padding: 25px 0; }
	#play-modes .modes-item p { grid-column: 2 / 4; }
	#play-modes .modes-icon { grid-column: 3; grid-row: 1; }
	#art-section { padding: 88px 0 104px; }
	#art-section .art-inner { width: calc(100% - 34px); }
	#art-section .art-collage { display: grid; grid-template-columns: 1.2fr 0.8fr; grid-template-rows: 290px 190px; gap: 12px; min-height: auto; }
	#art-section .art-figure { position: relative; inset: auto; width: auto; height: auto; border: 0; }
	#art-section .art-figure-primary { grid-row: 1 / 3; }
	#art-section .art-caption { position: relative; max-width: none; padding: 26px 0 0; }
	#latest-section .latest-inner { width: calc(100% - 34px); }
	#latest-section .latest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 240px; }
	#latest-section .latest-item:first-child { grid-column: 1 / 3; grid-row: auto; min-height: 420px; }
	#latest-section .latest-content { padding: 22px; }
	#latest-section .latest-item:first-child .latest-content { padding: 30px; }
	#join-section .join-inner { width: calc(100% - 34px); }
	#join-section .join-heading { font-size: clamp(3rem, 12vw, 5.5rem); }
	footer .footer-inner { width: calc(100% - 34px); }
	footer .footer-main { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 500px) {
	:root { --header-height: 66px; --section-space: 68px; }
	header .brand-mark { width: 34px; height: 34px; }
	header h1 { font-size: 0.94rem; letter-spacing: 0.11em; }
	header .menu-toggle { width: 40px; height: 40px; }
	header .header-nav { width: 100%; padding-right: 28px; padding-left: 28px; }
	#hero-section { min-height: 680px; }
	#hero-section .hero-inner { min-height: 680px; padding-top: 114px; }
	#hero-section .hero-kicker { margin-bottom: 17px; font-size: 0.68rem; }
	#hero-section .hero-kicker::before { width: 34px; }
	#hero-section .hero-title { font-size: clamp(3rem, 16vw, 4.7rem); line-height: 1; }
	#hero-section .hero-summary p { font-size: 0.9rem; }
	#game-lineup .lineup-header { margin-bottom: 38px; }
	#game-lineup .lineup-heading { font-size: 2.45rem; }
	#game-lineup .lineup-item { grid-template-columns: 30px 1fr; gap: 12px; }
	#game-lineup .lineup-content h3 { font-size: 1.8rem; }
	#game-lineup .lineup-media { height: 190px; }
	#world-section .world-media { min-height: 350px; }
	#world-section .world-content { margin-top: -74px; padding-top: 116px; }
	#world-section .world-heading { font-size: 2.7rem; }
	#world-section .world-quote { padding-left: 27px; font-size: 1rem; }
	#play-modes .modes-heading { font-size: 2.45rem; }
	#play-modes .modes-item { grid-template-columns: 1fr 42px; }
	#play-modes .modes-type { grid-column: 1; }
	#play-modes .modes-item h3 { grid-column: 1 / 3; font-size: 1.22rem; }
	#play-modes .modes-item p { grid-column: 1 / 3; }
	#play-modes .modes-icon { grid-column: 2; grid-row: 1; }
	#art-section .art-heading { font-size: 2.7rem; }
	#art-section .art-collage { grid-template-columns: 1fr 0.68fr; grid-template-rows: 235px 145px; gap: 8px; }
	#latest-section .latest-header { align-items: start; flex-direction: column; gap: 20px; }
	#latest-section .latest-heading { font-size: 2.5rem; }
	#latest-section .latest-grid { display: flex; flex-direction: column; }
	#latest-section .latest-item, #latest-section .latest-item:first-child { min-height: 300px; }
	#latest-section .latest-item:first-child { min-height: 390px; }
	#latest-section .latest-item:first-child .latest-content h3 { font-size: 1.65rem; }
	#join-section { min-height: 520px; }
	#join-section .join-background { background-image: linear-gradient( 0deg, rgba(19, 20, 17, 0.96) 0%, rgba(19, 20, 17, 0.38) 100% ), url(../images/join-next-adventure.webp); background-position: 62% center; }
	#join-section .join-inner { min-height: 520px; }
	#join-section .join-heading { font-size: 3.15rem; }
	#join-section .join-actions { align-items: stretch; flex-direction: column; }
	#join-section .join-primary, #join-section .join-secondary { justify-content: space-between; width: 100%; }
	footer { padding-top: 52px; }
	footer .footer-nav { grid-template-columns: 1fr; }
	footer .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
	#hero-section .hero-background, #world-section .world-media img, .reveal-section { transform: none; }
}