:root {
	--sky: #83d9ff;
	--sky-deep: #167dc8;
	--navy: #102c52;
	--navy-soft: #19446f;
	--coral: #ff635c;
	--pink: #ff93bd;
	--yellow: #ffd84d;
	--mint: #50d5bd;
	--cream: #fff8e8;
	--white: #ffffff;
	--ink: #13253d;
	--line: rgba(19, 37, 61, 0.18);
	--container: 1440px;
	--page-pad: clamp(24px, 5vw, 80px);
	--section-space: clamp(84px, 10vw, 156px);
	--display: clamp(38px, 5.2vw, 70px);
	--h1: clamp(36px, 4.6vw, 64px);
	--h2: clamp(30px, 3.6vw, 48px);
	--h3: clamp(22px, 2.3vw, 31px);
	--body: 17px;
	--radius-small: 8px;
	--radius-medium: 14px;
}


* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { margin: 0; overflow-x: hidden; background: var(--cream); color: var(--ink); font-family: "Noto Sans TC", sans-serif; font-size: var(--body); line-height: 1.8; }
body.is-menu-open { overflow: hidden; }

img { display: block; width: 100%; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

a:focus-visible, button:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 200; padding: 10px 16px; background: var(--navy); color: var(--white); transform: translateY(-160%); transition: transform 0.2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-container { width: min(100%, var(--container)); margin: 0 auto; padding-inline: var(--page-pad); }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--navy); font-size: 14px; font-weight: 800; letter-spacing: 0.12em; }
.eyebrow::before { width: 38px; height: 4px; background: currentColor; content: ""; }

.section-heading { max-width: 760px; }
.section-heading h2 { margin: 0; font-size: var(--h2); line-height: 1.28; letter-spacing: -0.035em; }
.section-heading p { max-width: 640px; margin: 24px 0 0; color: rgba(19, 37, 61, 0.76); }

.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 6px; border-bottom: 2px solid currentColor; font-weight: 800; line-height: 1.4; }
.text-link::after { content: "→"; transition: transform 0.25s ease; }
.text-link:hover::after { transform: translateX(6px); }

.reveal-clip { clip-path: inset(0 100% 0 0); transition: clip-path 0.9s cubic-bezier(0.22, 0.8, 0.22, 1); }
.reveal-clip.is-visible { clip-path: inset(0 0 0 0); }
.reveal-shift { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-shift.is-visible { opacity: 1; transform: translateX(0); }

/* header */
header { position: relative; min-height: 820px; overflow: hidden; background: var(--sky); }
header::before { position: absolute; top: 18%; left: -6%; width: 37%; height: 14%; background: rgba(255, 255, 255, 0.72); clip-path: polygon( 0 30%, 24% 30%, 31% 0, 48% 33%, 72% 33%, 83% 68%, 100% 68%, 100% 100%, 0 100% ); content: ""; }
header::after { position: absolute; right: -4%; bottom: 0; width: 36%; height: 18%; background: var(--mint); clip-path: polygon( 0 72%, 18% 42%, 39% 63%, 58% 23%, 75% 56%, 100% 18%, 100% 100%, 0 100% ); content: ""; }

header .site-nav { position: fixed; top: 18px; left: 50%; z-index: 100; display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); grid-template-areas: "left brand right"; align-items: center; width: min(calc(100% - 36px), 1380px); min-height: 70px; padding: 0 22px; border: 2px solid var(--navy); background: rgba(255, 248, 232, 0.96); transform: translateX(-50%); transition: top 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }
header .site-nav.is-scrolled { top: 0; box-shadow: 0 10px 0 rgba(16, 44, 82, 0.12); }
header .brand-mark { grid-area: brand; display: flex; align-items: center; justify-content: center; gap: 10px; padding-inline: 18px; font-size: 18px; font-weight: 900; letter-spacing: -0.03em; }
header .nav-menu { display: contents; }
header .nav-list { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); margin: 0; padding: 0; list-style: none; }
header .nav-list-left { grid-area: left; justify-content: flex-start; }
header .nav-list-right { grid-area: right; justify-content: flex-end; }
header .nav-link { position: relative; display: block; font-size: 15px; font-weight: 800; }
header .nav-link::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 3px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; content: ""; }
header .nav-link:hover::after, header .nav-link.is-active::after { transform: scaleX(1); }
header .menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; cursor: pointer; }
header .menu-toggle span { display: block; width: 26px; height: 3px; margin: 6px auto; background: var(--navy); transition: transform 0.25s ease, opacity 0.25s ease; }

header .hero { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(340px, 5fr) minmax(540px, 7fr); gap: clamp(42px, 6vw, 96px); align-items: center; width: min(100%, var(--container)); min-height: 820px; margin: 0 auto; padding: 140px var(--page-pad) 92px; }
header .hero-copy { position: relative; z-index: 3; max-width: 620px; }
header .hero-kicker { display: inline-block; margin-bottom: 26px; padding: 8px 13px; border: 2px solid var(--navy); background: var(--yellow); font-size: 14px; font-weight: 900; letter-spacing: 0.08em; transform: rotate(-2deg); }
header h1 { max-width: 610px; margin: 0; font-size: var(--h1); font-weight: 900; line-height: 1.2; letter-spacing: -0.055em; }
header h1 span { display: block; color: var(--coral); text-shadow: 3px 3px 0 var(--navy); }
header .hero-copy > p { max-width: 560px; margin: 28px 0 0; font-size: 18px; font-weight: 500; }
header .hero-command { display: flex; align-items: center; gap: 24px; margin-top: 36px; }
header .primary-link { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 13px 24px; border: 2px solid var(--navy); background: var(--navy); color: var(--white); font-weight: 900; box-shadow: 7px 7px 0 var(--coral); transition: transform 0.2s ease, box-shadow 0.2s ease; }
header .primary-link:hover { transform: translate(3px, 3px); box-shadow: 4px 4px 0 var(--coral); }
header .hero-note { max-width: 190px; font-size: 14px; font-weight: 700; line-height: 1.6; }
header .hero-collage { position: relative; min-height: 590px; }
header .hero-main { position: absolute; top: 28px; left: 0; width: 76%; aspect-ratio: 4/3; overflow: hidden; border: 5px solid var(--navy); background: var(--white); clip-path: polygon(0 0, 92% 0, 100% 16%, 97% 100%, 8% 96%, 0 78%); }
header .hero-main img { height: 100%; object-fit: cover; object-position: center; }
header .hero-tall { position: absolute; top: 0; right: 0; z-index: 2; width: 34%; aspect-ratio: 3/4; overflow: hidden; border: 5px solid var(--navy); background: var(--pink); transform: rotate(3deg); }
header .hero-tall img { height: 100%; object-fit: cover; object-position: center; }
header .hero-mini { position: absolute; right: 8%; bottom: 18px; z-index: 4; width: 34%; aspect-ratio: 1/1; overflow: hidden; border: 5px solid var(--navy); background: var(--yellow); clip-path: polygon(13% 0, 100% 0, 100% 86%, 82% 100%, 0 100%, 0 16%); transform: rotate(-4deg); }
header .hero-mini img { height: 100%; object-fit: cover; object-position: center; }
header .hero-sticker { position: absolute; bottom: 62px; left: -26px; z-index: 5; display: grid; place-items: center; width: 132px; height: 132px; padding: 18px; border: 4px solid var(--navy); background: var(--yellow); clip-path: polygon( 50% 0, 60% 18%, 80% 7%, 82% 28%, 100% 28%, 89% 49%, 100% 66%, 78% 69%, 76% 92%, 57% 80%, 42% 100%, 35% 77%, 12% 88%, 18% 64%, 0 54%, 21% 42%, 8% 21%, 34% 23% ); text-align: center; font-size: 15px; font-weight: 900; line-height: 1.45; transform: rotate(-7deg); }
header .hero-ribbon { position: absolute; right: 0; bottom: 0; left: 0; z-index: 6; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 3px solid var(--navy); border-bottom: 3px solid var(--navy); background: var(--cream); }
header .hero-ribbon a { display: flex; align-items: center; justify-content: space-between; min-height: 62px; padding: 10px var(--page-pad); border-right: 2px solid var(--navy); font-size: 15px; font-weight: 900; }
header .hero-ribbon a:last-child { border-right: 0; }
header .hero-ribbon a span { color: var(--coral); font-size: 21px; }

main > section { position: relative; }

/* park-worlds */
#park-worlds { padding: var(--section-space) 0; background: var(--cream); }
#park-worlds .world-intro { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(44px, 8vw, 130px); align-items: end; }
#park-worlds .world-intro .text-link { justify-self: end; margin-bottom: 8px; }
#park-worlds .world-stage { display: grid; grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr); gap: 0; margin-top: 68px; border: 3px solid var(--navy); background: var(--white); }
#park-worlds .world-image { min-height: 600px; overflow: hidden; border-right: 3px solid var(--navy); }
#park-worlds .world-image img { height: 100%; object-fit: cover; object-position: center; }
#park-worlds .world-directory { display: grid; grid-template-rows: repeat(3, 1fr); }
#park-worlds .world-row { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 180px; padding: 34px; overflow: hidden; border-bottom: 3px solid var(--navy); }
#park-worlds .world-row:last-child { border-bottom: 0; }
#park-worlds .world-row:nth-child(1) { background: var(--pink); }
#park-worlds .world-row:nth-child(2) { background: var(--yellow); }
#park-worlds .world-row:nth-child(3) { background: var(--mint); }
#park-worlds .world-row::after { position: absolute; top: -48px; right: -24px; width: 130px; height: 130px; border: 18px solid rgba(255, 255, 255, 0.52); content: ""; transform: rotate(25deg); }
#park-worlds .world-row strong { position: relative; z-index: 2; font-size: var(--h3); line-height: 1.3; }
#park-worlds .world-row p { position: relative; z-index: 2; max-width: 320px; margin: 12px 0 0; font-size: 15px; line-height: 1.7; }

/* rides */
#rides { padding: var(--section-space) 0; overflow: hidden; background: var(--navy); color: var(--white); }
#rides::after { position: absolute; top: 0; right: -10%; width: 48%; height: 15px; background: var(--yellow); content: ""; transform: skewX(-32deg); }
#rides .eyebrow { color: var(--yellow); }
#rides .section-heading p { color: rgba(255, 255, 255, 0.72); }
#rides .rides-layout { display: grid; grid-template-columns: minmax(230px, 3fr) minmax(0, 9fr); gap: clamp(32px, 6vw, 90px); margin-top: 66px; }
#rides .ride-tabs { display: flex; flex-direction: column; align-self: start; border-top: 2px solid rgba(255, 255, 255, 0.34); }
#rides .ride-tab { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; width: 100%; padding: 20px 4px; border: 0; border-bottom: 2px solid rgba(255, 255, 255, 0.34); background: transparent; color: rgba(255, 255, 255, 0.66); text-align: left; cursor: pointer; transition: color 0.25s ease, padding-left 0.25s ease, background 0.25s ease; }
#rides .ride-tab:hover, #rides .ride-tab.is-active { padding-left: 14px; background: var(--white); color: var(--navy); }
#rides .ride-tab-index { font-size: 14px; font-weight: 900; }
#rides .ride-tab-title { font-weight: 900; }
#rides .ride-tab-arrow { color: var(--coral); font-size: 20px; }
#rides .ride-panel[hidden] { display: none; }
#rides .ride-panel.is-active { display: grid; grid-template-columns: minmax(0, 7fr) minmax(240px, 4fr); min-height: 580px; border: 3px solid var(--white); background: var(--cream); color: var(--ink); }
#rides .ride-panel-media { min-height: 500px; overflow: hidden; border-right: 3px solid var(--navy); }
#rides .ride-panel-media img { height: 100%; object-fit: cover; object-position: center; transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
#rides .ride-panel.is-active .ride-panel-media img { transform: scale(1.02); }
#rides .ride-panel-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(30px, 4vw, 58px); background: var(--cream); }
#rides .ride-panel-copy h3 { margin: 0; font-size: var(--h3); line-height: 1.3; }
#rides .ride-panel-copy p { margin: 22px 0 0; color: rgba(19, 37, 61, 0.74); }
#rides .ride-traits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 38px; padding: 0; list-style: none; }
#rides .ride-traits li { padding: 5px 10px; border: 2px solid var(--navy); background: var(--yellow); font-size: 14px; font-weight: 800; }
#rides .ride-panel-copy .text-link { margin-top: 36px; align-self: flex-start; }

/* mascots */
#mascots { padding: var(--section-space) 0; overflow: hidden; background: var(--pink); }
#mascots::before { position: absolute; top: 0; bottom: 0; left: 0; width: 16px; background: var(--navy); content: ""; }
#mascots .mascot-layout { display: grid; grid-template-columns: minmax(480px, 7fr) minmax(340px, 5fr); gap: clamp(58px, 8vw, 120px); align-items: center; }
#mascots .mascot-visual { position: relative; min-height: 670px; }
#mascots .mascot-photo-primary { position: absolute; top: 0; left: 0; width: 66%; aspect-ratio: 3/4; overflow: hidden; border: 4px solid var(--navy); background: var(--white); clip-path: polygon(0 0, 100% 0, 94% 100%, 8% 96%); }
#mascots .mascot-photo-primary img { height: 100%; object-fit: cover; object-position: center 25%; }
#mascots .mascot-photo-secondary { position: absolute; right: 0; bottom: 0; z-index: 2; width: 53%; aspect-ratio: 3/4; overflow: hidden; border: 4px solid var(--navy); background: var(--yellow); transform: rotate(3deg); }
#mascots .mascot-photo-secondary img { height: 100%; object-fit: cover; object-position: center; }
#mascots .mascot-burst { position: absolute; top: 8%; right: 4%; z-index: 3; display: grid; place-items: center; width: 150px; height: 150px; padding: 22px; border: 4px solid var(--navy); background: var(--yellow); clip-path: polygon( 50% 0, 61% 20%, 83% 9%, 81% 32%, 100% 38%, 80% 52%, 92% 74%, 67% 72%, 55% 100%, 42% 77%, 16% 91%, 22% 64%, 0 54%, 24% 42%, 10% 18%, 37% 24% ); text-align: center; font-size: 14px; font-weight: 900; line-height: 1.45; transform: rotate(7deg); }
#mascots .mascot-copy h2 { max-width: 560px; margin: 0; font-size: var(--h2); line-height: 1.28; letter-spacing: -0.04em; }
#mascots .mascot-copy > p { max-width: 560px; margin: 26px 0 0; }
#mascots .mascot-quotes { margin-top: 44px; border-top: 3px solid var(--navy); }
#mascots .mascot-quote { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 22px 0; border-bottom: 3px solid var(--navy); }
#mascots .mascot-quote strong { font-weight: 900; }
#mascots .mascot-quote span { font-size: 15px; }

/* parade */
#parade { padding: var(--section-space) 0; background: var(--yellow); }
#parade .parade-heading { display: grid; grid-template-columns: 7fr 4fr; gap: 60px; align-items: end; }
#parade .parade-heading h2 { max-width: 790px; margin: 0; font-size: var(--display); line-height: 1.14; letter-spacing: -0.055em; }
#parade .parade-heading p { max-width: 440px; margin: 0; font-weight: 600; }
#parade .parade-media { position: relative; margin-top: 66px; overflow: hidden; border: 4px solid var(--navy); background: var(--coral); aspect-ratio: 21/8; }
#parade .parade-media img { height: 100%; object-fit: cover; object-position: center 52%; }
#parade .parade-label { position: absolute; top: 24px; left: 24px; padding: 9px 15px; border: 3px solid var(--navy); background: var(--white); font-size: 14px; font-weight: 900; transform: rotate(-2deg); }
#parade .parade-flow { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 0; border-right: 3px solid var(--navy); border-bottom: 3px solid var(--navy); border-left: 3px solid var(--navy); background: var(--cream); }
#parade .parade-step { min-height: 190px; padding: 30px; border-right: 3px solid var(--navy); }
#parade .parade-step:last-child { border-right: 0; }
#parade .parade-step small { display: block; color: var(--coral); font-size: 14px; font-weight: 900; }
#parade .parade-step h3 { margin: 12px 0 0; font-size: 24px; line-height: 1.35; }
#parade .parade-step p { margin: 14px 0 0; font-size: 15px; }

/* build */
#build { padding: var(--section-space) 0; background: var(--cream); }
#build .build-heading { display: grid; grid-template-columns: 5fr 5fr; gap: clamp(40px, 8vw, 130px); align-items: end; }
#build .build-heading .section-heading { max-width: 690px; }
#build .build-note { max-width: 520px; margin: 0; padding-left: 26px; border-left: 6px solid var(--coral); font-weight: 600; }
#build .creation-list { margin-top: 70px; border-top: 3px solid var(--navy); }
#build .creation-item { display: grid; grid-template-columns: minmax(220px, 3fr) minmax(250px, 4fr) minmax( 180px, 2fr ); gap: 40px; align-items: center; min-height: 260px; padding: 34px 0; border-bottom: 3px solid var(--navy); }
#build .creation-map { position: relative; height: 190px; overflow: hidden; border: 3px solid var(--navy); background: var(--sky); }
#build .creation-copy h3 { margin: 0; font-size: var(--h3); line-height: 1.3; }
#build .creation-copy p { max-width: 560px; margin: 16px 0 0; color: rgba(19, 37, 61, 0.74); }
#build .creation-tags { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; margin: 0; padding: 0; list-style: none; }
#build .creation-tags li { padding: 7px 11px; border: 2px solid var(--navy); font-size: 14px; font-weight: 800; }

/* updates */
#updates { padding: var(--section-space) 0; background: var(--sky-deep); color: var(--white); }
#updates .updates-heading { display: grid; grid-template-columns: 6fr 3fr; gap: 50px; align-items: end; }
#updates .updates-heading h2 { margin: 0; font-size: var(--h2); line-height: 1.28; letter-spacing: -0.035em; }
#updates .updates-heading p { margin: 0; color: rgba(255, 255, 255, 0.74); }
#updates .update-list { margin-top: 66px; border-top: 2px solid rgba(255, 255, 255, 0.5); }
#updates .update-item { display: grid; grid-template-columns: 150px minmax(260px, 4fr) minmax(280px, 5fr) 48px; gap: 32px; align-items: start; padding: 30px 0; border-bottom: 2px solid rgba(255, 255, 255, 0.5); transition: padding-left 0.25s ease, background 0.25s ease; }
#updates .update-item:hover { padding-left: 18px; background: rgba(255, 255, 255, 0.07); }
#updates .update-state { display: inline-flex; width: max-content; padding: 5px 9px; background: var(--yellow); color: var(--navy); font-size: 13px; font-weight: 900; }
#updates .update-item h3 { margin: 0; font-size: 22px; line-height: 1.4; }
#updates .update-item p { margin: 0; color: rgba(255, 255, 255, 0.75); font-size: 15px; }
#updates .update-arrow { color: var(--yellow); font-size: 28px; line-height: 1; }

/* footer */
footer { overflow: hidden; background: var(--navy); color: var(--white); }
footer .footer-callout { display: grid; grid-template-columns: 7fr 3fr; gap: 60px; align-items: end; padding: clamp(72px, 9vw, 130px) var(--page-pad); border-bottom: 2px solid rgba(255, 255, 255, 0.35); }
footer .footer-callout p { margin: 0 0 18px; color: var(--yellow); font-size: 14px; font-weight: 900; letter-spacing: 0.08em; }
footer .footer-callout h2 { max-width: 850px; margin: 0; font-size: clamp(36px, 5vw, 68px); line-height: 1.15; letter-spacing: -0.055em; }
footer .footer-callout .primary-link { justify-self: end; background: var(--yellow); color: var(--navy); box-shadow: 7px 7px 0 var(--coral); }
footer .footer-directory { display: grid; grid-template-columns: 5fr 4fr 2fr; gap: 60px; padding: 50px var(--page-pad); }
footer .footer-brand strong { display: block; font-size: 28px; line-height: 1.3; }
footer .footer-brand p { max-width: 470px; margin: 16px 0 0; color: rgba(255, 255, 255, 0.7); font-size: 15px; }
footer .footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 30px; margin: 0; padding: 0; list-style: none; }
footer .footer-links a { display: inline-block; padding: 5px 0; color: rgba(255, 255, 255, 0.78); font-weight: 700; }
footer .footer-links a:hover { color: var(--yellow); }
footer .language-list { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin: 0; padding: 0; list-style: none; }
footer .language-list a { color: rgba(255, 255, 255, 0.72); font-size: 14px; }
footer .language-list a.is-current { color: var(--yellow); font-weight: 900; }
footer .footer-wordmark { padding: 0 var(--page-pad); color: var(--coral); font-size: clamp(64px, 12vw, 180px); font-weight: 900; line-height: 0.9; letter-spacing: -0.08em; white-space: nowrap; }
footer .footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 28px var(--page-pad) 36px; color: rgba(255, 255, 255, 0.56); font-size: 14px; }

@media (max-width: 1280px) {
	:root { --page-pad: 42px; }
	header { min-height: 760px; }
	header .hero { grid-template-columns: minmax(320px, 5fr) minmax(460px, 7fr); min-height: 760px; padding-top: 132px; }
	header .hero-collage { min-height: 520px; }
	header .hero-sticker { width: 112px; height: 112px; font-size: 13px; }
	#park-worlds .world-stage { grid-template-columns: minmax(0, 7fr) minmax(290px, 5fr); }
	#park-worlds .world-image { min-height: 560px; }
	#mascots .mascot-layout { grid-template-columns: minmax(430px, 6fr) minmax(330px, 5fr); }
	#mascots .mascot-visual { min-height: 610px; }
	footer .footer-directory { grid-template-columns: 4fr 4fr 2fr; }
}
@media (max-width: 960px) {
	:root { --page-pad: 30px; --section-space: 102px; }
	header { min-height: auto; padding-bottom: 62px; }
	header .site-nav { top: 12px; grid-template-columns: minmax(0, 1fr) 48px; grid-template-areas: "brand toggle"; min-height: 64px; padding: 0 10px 0 18px; }
	header .site-nav.is-scrolled { top: 0; }
	header .brand-mark { grid-area: brand; justify-self: start; justify-content: flex-start; min-width: 0; padding: 0; }
	header .brand-mark span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	header .menu-toggle { grid-area: toggle; display: block; position: relative; z-index: 2; justify-self: end; }
	header .nav-menu { position: fixed; top: calc(100% + 10px); right: 0; left: 0; display: flex; flex-direction: column; max-height: calc(100vh - 100px); padding: 14px 20px 22px; overflow-y: auto; border: 3px solid var(--navy); background: var(--cream); box-shadow: 8px 10px 0 rgba(16, 44, 82, 0.18); opacity: 0; visibility: hidden; transform: translateY(-14px); pointer-events: none; transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease; }
	header .nav-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
	header .nav-list { display: flex; flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	header .nav-list-left, header .nav-list-right { justify-content: flex-start; }
	header .nav-list-right { border-top: 2px solid var(--navy); }
	header .nav-link { min-height: 54px; padding: 14px 6px; border-bottom: 1px solid rgba(16, 44, 82, 0.18); font-size: 17px; }
	header .nav-link::after { right: auto; bottom: 8px; width: 34px; }
	header .menu-toggle.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
	header .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
	header .menu-toggle.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
	header .hero { grid-template-columns: 1fr; gap: 44px; min-height: auto; padding-top: 120px; padding-bottom: 80px; }
	header .hero-copy { max-width: 700px; }
	header .hero-copy > p { max-width: 650px; }
	header .hero-collage { min-height: 580px; }
	header .hero-main { width: 73%; }
	header .hero-tall { width: 32%; }
	header .hero-mini { width: 30%; }
	header .hero-ribbon a { padding-inline: 30px; }
	#park-worlds .world-intro { grid-template-columns: 1fr; gap: 30px; }
	#park-worlds .world-intro .text-link { justify-self: start; }
	#park-worlds .world-stage { grid-template-columns: 1fr; }
	#park-worlds .world-image { min-height: 500px; border-right: 0; border-bottom: 3px solid var(--navy); }
	#park-worlds .world-directory { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
	#park-worlds .world-row { min-height: 230px; border-right: 3px solid var(--navy); border-bottom: 0; }
	#park-worlds .world-row:last-child { border-right: 0; }
	#rides .rides-layout { grid-template-columns: 1fr; gap: 30px; }
	#rides .ride-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 0; }
	#rides .ride-tab { grid-template-columns: 1fr auto; border-top: 2px solid rgba(255, 255, 255, 0.34); border-right: 2px solid rgba(255, 255, 255, 0.34); }
	#rides .ride-tab:last-child { border-right: 0; }
	#rides .ride-tab-index { display: none; }
	#rides .ride-panel.is-active { grid-template-columns: 1fr; }
	#rides .ride-panel-media { min-height: 440px; border-right: 0; border-bottom: 3px solid var(--navy); }
	#mascots .mascot-layout { grid-template-columns: 1fr; }
	#mascots .mascot-visual { min-height: 720px; }
	#mascots .mascot-copy { max-width: 720px; }
	#parade .parade-heading { grid-template-columns: 1fr; gap: 30px; }
	#parade .parade-heading p { max-width: 660px; }
	#parade .parade-media { aspect-ratio: 16/7; }
	#build .build-heading { grid-template-columns: 1fr; gap: 34px; }
	#build .creation-item { grid-template-columns: minmax(220px, 3fr) minmax(300px, 5fr); }
	#build .creation-tags { grid-column: 2; flex-direction: row; flex-wrap: wrap; }
	#updates .updates-heading { grid-template-columns: 1fr; gap: 28px; }
	#updates .update-item { grid-template-columns: 120px minmax(220px, 3fr) minmax(250px, 4fr) 36px; gap: 22px; }
	footer .footer-callout { grid-template-columns: 1fr; }
	footer .footer-callout .primary-link { justify-self: start; }
	footer .footer-directory { grid-template-columns: 1fr 1fr; }
	footer .language-list { grid-column: 1/-1; flex-direction: row; gap: 18px; }
}
@media (max-width: 768px) {
	:root { --page-pad: 22px; --section-space: 84px; --body: 16px; }
	header::before { top: 11%; width: 66%; height: 10%; }
	header .hero { gap: 28px; padding-top: 104px; padding-bottom: 40px; }
	header .hero-copy { order: 2; }
	header .hero-collage { order: 1; min-height: 470px; }
	header .hero-main { top: 18px; width: 80%; }
	header .hero-tall { width: 34%; }
	header .hero-mini { right: 4%; bottom: 10px; width: 31%; }
	header .hero-sticker { bottom: 34px; left: -4px; width: 100px; height: 100px; padding: 14px; font-size: 12px; }
	header .hero-command { align-items: flex-start; flex-direction: column; gap: 18px; }
	header .hero-note { max-width: 360px; }
	header .hero-ribbon { position: relative; grid-template-columns: 1fr; }
	header .hero-ribbon a { min-height: 54px; padding-inline: 22px; border-right: 0; border-bottom: 2px solid var(--navy); }
	header .hero-ribbon a:last-child { border-bottom: 0; }
	#park-worlds .world-stage { margin-top: 48px; }
	#park-worlds .world-image { min-height: 410px; }
	#park-worlds .world-directory { grid-template-columns: 1fr; }
	#park-worlds .world-row { min-height: 170px; border-right: 0; border-bottom: 3px solid var(--navy); }
	#park-worlds .world-row:last-child { border-bottom: 0; }
	#rides .ride-tabs { grid-template-columns: 1fr; }
	#rides .ride-tab { border-right: 0; }
	#rides .ride-panel-media { min-height: 360px; }
	#mascots .mascot-layout { gap: 50px; }
	#mascots .mascot-visual { min-height: 590px; }
	#mascots .mascot-photo-primary { width: 72%; }
	#mascots .mascot-photo-secondary { width: 52%; }
	#mascots .mascot-burst { width: 118px; height: 118px; font-size: 12px; }
	#mascots .mascot-quote { grid-template-columns: 100px 1fr; }
	#parade .parade-media { aspect-ratio: 4/3; }
	#parade .parade-flow { grid-template-columns: 1fr; }
	#parade .parade-step { min-height: auto; border-right: 0; border-bottom: 3px solid var(--navy); }
	#parade .parade-step:last-child { border-bottom: 0; }
	#build .creation-item { grid-template-columns: 1fr; gap: 24px; padding: 38px 0; }
	#build .creation-map { height: 230px; }
	#build .creation-tags { grid-column: auto; flex-direction: row; flex-wrap: wrap; }
	#updates .update-item { grid-template-columns: 1fr 34px; gap: 16px; }
	#updates .update-state { grid-column: 1; }
	#updates .update-item h3 { grid-column: 1; }
	#updates .update-item p { grid-column: 1; }
	#updates .update-arrow { grid-column: 2; grid-row: 1/4; align-self: center; }
	footer .footer-directory { grid-template-columns: 1fr; }
	footer .language-list { grid-column: auto; }
	footer .footer-wordmark { padding-bottom: 12px; font-size: clamp(54px, 16vw, 110px); white-space: normal; }
	footer .footer-bottom { flex-direction: column; }
}
@media (max-width: 500px) {
	:root { --page-pad: 16px; --section-space: 70px; --h1: clamp(32px, 10vw, 38px); --h2: clamp(28px, 8.5vw, 36px); --h3: clamp(21px, 7vw, 27px); }
	header .site-nav { right: 8px; left: 8px; width: auto; transform: none; }
	header .brand-mark { font-size: 16px; }
	header .brand-symbol { width: 31px; height: 31px; }
	header .nav-menu { padding: 12px 16px 18px; top: 70px; }
	header .hero { padding-top: 96px; }
	header .hero-kicker { margin-bottom: 18px; }
	header h1 span { text-shadow: 2px 2px 0 var(--navy); }
	header .hero-copy > p { margin-top: 20px; font-size: 16px; }
	header .hero-collage { min-height: 355px; }
	header .hero-main { top: 10px; width: 84%; border-width: 3px; }
	header .hero-tall { width: 35%; border-width: 3px; }
	header .hero-mini { width: 33%; border-width: 3px; }
	header .hero-sticker { bottom: 22px; width: 82px; height: 82px; border-width: 3px; font-size: 10px; }
	header .primary-link { width: 100%; }
	#park-worlds .world-image { min-height: 310px; }
	#park-worlds .world-row { padding: 26px 22px; }
	#rides .ride-panel.is-active { border-width: 2px; }
	#rides .ride-panel-media { min-height: 290px; }
	#rides .ride-panel-copy { padding: 28px 22px; }
	#mascots::before { width: 8px; }
	#mascots .mascot-visual { min-height: 440px; }
	#mascots .mascot-photo-primary { width: 76%; border-width: 3px; }
	#mascots .mascot-photo-secondary { width: 53%; border-width: 3px; }
	#mascots .mascot-burst { top: 2%; right: 0; width: 94px; height: 94px; border-width: 3px; font-size: 10px; }
	#mascots .mascot-quotes { margin-top: 32px; }
	#mascots .mascot-quote { grid-template-columns: 1fr; gap: 8px; }
	#parade .parade-heading h2 { font-size: clamp(34px, 11vw, 42px); }
	#parade .parade-media { margin-top: 42px; border-width: 3px; }
	#parade .parade-label { top: 12px; left: 12px; padding: 6px 10px; border-width: 2px; }
	#parade .parade-step { padding: 24px 20px; }
	#build .build-note { padding-left: 18px; }
	#build .creation-map { height: 190px; }
	#updates .update-item:hover { padding-left: 0; }
	footer .footer-callout { padding-inline: 16px; }
	footer .footer-callout h2 { font-size: 34px; }
	footer .footer-callout .primary-link { width: 100%; }
	footer .footer-directory, footer .footer-wordmark, footer .footer-bottom { padding-inline: 16px; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto; transition-duration: 0.01ms; animation-duration: 0.01ms; animation-iteration-count: 1; }
	.reveal-clip { clip-path: none; }
	.reveal-shift { opacity: 1; transform: none; }
	header .nav-menu, header .menu-toggle span { transition: none; }
}