:root {
	--color-bg: #171713;
	--color-bg-soft: #22221d;
	--color-surface: #2a2922;
	--color-surface-light: #e9e0ce;
	--color-paper: #f4eddf;
	--color-text: #f4eddf;
	--color-text-dark: #24231e;
	--color-muted: #b8b09e;
	--color-muted-dark: #6f695c;
	--color-brand: #aa3f2c;
	--color-brand-dark: #733023;
	--color-accent: #c9a65c;
	--color-moss: #687253;
	--color-border: rgba(244, 237, 223, 0.18);
	--color-border-dark: rgba(36, 35, 30, 0.2);
	--font-main: "Noto Sans TC", sans-serif;
	--container-wide: 1480px;
	--container-main: 1240px;
	--container-text: 820px;
	--header-height: 86px;
	--radius-small: 4px;
	--radius-medium: 14px;
	--shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.3);
	--section-space: clamp(92px, 10vw, 164px);
	--ease-main: cubic-bezier(0.22, 0.61, 0.36, 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); font-size: 16px; line-height: 1.75; -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; }

figure { margin: 0; }

p { margin: 0; }

h1, h2, h3 { margin: 0; font-weight: 800; line-height: 1.18; letter-spacing: -0.03em; }

main { position: relative; }
main > section { position: relative; }

.site-container { width: min(calc(100% - 64px), var(--container-main)); margin: 0 auto; }
.site-container-wide { width: min(calc(100% - 64px), var(--container-wide)); margin: 0 auto; }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--color-accent); font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.eyebrow::before { width: 42px; height: 1px; background: currentColor; content: ""; }

.text-link { display: inline-flex; align-items: center; gap: 13px; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; transition: gap 0.35s var(--ease-main), color 0.35s ease; }
.text-link::after { content: "↗"; font-size: 15px; }
.text-link:hover { gap: 20px; color: var(--color-accent); }

.primary-link { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 28px; border: 1px solid var(--color-brand); background: var(--color-brand); color: #fff7e8; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-main); }
.primary-link:hover { border-color: var(--color-brand-dark); background: var(--color-brand-dark); transform: translateY(-2px); }

.secondary-link { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 28px; border: 1px solid rgba(255, 255, 255, 0.45); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; transition: background 0.3s ease, color 0.3s ease; }
.secondary-link:hover { background: var(--color-paper); color: var(--color-text-dark); }

.reveal-mask { overflow: hidden; }
.reveal-mask > span { display: block; transform: translateY(115%); transition: transform 0.85s var(--ease-main); }

.is-visible .reveal-mask > span { transform: translateY(0); }
.line-reveal { transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease-main); }
.is-visible .line-reveal { transform: scaleX(1); }
.media-reveal { overflow: hidden; }
.media-reveal img { transform: scale(1.08); transition: transform 1.25s var(--ease-main); }
.is-visible .media-reveal img { transform: scale(1); }

/* header */
header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: var(--header-height); border-bottom: 1px solid transparent; transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease; }
header.is-scrolled { height: 72px; border-color: rgba(244, 237, 223, 0.14); background: rgba(23, 23, 19, 0.92); backdrop-filter: blur(14px); }
header .header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: min(calc(100% - 64px), var(--container-wide)); height: 100%; margin: 0 auto; }
header .header-nav { justify-self: start; }
header .header-nav-list { display: flex; align-items: center; gap: 32px; }
header .header-nav-item a { position: relative; display: block; padding: 12px 0; color: rgba(255, 255, 255, 0.78); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; transition: color 0.3s ease; }
header .header-nav-item a::after { position: absolute; bottom: 5px; left: 0; width: 100%; height: 1px; background: var(--color-accent); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease-main); }
header .header-nav-item a:hover { color: #fff; }
header .header-nav-item a:hover::after { transform: scaleX(1); transform-origin: left; }
header .header-brand { justify-self: center; }
header .header-brand h1 { color: #fff7e8; font-size: 24px; font-weight: 900; letter-spacing: 0.18em; white-space: nowrap; }
header .header-brand h1 span { color: var(--color-accent); }
header .header-actions { display: flex; justify-self: end; align-items: center; gap: 18px; }
header .header-login { color: rgba(255, 255, 255, 0.78); font-size: 13px; font-weight: 600; }
header .header-start { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 20px; border: 1px solid rgba(255, 255, 255, 0.38); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; transition: background 0.3s ease, color 0.3s ease; }
header .header-start:hover { background: var(--color-paper); color: var(--color-text-dark); }
header .header-menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
header .header-menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px auto; background: #fff; transition: transform 0.3s ease, opacity 0.3s ease; }
header .header-menu-toggle.is-active span:first-child { transform: translateY(7px) rotate(45deg); }
header .header-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
header .header-menu-toggle.is-active span:last-child { transform: translateY(-7px) rotate(-45deg); }
header .header-mobile-panel { display: none; }

/* hero */
#hero-section { min-height: 900px; background: #191915; }
#hero-section .hero-backdrop { position: absolute; inset: 0; overflow: hidden; }
#hero-section .hero-backdrop::before { position: absolute; z-index: 1; inset: 0; background: linear-gradient( 90deg, rgba(11, 11, 9, 0.92) 0%, rgba(11, 11, 9, 0.58) 42%, rgba(11, 11, 9, 0.12) 72% ), linear-gradient(0deg, #171713 0%, transparent 27%); content: ""; }
#hero-section .hero-backdrop img { height: 100%; object-fit: cover; object-position: 57% center; animation: hero-image-in 1.8s var(--ease-main) both; }
#hero-section .hero-inner { position: relative; z-index: 2; display: flex; align-items: flex-end; min-height: 900px; padding-top: 160px; padding-bottom: 110px; }
#hero-section .hero-content { width: min(720px, 64%); }
#hero-section .hero-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; color: var(--color-accent); font-size: 13px; font-weight: 700; letter-spacing: 0.22em; opacity: 0; transform: translateY(18px); animation: hero-copy-in 0.8s 0.35s var(--ease-main) forwards; }
#hero-section .hero-kicker::before { width: 56px; height: 1px; background: var(--color-accent); content: ""; }
#hero-section .hero-title { max-width: 680px; color: #fff8eb; font-size: clamp(58px, 7vw, 108px); font-weight: 900; line-height: 0.98; letter-spacing: -0.065em; }
#hero-section .hero-title span { display: block; opacity: 0; transform: translateY(40px); animation: hero-copy-in 0.9s var(--ease-main) forwards; }
#hero-section .hero-title span:first-child { animation-delay: 0.48s; }
#hero-section .hero-title span:last-child { margin-top: 10px; color: var(--color-accent); opacity: .92; animation-delay: .58s; }
#hero-section .hero-description { max-width: 570px; margin-top: 34px; color: rgba(255, 255, 255, 0.74); font-size: 18px; line-height: 1.9; opacity: 0; transform: translateY(24px); animation: hero-copy-in 0.8s 0.76s var(--ease-main) forwards; }
#hero-section .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; opacity: 0; transform: translateY(24px); animation: hero-copy-in 0.8s 0.92s var(--ease-main) forwards; }
#hero-section .hero-status { position: absolute; right: 0; bottom: 108px; width: 340px; padding-left: 26px; border-left: 1px solid rgba(255, 255, 255, 0.35); opacity: 0; animation: hero-copy-in 0.8s 1.1s var(--ease-main) forwards; }
#hero-section .hero-status-label { display: block; margin-bottom: 10px; color: var(--color-accent); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; }
#hero-section .hero-status-title { color: #fff; font-size: 18px; font-weight: 700; }
#hero-section .hero-status-text { margin-top: 6px; color: rgba(255, 255, 255, 0.62); font-size: 14px; }
#hero-section .hero-scroll { position: absolute; z-index: 2; right: 32px; bottom: 105px; display: flex; align-items: center; gap: 14px; color: rgba(255, 255, 255, 0.56); font-size: 11px; letter-spacing: 0.18em; transform: rotate(90deg); transform-origin: right center; }
#hero-section .hero-scroll::after { width: 70px; height: 1px; background: rgba(255, 255, 255, 0.35); content: ""; }

/* world */
#world-section { padding: var(--section-space) 0 0; background: var(--color-bg); }
#world-section .world-header { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 8vw; align-items: end; }
#world-section .world-heading { max-width: 560px; margin-top: 22px; font-size: clamp(40px, 5vw, 72px); }
#world-section .world-intro { max-width: 570px; padding-bottom: 8px; color: var(--color-muted); font-size: 17px; }
#world-section .world-rule { height: 1px; margin: 70px 0 0; background: var(--color-border); }
#world-section .world-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--color-border); }
#world-section .world-item { position: relative; min-height: 470px; padding: 48px 42px 42px; overflow: hidden; border-right: 1px solid var(--color-border); }
#world-section .world-item:last-child { border-right: 0; }
#world-section .world-item::before { position: absolute; inset: 0; background: linear-gradient( 180deg, rgba(18, 18, 15, 0.12), rgba(18, 18, 15, 0.88) ); content: ""; opacity: 0.6; transition: opacity 0.45s ease; }
#world-section .world-item img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(0.72) contrast(1.06); transform: scale(1.03); transition: transform 0.8s var(--ease-main), filter 0.5s ease; }
#world-section .world-item:hover img { filter: saturate(0.95) contrast(1.04); transform: scale(1.09); }
#world-section .world-item:hover::before { opacity: 0.9; }
#world-section .world-item-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
#world-section .world-item-meta { display: flex; justify-content: space-between; align-items: center; color: rgba(255, 255, 255, 0.64); font-size: 12px; letter-spacing: 0.12em; }
#world-section .world-item-title { margin-top: 16px; color: #fff8ec; font-size: 31px; }
#world-section .world-item-text { max-height: 0; margin-top: 0; overflow: hidden; color: rgba(255, 255, 255, 0.7); font-size: 14px; opacity: 0; transition: max-height 0.5s var(--ease-main), margin 0.5s var(--ease-main), opacity 0.5s ease; }
#world-section .world-item:hover .world-item-text { max-height: 100px; margin-top: 15px; opacity: 1; }

/* path */
#path-section { padding: var(--section-space) 0; background: var(--color-paper); color: var(--color-text-dark); }
#path-section .path-layout { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: 8vw; align-items: start; }
#path-section .path-copy { position: sticky; top: 120px; padding-top: 22px; }
#path-section .path-copy .eyebrow { color: var(--color-brand); }
#path-section .path-heading { max-width: 520px; margin-top: 24px; font-size: clamp(42px, 5vw, 70px); }
#path-section .path-description { max-width: 500px; margin-top: 30px; color: var(--color-muted-dark); font-size: 17px; }
#path-section .path-note { display: grid; grid-template-columns: auto 1fr; gap: 18px; max-width: 480px; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--color-border-dark); }
#path-section .path-note-mark { color: var(--color-brand); font-size: 26px; line-height: 1; }
#path-section .path-note-text { color: var(--color-muted-dark); font-size: 14px; }
#path-section .path-gallery { display: grid; grid-template-columns: 1fr 0.72fr; gap: 22px; align-items: start; }
#path-section .path-figure { position: relative; overflow: hidden; background: #d6cbb7; }
#path-section .path-figure:first-child { grid-row: span 2; margin-top: 82px; }
#path-section .path-figure:nth-child(2) { aspect-ratio: 4 / 3; }
#path-section .path-figure:nth-child(3) { aspect-ratio: 4 / 5; }
#path-section .path-figure:first-child img { aspect-ratio: 4 / 6.5; object-fit: cover; object-position: center; }
#path-section .path-figure:nth-child(2) img { height: 100%; object-fit: cover; object-position: center 42%; }
#path-section .path-figure:nth-child(3) img { height: 100%; object-fit: cover; object-position: center; }
#path-section .path-figure-overlay { position: absolute; right: 0; bottom: 0; left: 0; padding: 30px 26px 23px; background: linear-gradient(0deg, rgba(20, 20, 17, 0.88), transparent); color: #fff; }
#path-section .path-figure-label { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; }
#path-section .path-figure-title { margin-top: 5px; font-size: 23px; }

/* guild */
#guild-section { min-height: 760px; overflow: hidden; }
#guild-section .guild-background { position: absolute; inset: 0; }
#guild-section .guild-background::after { position: absolute; inset: 0; background: linear-gradient( 90deg, rgba(22, 22, 18, 0.96) 0%, rgba(22, 22, 18, 0.85) 48%, rgba(22, 22, 18, 0.2) 100% ), linear-gradient(0deg, rgba(22, 22, 18, 0.85), transparent 40%); content: ""; }
#guild-section .guild-background img { height: 100%; object-fit: cover; object-position: center; }
#guild-section .guild-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 620px) 1fr; align-items: center; min-height: 760px; padding-top: 100px; padding-bottom: 100px; }
#guild-section .guild-content { padding: 58px 0; }
#guild-section .guild-heading { max-width: 600px; margin-top: 24px; color: #fff8eb; font-size: clamp(45px, 5.4vw, 78px); }
#guild-section .guild-description { max-width: 540px; margin-top: 30px; color: rgba(255, 255, 255, 0.7); font-size: 17px; }
#guild-section .guild-points { max-width: 570px; margin-top: 46px; border-top: 1px solid rgba(255, 255, 255, 0.22); }
#guild-section .guild-point { display: grid; grid-template-columns: 52px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.17); }
#guild-section .guild-point-index { color: var(--color-accent); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; }
#guild-section .guild-point-title { color: #fff; font-size: 17px; font-weight: 700; }
#guild-section .guild-point-text { color: rgba(255, 255, 255, 0.48); font-size: 13px; }
#guild-section .guild-emblem { position: absolute; right: 0; bottom: 85px; display: grid; place-items: center; width: 190px; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, 0.28); color: rgba(255, 255, 255, 0.72); transform: rotate(45deg); }
#guild-section .guild-emblem-inner { text-align: center; transform: rotate(-45deg); }
#guild-section .guild-emblem-symbol { display: block; color: var(--color-accent); font-size: 48px; line-height: 1; }
#guild-section .guild-emblem-text { display: block; margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; }

/* raid */
#raid-section { padding: var(--section-space) 0; background: var(--color-surface-light); color: var(--color-text-dark); }
#raid-section .raid-header { display: flex; justify-content: space-between; gap: 60px; align-items: flex-end; }
#raid-section .raid-header-copy { max-width: 720px; }
#raid-section .raid-header .eyebrow { color: var(--color-brand); }
#raid-section .raid-heading { margin-top: 22px; font-size: clamp(42px, 5vw, 70px); }
#raid-section .raid-header-text { max-width: 390px; padding-bottom: 7px; color: var(--color-muted-dark); }
#raid-section .raid-board { margin-top: 70px; border-top: 2px solid var(--color-text-dark); }
#raid-section .raid-item { display: grid; grid-template-columns: 94px minmax(180px, 0.75fr) minmax(300px, 1.5fr) auto; gap: 28px; align-items: center; min-height: 120px; border-bottom: 1px solid var(--color-border-dark); transition: background 0.3s ease, padding 0.3s var(--ease-main); }
#raid-section .raid-item:hover { padding-right: 20px; padding-left: 20px; background: rgba(255, 255, 255, 0.34); }
#raid-section .raid-level { color: var(--color-brand); font-size: 13px; font-weight: 800; letter-spacing: 0.1em; }
#raid-section .raid-title { font-size: 21px; font-weight: 800; }
#raid-section .raid-text { color: var(--color-muted-dark); font-size: 14px; }
#raid-section .raid-tag { min-width: 94px; padding: 7px 10px; border: 1px solid var(--color-border-dark); color: var(--color-muted-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-align: center; }

/* chronicle */
#chronicle-section { padding: var(--section-space) 0; overflow: hidden; background: #24241e; }
#chronicle-section .chronicle-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 8vw; align-items: center; }
#chronicle-section .chronicle-media { position: relative; }
#chronicle-section .chronicle-media-main { width: 86%; margin-left: auto; box-shadow: var(--shadow-deep); }
#chronicle-section .chronicle-media-main img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center; filter: sepia(0.12) saturate(0.78); }
#chronicle-section .chronicle-caption { position: absolute; bottom: 40px; left: 0; width: 280px; padding: 27px; background: var(--color-brand); color: #fff6e9; }
#chronicle-section .chronicle-caption-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; }
#chronicle-section .chronicle-caption-text { margin-top: 10px; font-size: 17px; font-weight: 600; line-height: 1.6; }
#chronicle-section .chronicle-content { max-width: 520px; }
#chronicle-section .chronicle-heading { margin-top: 24px; font-size: clamp(42px, 5vw, 68px); }
#chronicle-section .chronicle-quote { margin-top: 38px; padding-left: 28px; border-left: 2px solid var(--color-accent); color: #fff6e9; font-size: 23px; font-weight: 600; line-height: 1.65; }
#chronicle-section .chronicle-text { margin-top: 27px; color: var(--color-muted); }
#chronicle-section .chronicle-link { margin-top: 38px; }

/* join */
#join-section { padding: 0; background: var(--color-brand); color: #fff8eb; }
#join-section .join-inner { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; min-height: 360px; }
#join-section .join-copy { padding: 70px 0; }
#join-section .join-kicker { color: rgba(255, 255, 255, 0.66); font-size: 13px; font-weight: 700; letter-spacing: 0.18em; }
#join-section .join-heading { max-width: 850px; margin-top: 15px; font-size: clamp(40px, 5.2vw, 74px); }
#join-section .join-actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
#join-section .join-primary { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 0 30px; background: #fff8eb; color: var(--color-brand-dark); font-size: 14px; font-weight: 800; letter-spacing: 0.08em; transition: background 0.3s ease, transform 0.3s var(--ease-main); }
#join-section .join-primary:hover { background: var(--color-accent); transform: translateY(-2px); }
#join-section .join-secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 30px; border: 1px solid rgba(255, 255, 255, 0.48); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; transition: background 0.3s ease, color 0.3s ease; }
#join-section .join-secondary:hover { background: #fff8eb; color: var(--color-brand-dark); }

/* footer */
footer { padding: 72px 0 34px; background: #11110f; color: var(--color-muted); }
footer .footer-top { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 7vw; padding-bottom: 58px; }
footer .footer-brand-name { color: #fff7e8; font-size: 26px; font-weight: 900; letter-spacing: 0.15em; }
footer .footer-brand-name span { color: var(--color-accent); }
footer .footer-brand-text { max-width: 430px; margin-top: 18px; font-size: 14px; }
footer .footer-title { margin-bottom: 18px; color: rgba(255, 255, 255, 0.52); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; }
footer .footer-nav-list { display: grid; gap: 11px; }
footer .footer-nav-item a { color: rgba(255, 255, 255, 0.82); font-size: 14px; transition: color 0.3s ease; }
footer .footer-nav-item a:hover { color: var(--color-accent); }
footer .footer-news-title { color: #fff; font-size: 17px; font-weight: 700; }
footer .footer-news-text { margin-top: 9px; font-size: 13px; }
footer .footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.4); font-size: 12px; }
footer .footer-legal { display: flex; flex-wrap: wrap; gap: 22px; }
footer .footer-legal a { transition: color 0.3s ease; }
footer .footer-legal a:hover { color: #fff; }

@keyframes hero-image-in { from { transform: scale(1.1); filter: brightness(0.7); } to { transform: scale(1); filter: brightness(1); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1280px) {
	:root { --container-main: 1120px; --section-space: 120px; }
	#hero-section .hero-status { width: 290px; }
	#hero-section .hero-scroll { display: none; }
	#world-section .world-item { min-height: 430px; padding: 38px 30px; }
	#path-section .path-layout { gap: 6vw; }
	#guild-section .guild-emblem { right: 30px; width: 150px; }
	#raid-section .raid-item { grid-template-columns: 80px minmax(170px, 0.7fr) minmax( 260px, 1.3fr ) auto; }
}
@media (max-width: 960px) {
	:root { --header-height: 74px; --section-space: 100px; }
	.site-container, .site-container-wide { width: min(calc(100% - 44px), var(--container-main)); }
	header .header-inner { grid-template-columns: 1fr auto; width: calc(100% - 44px); }
	header .header-brand { justify-self: start; }
	header .header-nav, header .header-actions .header-login, header .header-actions .header-start { display: none; }
	header .header-actions { display: block; }
	header .header-menu-toggle { display: block; }
	header .header-mobile-panel { position: fixed; top: 74px; right: 0; bottom: 0; left: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: space-between; padding: 54px 24px 32px; background: rgba(20, 20, 17, 0.98); opacity: 0; transform: translateY(-12px); transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; }
	header .header-mobile-panel.is-active { visibility: visible; opacity: 1; transform: translateY(0); }
	header .header-mobile-nav-list { display: grid; gap: 4px; }
	header .header-mobile-nav-item a { display: block; padding: 15px 0; border-bottom: 1px solid var(--color-border); color: #fff; font-size: 23px; font-weight: 700; }
	header .header-mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
	header .header-mobile-actions a { display: flex; align-items: center; justify-content: center; min-height: 52px; border: 1px solid var(--color-border); font-size: 14px; font-weight: 700; }
	header .header-mobile-actions a:last-child { border-color: var(--color-brand); background: var(--color-brand); }
	#hero-section, #hero-section .hero-inner { min-height: 820px; }
	#hero-section .hero-content { width: min(650px, 80%); }
	#hero-section .hero-status { display: none; }
	#world-section .world-header { grid-template-columns: 1fr; gap: 30px; }
	#world-section .world-list { grid-template-columns: 1fr 1fr; }
	#world-section .world-item { min-height: 440px; }
	#world-section .world-item:nth-child(2) { border-right: 0; }
	#world-section .world-item:last-child { grid-column: 1 / -1; min-height: 380px; border-top: 1px solid var(--color-border); }
	#path-section .path-layout { grid-template-columns: 1fr; gap: 70px; }
	#path-section .path-copy { position: relative; top: auto; max-width: 700px; padding-top: 0; }
	#path-section .path-gallery { max-width: 760px; margin-left: auto; }
	#guild-section .guild-inner { grid-template-columns: 1fr; }
	#guild-section .guild-content { max-width: 630px; }
	#guild-section .guild-emblem { right: 40px; bottom: 50px; }
	#raid-section .raid-header { display: grid; grid-template-columns: 1fr; gap: 24px; }
	#raid-section .raid-item { grid-template-columns: 68px 1fr auto; gap: 20px; padding: 22px 0; }
	#raid-section .raid-text { grid-column: 2 / -1; }
	#chronicle-section .chronicle-layout { grid-template-columns: 1fr 1fr; gap: 6vw; }
	#chronicle-section .chronicle-media-main { width: 94%; }
	#join-section .join-inner { grid-template-columns: 1fr; gap: 0; padding-bottom: 70px; }
	#join-section .join-copy { padding-bottom: 36px; }
	#join-section .join-actions { flex-direction: row; min-width: 0; }
	#join-section .join-actions a { min-width: 210px; }
	footer .footer-top { grid-template-columns: 1.2fr 0.8fr; }
	footer .footer-news { grid-column: 1 / -1; padding-top: 12px; }
}
@media (max-width: 768px) {
	:root { --section-space: 84px; }
	.site-container, .site-container-wide { width: calc(100% - 36px); }
	header .header-inner { width: calc(100% - 36px); }
	header .header-brand h1 { font-size: 20px; }
	#hero-section, #hero-section .hero-inner { min-height: 760px; }
	#hero-section .hero-backdrop::before { background: linear-gradient( 0deg, rgba(12, 12, 10, 0.96) 0%, rgba(12, 12, 10, 0.66) 56%, rgba(12, 12, 10, 0.2) 100% ); }
	#hero-section .hero-backdrop img { object-position: 64% center; }
	#hero-section .hero-inner { align-items: flex-end; padding-top: 130px; padding-bottom: 68px; }
	#hero-section .hero-content { width: 100%; }
	#hero-section .hero-kicker { margin-bottom: 20px; font-size: 11px; }
	#hero-section .hero-kicker::before { width: 34px; }
	#hero-section .hero-title { max-width: 590px; font-size: clamp(48px, 13vw, 76px); }
	#hero-section .hero-description { max-width: 540px; margin-top: 24px; font-size: 16px; line-height: 1.8; }
	#hero-section .hero-actions { margin-top: 32px; }
	#world-section .world-rule { margin-top: 46px; }
	#world-section .world-list { display: block; }
	#world-section .world-item, #world-section .world-item:last-child { min-height: 390px; border-top: 0; border-right: 0; border-bottom: 1px solid var(--color-border); }
	#world-section .world-item-text { max-height: 100px; margin-top: 12px; opacity: 1; }
	#path-section .path-description { font-size: 16px; }
	#path-section .path-gallery { grid-template-columns: 1.15fr 0.85fr; gap: 12px; }
	#path-section .path-figure:first-child { margin-top: 52px; }
	#path-section .path-figure-overlay { padding: 20px 17px 16px; }
	#path-section .path-figure-title { font-size: 18px; }
	#guild-section .guild-background::after { background: linear-gradient( 0deg, rgba(22, 22, 18, 0.98) 0%, rgba(22, 22, 18, 0.8) 72%, rgba(22, 22, 18, 0.25) 100% ); }
	#guild-section .guild-inner { min-height: 700px; padding-top: 170px; padding-bottom: 60px; }
	#guild-section .guild-point { grid-template-columns: 42px 1fr; }
	#guild-section .guild-point-text { grid-column: 2; }
	#guild-section .guild-emblem { display: none; }
	#raid-section .raid-board { margin-top: 48px; }
	#raid-section .raid-item { grid-template-columns: 54px 1fr; }
	#raid-section .raid-level { align-self: start; padding-top: 6px; }
	#raid-section .raid-title { font-size: 19px; }
	#raid-section .raid-text, #raid-section .raid-tag { grid-column: 2; }
	#raid-section .raid-tag { justify-self: start; }
	#chronicle-section .chronicle-layout { grid-template-columns: 1fr; gap: 70px; }
	#chronicle-section .chronicle-media { order: 2; max-width: 620px; }
	#chronicle-section .chronicle-media-main { width: 90%; }
	#chronicle-section .chronicle-content { max-width: 660px; }
	#chronicle-section .chronicle-caption { bottom: 25px; width: 250px; padding: 21px; }
	#join-section .join-actions { flex-direction: column; }
	#join-section .join-actions a { min-width: 0; }
	footer .footer-top { grid-template-columns: 1fr 1fr; gap: 48px 30px; }
	footer .footer-brand { grid-column: 1 / -1; }
	footer .footer-bottom { flex-direction: column; gap: 14px; }
}
@media (max-width: 500px) {
	:root { --section-space: 72px; }
	body { font-size: 15px; }
	.site-container, .site-container-wide { width: calc(100% - 28px); }
	header .header-inner { width: calc(100% - 28px); }
	header .header-brand h1 { font-size: 18px; letter-spacing: 0.12em; }
	header .header-mobile-actions { grid-template-columns: 1fr; }
	#hero-section, #hero-section .hero-inner { min-height: 710px; }
	#hero-section .hero-backdrop img { object-position: 68% center; }
	#hero-section .hero-inner { padding-bottom: 42px; }
	#hero-section .hero-title { font-size: clamp(43px, 14vw, 62px); }
	#hero-section .hero-description { display: -webkit-box; overflow: hidden; font-size: 15px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
	#hero-section .hero-actions { display: grid; grid-template-columns: 1fr; }
	#hero-section .hero-actions a { width: 100%; }
	#world-section .world-heading, #path-section .path-heading, #guild-section .guild-heading, #raid-section .raid-heading, #chronicle-section .chronicle-heading, #join-section .join-heading { font-size: 40px; }
	#world-section .world-item, #world-section .world-item:last-child { min-height: 355px; padding: 30px 24px; }
	#world-section .world-item-title { font-size: 27px; }
	#path-section .path-gallery { display: block; }
	#path-section .path-figure:first-child { margin-top: 0; }
	#path-section .path-figure + .path-figure { margin-top: 12px; }
	#path-section .path-figure:first-child img { aspect-ratio: 4 / 5; }
	#path-section .path-figure:nth-child(2), #path-section .path-figure:nth-child(3) { aspect-ratio: 4 / 3; }
	#path-section .path-note { grid-template-columns: 28px 1fr; }
	#guild-section .guild-inner { padding-top: 145px; }
	#guild-section .guild-content { padding-bottom: 20px; }
	#guild-section .guild-point { gap: 12px; padding: 17px 0; }
	#raid-section .raid-header-text { font-size: 14px; }
	#raid-section .raid-item { gap: 12px; }
	#chronicle-section .chronicle-quote { padding-left: 20px; font-size: 19px; }
	#chronicle-section .chronicle-media-main { width: 100%; }
	#chronicle-section .chronicle-caption { position: relative; bottom: auto; width: calc(100% - 28px); margin: -42px auto 0; }
	#join-section .join-copy { padding-top: 56px; }
	#join-section .join-inner { padding-bottom: 56px; }
	footer { padding-top: 58px; }
	footer .footer-top { grid-template-columns: 1fr; }
	footer .footer-brand, footer .footer-news { grid-column: auto; }
	footer .footer-legal { gap: 12px 18px; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	.reveal-mask > span, .line-reveal, .media-reveal img { opacity: 1; transform: none; }
}