:root {
  --yellow: #ffe454;
  --yellow-deep: #ffc928;
  --pink: #ff5d8f;
  --coral: #ff704e;
  --mint: #8be7c4;
  --blue: #7cc8ff;
  --ink: #121212;
  --paper: #fffdf3;
  --white: #ffffff;
  --line: rgba(18, 18, 18, .22);
  --pad: clamp(20px, 5vw, 78px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 72px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
::selection { color: var(--white); background: var(--pink); }

.noise {
  position: fixed;
  z-index: 1000;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1.5px solid var(--ink);
  background: rgba(255, 228, 84, .9);
  backdrop-filter: blur(12px);
  transition: background .2s, color .2s;
}
.site-header.is-dark { color: var(--white); background: rgba(18, 18, 18, .92); border-color: rgba(255,255,255,.22); }
.brand { justify-self: start; display: inline-flex; align-items: center; gap: 10px; font: 900 15px/1 Arial, sans-serif; }
.brand-dot { width: 16px; height: 16px; border: 4px solid currentColor; border-radius: 50%; background: var(--pink); }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }
.main-nav a { position: relative; font-size: 12px; font-weight: 800; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 3px; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.sound-button {
  justify-self: end;
  height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid currentColor;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}
.sound-button span { font-size: 17px; }
.sound-button b { font-size: 9px; }
.sound-button[aria-pressed="true"] { color: var(--ink); background: var(--pink); box-shadow: 3px 3px 0 var(--ink); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: min(900px, calc(100dvh - 34px));
  padding: 96px var(--pad) 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  grid-template-rows: 1fr auto;
  gap: 24px 4vw;
  overflow: hidden;
  background: var(--yellow);
}
.hero::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: 16%;
  width: min(47vw, 650px);
  aspect-ratio: 1;
  border: 2px solid rgba(18,18,18,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(255,255,255,.13), 0 0 0 72px rgba(18,18,18,.045);
}
.hero-copy { position: relative; z-index: 2; align-self: center; padding-bottom: 3vh; }
.eyebrow { margin: 0 0 clamp(30px, 6vh, 70px); display: flex; align-items: center; gap: 10px; font: 800 10px/1 Arial, sans-serif; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 8px; background: var(--pink); border: 1.5px solid var(--ink); }
.hello { margin: 0 0 2px; font-size: clamp(22px, 2.2vw, 34px); font-weight: 900; }
.hero h1 { margin: 0; font-size: clamp(76px, 11vw, 164px); line-height: .83; letter-spacing: 0; font-weight: 1000; }
.hero h1 span { display: inline-block; color: var(--white); font-size: .38em; -webkit-text-stroke: 2px var(--ink); transform: rotate(-8deg) translate(5px, -18px); }
.hero-role { min-height: 2.9em; margin: 28px 0 0; max-width: 580px; font-size: clamp(17px, 1.55vw, 23px); line-height: 1.45; font-weight: 800; }
.hero-actions, .contact-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .16s, box-shadow .16s;
}
.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); }
.button-dark { color: var(--white); background: var(--ink); }
.button-light { background: var(--white); }
.button-yellow { color: var(--ink); background: var(--yellow); }
.button-outline { color: var(--white); border-color: var(--white); background: transparent; }
.button-outline:hover { color: var(--ink); background: var(--white); box-shadow: 5px 5px 0 var(--pink); }

.hero-character { position: relative; z-index: 2; min-height: 530px; display: grid; place-items: end center; align-self: stretch; }
.character-stage { position: relative; width: min(100%, 560px); align-self: end; }
.character-stage::after { content: ""; position: absolute; z-index: -1; left: 14%; bottom: 5%; width: 76%; height: 19%; background: rgba(18,18,18,.16); border-radius: 50%; filter: blur(8px); }
.character-stage img { width: 100%; transform-origin: 50% 90%; filter: saturate(1.08) contrast(1.02); }
.hero-character.is-bouncing .character-stage img { animation: dragon-bounce .58s cubic-bezier(.2,.8,.35,1); }
@keyframes dragon-bounce { 0%,100% { transform: translateY(0) rotate(0); } 35% { transform: translateY(-50px) rotate(-4deg) scale(1.04,.96); } 65% { transform: translateY(2px) rotate(3deg) scale(.97,1.03); } }
.speech-bubble {
  position: absolute;
  z-index: 4;
  top: 5%;
  left: -1%;
  margin: 0;
  padding: 16px 20px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
  transform: rotate(-5deg);
}
.speech-bubble::after { content: ""; position: absolute; right: -14px; bottom: 8px; width: 22px; height: 22px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--white); transform: rotate(-35deg); }
.orbit-label { position: absolute; z-index: 3; padding: 7px 10px; border: 1.5px solid var(--ink); background: var(--mint); box-shadow: 3px 3px 0 var(--ink); font-size: 10px; font-weight: 900; }
.label-one { top: 29%; right: 0; transform: rotate(9deg); }
.label-two { top: 51%; left: 1%; color: var(--white); background: var(--pink); transform: rotate(-7deg); }
.label-three { top: 69%; right: -1%; background: var(--blue); transform: rotate(5deg); }
.belly-button {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 3%;
  width: 78px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--pink);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  transform: rotate(7deg);
}
.belly-button span, .belly-button b { display: block; }
.belly-button span { font-size: 9px; }
.belly-button b { margin-top: 2px; font-size: 20px; }
.belly-button:hover { transform: rotate(-5deg) scale(1.08); }
.hero-footnote { position: relative; z-index: 4; grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; border-top: 1.5px solid var(--ink); padding-top: 18px; font-size: 10px; font-weight: 700; }
.marquee { width: 100%; overflow: hidden; color: var(--white); background: var(--ink); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.marquee-track { width: max-content; padding: 16px 0; display: flex; align-items: center; animation: marquee 26s linear infinite; }
.marquee span { font-size: 13px; font-weight: 900; white-space: nowrap; }
.marquee i { margin: 0 28px; color: var(--yellow); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-pad { padding: clamp(80px, 11vw, 150px) var(--pad); }
.section-index { margin-bottom: 72px; display: flex; align-items: center; gap: 14px; }
.section-index span { width: 36px; height: 36px; display: grid; place-items: center; border: 1.5px solid var(--ink); border-radius: 50%; font: 900 10px/1 Arial, sans-serif; }
.section-index p { margin: 0; font: 800 10px/1 Arial, sans-serif; }
.section-index.light span { border-color: var(--white); }

.about { background: var(--paper); }
.about-lead { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 8vw; align-items: end; }
.about h2, .skills h2, .timeline h2, .contact h2 { margin: 0; font-size: clamp(48px, 7.2vw, 104px); line-height: .98; letter-spacing: 0; }
.about h2 em, .timeline h2 em { color: var(--pink); font-style: normal; -webkit-text-stroke: 1.5px var(--ink); }
.about-lead > p { margin: 0 0 6px; font-size: 16px; font-weight: 700; line-height: 1.75; }
.about-grid { margin-top: 80px; display: grid; grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr); gap: 5vw; align-items: start; }
.id-sheet { border: 2px solid var(--ink); background: var(--yellow); box-shadow: 10px 10px 0 var(--ink); transform: rotate(-1.5deg); }
.id-sheet-top { padding: 14px 18px; display: flex; justify-content: space-between; border-bottom: 2px solid var(--ink); font: 900 9px/1 Arial, sans-serif; }
.id-main { padding: 24px; display: grid; grid-template-columns: 132px 1fr; gap: 24px; }
.avatar-wrap { min-height: 164px; display: grid; place-items: center; align-content: center; border: 1.5px solid var(--ink); background: var(--white); }
.avatar-wrap span { margin-top: 13px; font-size: 9px; line-height: 1.4; text-align: center; }
.avatar-face { position: relative; width: 62px; height: 56px; border: 2px solid var(--ink); border-radius: 48% 48% 40% 40%; background: var(--pink); }
.avatar-face i { position: absolute; top: 21px; width: 5px; height: 7px; border-radius: 50%; background: var(--ink); }
.avatar-face i:first-child { left: 16px; }.avatar-face i:nth-child(2) { right: 16px; }
.avatar-face b { position: absolute; left: 50%; bottom: 12px; width: 17px; height: 7px; border: 2px solid var(--ink); border-top: 0; border-radius: 0 0 20px 20px; transform: translateX(-50%); }
.id-main dl { margin: 0; }
.id-main dl div { padding: 7px 0 11px; border-bottom: 1px solid rgba(18,18,18,.3); }
.id-main dt { font-size: 8px; font-weight: 800; }
.id-main dd { margin: 3px 0 0; font-size: 16px; font-weight: 900; }
.barcode { height: 72px; padding: 12px 22px; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: end; border-top: 2px solid var(--ink); background: var(--white); }
.barcode i { height: 34px; background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 8px, transparent 8px 11px); }
.barcode span { font: 800 8px/1 Arial, sans-serif; }
.facts { border-top: 2px solid var(--ink); }
.fact-row { min-height: 126px; padding: 20px 4px; display: grid; grid-template-columns: 50px 1fr 36px; gap: 18px; align-items: center; border-bottom: 2px solid var(--ink); }
.fact-row > span { align-self: start; font: 900 10px/1 Arial, sans-serif; }
.fact-row h3 { margin: 0 0 8px; font-size: 21px; }
.fact-row p { margin: 0; font-size: 13px; line-height: 1.65; }
.fact-row strong { font-size: 26px; transition: transform .2s; }
.fact-row:hover strong { transform: rotate(45deg); }

.quote-band { position: relative; min-height: 470px; padding: 80px var(--pad); display: flex; align-items: center; overflow: hidden; color: var(--ink); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--pink); }
.quote-band::before { content: "‘"; position: absolute; left: 2vw; top: -15vw; color: rgba(255,255,255,.18); font: 900 58vw/.8 Georgia, serif; }
.quote-band > p { position: relative; z-index: 2; margin: 0; width: 75%; font-size: clamp(34px, 5.3vw, 78px); line-height: 1.22; font-weight: 1000; }
.quote-dragon { position: absolute; right: 1vw; bottom: -19%; width: min(31vw, 410px); transform: rotate(7deg); }
.quote-dragon img { width: 100%; }
.quote-dragon span { position: absolute; top: 9%; left: -8%; padding: 12px 15px; border: 2px solid var(--ink); background: var(--white); box-shadow: 5px 5px 0 var(--ink); font-size: 11px; line-height: 1.35; font-weight: 900; transform: rotate(-10deg); }

.skills { color: var(--white); background: var(--ink); }
.skills-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr); gap: 7vw; align-items: end; }
.skills-heading .kicker { color: var(--yellow); font-size: 11px; font-weight: 800; }
.skills-heading > p { margin: 0 0 7px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.8; }
.skill-selector { margin-top: 80px; border-top: 1px solid rgba(255,255,255,.28); }
.skill-tab { width: 100%; min-height: 88px; padding: 0; display: grid; grid-template-columns: 70px 1fr auto; gap: 20px; align-items: center; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.48); background: transparent; text-align: left; cursor: pointer; transition: color .2s, padding .2s, background .2s; }
.skill-tab > span { font: 800 10px/1 Arial, sans-serif; }
.skill-tab b { font-size: clamp(19px, 2.4vw, 31px); }
.skill-tab i { font: 900 12px/1 Arial, sans-serif; }
.skill-tab:hover, .skill-tab.is-active { padding: 0 20px; color: var(--ink); background: var(--yellow); }
.skill-meter { margin-top: 54px; }
.skill-meter-copy { margin-bottom: 12px; display: flex; align-items: end; justify-content: space-between; }
.skill-meter-copy span { font-size: 10px; font-weight: 800; }
.skill-meter-copy b { font-size: 42px; line-height: .8; }
.skill-meter-copy b::after { content: "%"; margin-left: 4px; font-size: 12px; }
.meter-track { height: 4px; padding: 0; border: 0; }
.meter-track i { display: block; width: var(--level); height: 100%; background: var(--pink); transition: width .55s cubic-bezier(.2,.8,.2,1), background .2s; }

.timeline { background: var(--yellow); }
.timeline-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.timeline-heading > p { margin: 0 0 8px; font-size: 13px; font-weight: 800; }
.timeline-list { margin-top: 82px; border-top: 2px solid var(--ink); }
.timeline-list article { min-height: 210px; padding: 36px 0; display: grid; grid-template-columns: 120px minmax(260px, .85fr) minmax(260px, .55fr); gap: 5vw; align-items: start; border-bottom: 2px solid var(--ink); }
.timeline-list time { font: 1000 clamp(30px, 4vw, 56px)/1 Arial, sans-serif; }
.timeline-list article div > span { padding: 5px 8px; display: inline-block; color: var(--white); background: var(--ink); font-size: 9px; font-weight: 900; }
.timeline-list h3 { margin: 17px 0 0; font-size: clamp(20px, 2.4vw, 32px); line-height: 1.32; }
.timeline-list article > p { margin: 30px 0 0; font-size: 13px; line-height: 1.8; }

.contact { position: relative; min-height: min(800px, 90svh); padding: 100px var(--pad) 38px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); grid-template-rows: 1fr auto; gap: 50px; overflow: hidden; color: var(--white); background: var(--ink); }
.contact::after { content: "HELLO"; position: absolute; right: -1vw; top: 8%; color: rgba(255,255,255,.035); font: 1000 16vw/1 Arial, sans-serif; }
.contact-copy { position: relative; z-index: 2; align-self: center; }
.contact-copy > p { margin: 0 0 35px; color: var(--yellow); font: 800 10px/1 Arial, sans-serif; }
.contact h2 span { color: var(--pink); }
.contact-sticker { position: relative; z-index: 2; align-self: end; justify-self: center; width: min(100%, 460px); }
.contact-sticker img { width: 100%; }
.contact-sticker p { position: absolute; top: 4%; left: -4%; margin: 0; padding: 14px 17px; color: var(--ink); border: 2px solid var(--ink); background: var(--yellow); box-shadow: 6px 6px 0 var(--pink); font-size: 12px; line-height: 1.4; font-weight: 900; transform: rotate(-7deg); }
.contact-sticker.is-waving img { animation: wave .5s ease; }
@keyframes wave { 40% { transform: rotate(-6deg) translateY(-16px); } 70% { transform: rotate(4deg); } }
.contact-foot { position: relative; z-index: 3; grid-column: 1 / -1; padding-top: 22px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; border-top: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.5); font-size: 9px; }
.contact-foot a { color: var(--white); font-weight: 800; }

.toast-region { position: fixed; z-index: 500; right: 20px; bottom: 20px; display: grid; gap: 10px; pointer-events: none; }
.toast { min-width: 250px; padding: 15px 18px; border: 2px solid var(--ink); color: var(--ink); background: var(--mint); box-shadow: 6px 6px 0 var(--ink); font-size: 12px; font-weight: 900; animation: toast-in .3s ease both; }
@keyframes toast-in { from { opacity: 0; transform: translateY(15px) rotate(2deg); } }
.crumb { position: fixed; z-index: 450; width: 10px; height: 10px; border: 1px solid var(--ink); pointer-events: none; animation: crumb-fly .7s ease-out both; }
@keyframes crumb-fly { to { opacity: 0; transform: translate(var(--x), var(--y)) rotate(300deg); } }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; height: 64px; }
  .brand { grid-column: 1; grid-row: 1; }
  .main-nav { position: absolute; top: 64px; left: 0; width: 100vw; height: calc(100svh - 64px); padding: 50px var(--pad); display: flex; flex-direction: column; align-items: flex-start; gap: 26px; color: var(--white); background: var(--ink); transform: translateX(100%); transition: transform .25s ease; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { font-size: clamp(28px, 8vw, 46px); }
  .sound-button { grid-column: 2; grid-row: 1; margin-left: auto; }
  .menu-button { grid-column: 3; grid-row: 1; width: 40px; height: 40px; padding: 0; display: grid; place-content: center; gap: 6px; border: 1.5px solid currentColor; background: transparent; }
  .menu-button i { width: 18px; height: 2px; background: currentColor; transition: transform .2s; }
  .menu-button[aria-expanded="true"] i:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 105px; grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .hero h1 { font-size: clamp(78px, 20vw, 140px); }
  .hero-character { min-height: 470px; }
  .character-stage { width: min(90%, 490px); }
  .hero-footnote { grid-column: 1; }
  .about-lead, .about-grid, .skills-heading, .contact { grid-template-columns: 1fr; }
  .about-grid { gap: 65px; }
  .quote-band > p { width: 88%; }
  .quote-dragon { right: -9vw; width: min(38vw, 340px); opacity: .88; }
  .timeline-heading { display: block; }
  .timeline-heading > p { margin-top: 25px; }
  .timeline-list article { grid-template-columns: 110px 1fr; }
  .timeline-list article > p { grid-column: 2; margin-top: 0; }
  .contact { min-height: auto; }
  .contact-sticker { width: min(75%, 390px); }
}

@media (max-width: 600px) {
  :root { --pad: 20px; }
  html { scroll-padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  body.menu-open { overflow: auto; }
  section[id] { scroll-margin-top: 58px; }
  .site-header { height: 58px; backdrop-filter: none; }
  .main-nav { padding-bottom: env(safe-area-inset-bottom); transform: none !important; }
  .main-nav a::after { display: none; }
  .main-nav a.is-active { background: var(--yellow); }
  .main-nav a:active { transform: translateY(1px); }
  .sound-button { width: 38px; padding: 0; justify-content: center; }
  .sound-button b { display: none; }
  .hero { padding-top: 82px; gap: 12px; }
  .eyebrow { margin-bottom: 27px; }
  .hello { font-size: 21px; }
  .hero h1 { font-size: clamp(72px, 21vw, 86px); }
  .hero h1 span { display: inline-block; width: auto; margin-top: 0; font-size: .39em; transform: rotate(-6deg) translate(2px, -8px); }
  .hero-role { min-height: 3em; margin-top: 20px; font-size: 15px; }
  .hero-actions, .contact-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-character { height: 240px; min-height: 240px; margin-top: 0; }
  .character-stage { width: min(70%, 240px); }
  .speech-bubble { top: 1%; left: 0; padding: 12px 14px; font-size: 11px; }
  .belly-button { right: 4%; bottom: 74px; width: 68px; }
  .label-one { top: 33%; }.label-two { top: 57%; }.label-three { display: none; }
  .hero-footnote { display: none; }
  .section-pad { padding: 78px var(--pad); }
  .section-index { margin-bottom: 48px; }
  .about-lead { display: block; }
  .about-lead > p { margin-top: 32px; }
  .about-grid { margin-top: 54px; grid-template-columns: 1fr; }
  .id-main { grid-template-columns: 100px 1fr; gap: 16px; padding: 17px; }
  .avatar-wrap { min-height: 150px; }
  .id-main dd { font-size: 13px; }
  .fact-row { grid-template-columns: 34px 1fr 24px; gap: 10px; }
  .quote-band { min-height: 430px; padding: 58px var(--pad) 170px; align-items: flex-start; }
  .quote-band > p { width: 100%; font-size: 34px; }
  .quote-dragon { width: 270px; right: -28px; bottom: -72px; }
  .quote-dragon span { left: -2%; }
  .skills-heading { display: block; }
  .skills-heading > p { margin-top: 32px; }
  .skill-selector { margin-top: 50px; }
  .skill-tab { min-height: 76px; grid-template-columns: 34px 1fr auto; gap: 8px; }
  .skill-tab b { font-size: 17px; }
  .skill-tab:hover, .skill-tab.is-active { padding: 0 10px; }
  .timeline-list { margin-top: 52px; }
  .timeline-list article { grid-template-columns: 1fr; gap: 18px; }
  .timeline-list article > p { grid-column: 1; margin: 0; }
  .contact { padding: 84px var(--pad) 30px; grid-template-columns: 1fr; }
  .contact h2 { font-size: clamp(44px, 13vw, 68px); }
  .contact-sticker { width: 90%; }
  .contact-foot { grid-template-columns: 1fr; gap: 9px; }
  .toast-region { right: 12px; bottom: calc(78px + env(safe-area-inset-bottom)); left: 12px; }
  .toast { min-width: 0; }
}

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