/* =============================================================
   SUMMIT — "Field Notes"
   Pastel · topographic · editorial mental-health identity
   ============================================================= */

:root {
  --paper:      #ECE9E0;   /* warm pale greige */
  --paper-2:    #E4E0D4;
  --paper-3:    #DCD7C8;
  --ink:        #2B3A36;   /* muted charcoal-teal */
  --ink-2:      #586460;
  --muted:      #8B948D;
  --cream:      #F3F0E8;
  --cream-dim:  #C3C9C1;
  --line:       rgba(43, 58, 54, 0.14);
  --line-2:     rgba(43, 58, 54, 0.08);
  --line-light: rgba(243, 240, 232, 0.16);

  /* muted, pastel — never neon */
  --accent:     #3E6F5E;   /* dusty sage-teal (text-safe) */
  --accent-2:   #5C8C7B;
  --sage:       #97B7A6;   /* pastel sage */
  --sky:        #9FBAC8;   /* dusty blue */
  --sand:       #DAC4A0;   /* pastel sand */
  --clay:       #C4937D;   /* dusty clay */

  --dark:       #233330;   /* deep muted teal for dark sections */

  --font:       'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.65, 0.05, 0.36, 1);

  --pad: clamp(1.25rem, 5vw, 5.5rem);
  --maxw: 1640px;

  --z-grain: 4;
  --z-ui: 70;
  --z-nav: 80;
  --z-menu: 90;
  --z-cursor: 100;
  --z-preloader: 200;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; background: none; border: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--cream); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

h1, h2, h3, .display { font-family: var(--font); }

/* labels */
.field-label { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font); font-weight: 600; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field-label::before { content: ''; width: 18px; height: 1px; background: var(--accent); display: inline-block; }
.field-label--light { color: var(--cream-dim); }
.field-label--light::before { background: var(--sage); }

/* =============================================================
   Grain + contour motif
   ============================================================= */
.grain {
  position: fixed; inset: -50%; z-index: var(--z-grain); pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain { 0%,100%{transform:translate(0,0)} 20%{transform:translate(-4%,2%)} 40%{transform:translate(3%,-3%)} 60%{transform:translate(-2%,4%)} 80%{transform:translate(4%,1%)} }

/* topographic contour (concentric) — signature motif */
.contour { position: absolute; pointer-events: none; color: var(--ink); opacity: .07; }
.contour svg { display: block; width: 100%; height: 100%; }
.contour ellipse { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }

/* =============================================================
   Cursor (minimal, refined)
   ============================================================= */
.cursor { position: fixed; top: 0; left: 0; z-index: var(--z-cursor); pointer-events: none; }
.cursor__dot { position: fixed; top: 0; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); transform: translate(-50%,-50%); transition: opacity .3s, background .3s; }
.cursor__ring { position: fixed; top: 0; left: 0; width: 30px; height: 30px; border: 1px solid var(--ink); border-radius: 50%; transform: translate(-50%,-50%) scale(1); opacity: .5; transition: width .4s var(--ease), height .4s var(--ease), opacity .3s, background-color .3s, border-color .3s; }
.cursor.is-hover .cursor__ring { width: 54px; height: 54px; opacity: 1; background: rgba(62,111,94,.12); border-color: var(--accent); }
.cursor.is-hover .cursor__dot { opacity: 0; }
.cursor.is-dark .cursor__dot { background: var(--cream); }
.cursor.is-dark .cursor__ring { border-color: var(--cream); }
.cursor.is-dark.is-hover .cursor__ring { border-color: var(--sage); background: rgba(151,183,166,.16); }
@media (max-width: 900px) { .cursor { display: none; } }

/* =============================================================
   Scroll progress + altitude + ascent trail
   ============================================================= */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: var(--accent); z-index: var(--z-ui); }
.altitude { position: fixed; bottom: clamp(1rem,3vw,1.8rem); right: clamp(1rem,3vw,1.8rem); z-index: var(--z-ui); display: flex; align-items: center; gap: .5rem; font-family: var(--font); font-weight: 500; font-size: 12px; letter-spacing: .04em; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line); border-radius: 100px; padding: .42rem .85rem; }
.altitude__unit { color: var(--muted); margin-left: .3rem; }
.altitude__peak { color: var(--accent); }
@media (max-width: 640px) { .altitude { display: none; } }

.trail { position: fixed; left: clamp(8px, 1.4vw, 22px); top: 0; height: 100vh; width: 34px; z-index: var(--z-ui); pointer-events: none; }
.trail svg { width: 100%; height: 100%; overflow: visible; }
.trail__base { stroke: var(--line); stroke-width: 1.5; vector-effect: non-scaling-stroke; stroke-dasharray: 2 5; }
.trail__line { stroke: var(--accent); stroke-width: 2; vector-effect: non-scaling-stroke; stroke-linecap: round; }
.trail__marker { fill: var(--accent); }
@media (max-width: 820px) { .trail { display: none; } }

/* =============================================================
   Preloader (topographic draw-in)
   ============================================================= */
.preloader { position: fixed; inset: 0; z-index: var(--z-preloader); background: var(--ink); color: var(--cream); overflow: hidden; will-change: clip-path; }
.preloader__brand { position: absolute; top: var(--pad); left: var(--pad); display: flex; align-items: center; gap: .55rem; font-family: var(--font); font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; }
.preloader__brand svg { width: 24px; height: 24px; color: var(--sage); }
.preloader__label { position: absolute; bottom: calc(var(--pad) + .2rem); left: var(--pad); font-family: var(--font); font-weight: 500; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-dim); overflow: hidden; }
.preloader__label span { display: inline-block; }
.preloader__big { position: absolute; right: var(--pad); bottom: calc(var(--pad) - .4rem); font-family: var(--font); font-weight: 800; font-size: clamp(4.5rem, 18vw, 16rem); line-height: 0.8; letter-spacing: -0.05em; display: flex; align-items: flex-end; }
.preloader__big i { font-style: normal; font-size: 0.28em; font-weight: 700; color: var(--sage); margin-bottom: .9em; margin-left: .15em; }
.preloader__bar { position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: rgba(243,240,232,.14); }
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--sage); }

/* =============================================================
   Navigation
   ============================================================= */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: var(--z-nav); display: flex; justify-content: space-between; align-items: center; padding: clamp(1rem,2.2vw,1.6rem) var(--pad); }
.nav__logo { display: flex; align-items: center; gap: .55rem; color: var(--ink); }
.nav__logo-mark { width: 26px; height: 26px; color: var(--accent); }
.nav__logo-mark svg { width: 100%; height: 100%; }
.nav__logo-text { font-family: var(--font); font-weight: 700; letter-spacing: 0.02em; font-size: 1.05rem; }
.nav__right { display: flex; align-items: center; gap: clamp(.8rem, 1.8vw, 1.8rem); }
.nav__cta { font-family: var(--font); font-weight: 600; font-size: 13px; padding: .55rem 1.15rem; border: 1px solid var(--ink); border-radius: 100px; transition: background .35s var(--ease), color .35s var(--ease); }
.nav__cta:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 680px) { .nav__cta { display: none; } }

/* sound toggle */
.sound { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font); font-weight: 600; font-size: 13px; color: var(--ink); }
.sound__bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 14px; }
.sound__bars i { width: 2px; height: 4px; background: var(--ink); border-radius: 2px; transition: height .2s; }
.sound.is-playing .sound__bars i { animation: eq .9s ease-in-out infinite; }
.sound.is-playing .sound__bars i:nth-child(2){ animation-delay:.15s } .sound.is-playing .sound__bars i:nth-child(3){ animation-delay:.3s } .sound.is-playing .sound__bars i:nth-child(4){ animation-delay:.45s }
@keyframes eq { 0%,100%{height:3px} 50%{height:13px} }
@media (max-width: 460px) { .sound__label { display: none; } }

.nav__toggle { display: flex; align-items: center; gap: .55rem; }
.nav__toggle-label { font-family: var(--font); font-weight: 600; font-size: 13px; }
.nav__toggle-icon { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.nav__toggle-icon i { display: block; height: 1.5px; width: 100%; background: var(--ink); transition: transform .4s var(--ease); }
body.menu-open .nav { color: var(--cream); z-index: 95; }
body.menu-open .nav__cta { border-color: var(--cream); }
body.menu-open .nav__logo, body.menu-open .sound { color: var(--cream); }
body.menu-open .sound__bars i { background: var(--cream); }
body.menu-open .nav__toggle-icon i { background: var(--cream); }
body.menu-open .nav__toggle-icon i:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
body.menu-open .nav__toggle-icon i:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* =============================================================
   Menu
   ============================================================= */
.menu { position: fixed; inset: 0; z-index: var(--z-menu); pointer-events: none; visibility: hidden; color: var(--cream); }
.menu.is-open { pointer-events: auto; visibility: visible; }
.menu__bg { position: absolute; inset: 0; background: var(--dark); clip-path: inset(0 0 100% 0); transition: clip-path .8s var(--ease-soft); }
.menu.is-open .menu__bg { clip-path: inset(0 0 0% 0); }
.menu__contour { position: absolute; right: -10%; bottom: -20%; width: 70vh; aspect-ratio: 1; color: var(--sage); opacity: .12; }
.menu__contour svg { width: 100%; height: 100%; }
.menu__contour ellipse { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.menu__inner { position: relative; height: 100%; display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; padding: clamp(5rem,12vh,9rem) var(--pad) var(--pad); align-items: center; }
.menu__list { list-style: none; }
.menu__item { overflow: hidden; }
.menu__item a { display: flex; align-items: baseline; gap: 1.2rem; font-family: var(--font); font-weight: 600; font-size: clamp(2rem,7vw,5.2rem); line-height: 1.08; letter-spacing: -0.03em; padding: clamp(.1rem,1vh,.55rem) 0; transform: translateY(110%); transition: color .3s var(--ease); }
.menu__item a:hover { color: var(--sage); }
.menu__index { font-family: var(--font); font-weight: 600; font-size: 12px; color: var(--cream-dim); }
.menu__aside { display: flex; flex-direction: column; gap: 2.2rem; align-self: end; padding-bottom: 1rem; opacity: 0; }
.menu__aside-label { font-family: var(--font); font-weight: 600; font-size: 11.5px; color: var(--cream-dim); text-transform: uppercase; letter-spacing: .14em; display: block; margin-bottom: .7rem; }
.menu__aside-line { font-family: var(--font); font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 600; color: var(--sage); }
.menu__aside-note { font-size: 13px; color: var(--cream-dim); margin-top: .5rem; max-width: 30ch; }
.menu__socials { display: flex; flex-direction: column; gap: .5rem; }
.menu__socials a { display: inline-flex; align-items: center; gap: .55rem; color: var(--cream-dim); font-weight: 500; transition: color .3s var(--ease); width: fit-content; }
.menu__socials a:hover { color: var(--sage); }
@media (max-width: 860px) { .menu__inner { grid-template-columns: 1fr; align-items: start; gap: 2.5rem; } .menu__aside { flex-direction: row; flex-wrap: wrap; gap: 2rem; } }

.ico { width: 16px; height: 16px; opacity: .85; }
.ico--mail { font-size: 14px; line-height: 1; }

/* =============================================================
   Duotone media (one unified photo grade = identity)
   ============================================================= */
.media { position: relative; overflow: hidden; border-radius: 16px; background: var(--dark); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(.45) saturate(.85) contrast(1.02); transition: transform .9s var(--ease), filter .6s var(--ease); }
.media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(62,111,94,.34), rgba(43,58,54,.1) 52%, rgba(43,58,54,.36)); }
.media:hover img { transform: scale(1.04); filter: grayscale(.2) saturate(.95) contrast(1.03); }
.media__tag { position: absolute; left: 1rem; bottom: .9rem; z-index: 2; font-family: var(--font); font-weight: 600; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); }

/* =============================================================
   Hero
   ============================================================= */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; padding: var(--pad); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: var(--cream); }
.hero__media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero__photo { position: absolute; inset: 0; background: var(--dark); will-change: transform, clip-path; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; transform: scale(1.06); filter: grayscale(.32) contrast(1.02) brightness(1.02) saturate(.85); will-change: transform; }
.hero__grade { position: absolute; inset: 0; background: linear-gradient(165deg, rgba(35,51,48,.5), rgba(62,111,94,.25) 45%, rgba(159,186,200,.2)); mix-blend-mode: soft-light; }
.hero__grade::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(35,51,48,.5), transparent 26%, transparent 55%, rgba(35,51,48,.4)); }
.hero__contour { position: absolute; right: -8%; top: 6%; width: 60vh; aspect-ratio: 1; color: var(--cream); opacity: .12; z-index: -2; }
.hero__contour svg { width: 100%; height: 100%; }
.hero__contour ellipse { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.hero__vignette { position: absolute; inset: 0; z-index: -2; background: radial-gradient(120% 90% at 50% 36%, transparent 50%, rgba(35,51,48,.28)), linear-gradient(180deg, transparent 64%, var(--paper)); }
.hero__top { display: flex; justify-content: space-between; align-items: flex-start; padding-top: clamp(4rem,8vh,5.5rem); }
.hero__eyebrow { color: var(--cream); }
.hero__eyebrow::before { background: var(--sage); }
.hero__clock { font-family: var(--font); font-weight: 500; font-size: 12.5px; letter-spacing: .04em; color: rgba(243,240,232,.75); }
.hero__title { font-family: var(--font); font-weight: 800; font-size: clamp(4rem, 19vw, 18rem); line-height: 0.86; letter-spacing: -0.05em; margin: auto 0; pointer-events: none; text-shadow: 0 6px 50px rgba(35,51,48,.4); }
.hero__line { display: block; overflow: hidden; }
.hero__line--out { color: transparent; -webkit-text-stroke: 1.4px var(--cream); }
.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; }
.hero__lead { max-width: 38ch; font-size: clamp(1rem,1.5vw,1.3rem); line-height: 1.5; color: rgba(243,240,232,.94); }
.hero__scroll { display: flex; flex-direction: column; align-items: center; gap: .7rem; font-family: var(--font); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--cream); }
.hero__scroll-arrow { width: 1px; height: 46px; background: rgba(243,240,232,.45); position: relative; overflow: hidden; }
.hero__scroll-arrow::after { content: ''; position: absolute; inset: 0; background: var(--sage); transform: translateY(-100%); animation: scrolldown 2.2s var(--ease) infinite; }
@keyframes scrolldown { 0%{transform:translateY(-100%)} 50%{transform:translateY(0)} 100%{transform:translateY(100%)} }
@media (max-width: 640px) { .hero__bottom { flex-direction: column; align-items: flex-start; } .hero__scroll { flex-direction: row; align-self: flex-end; } .hero__scroll-arrow { width: 40px; height: 1px; } }

/* =============================================================
   Intro / manifesto
   ============================================================= */
.intro { position: relative; padding: clamp(7rem,18vh,13rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.intro__statement { font-family: var(--font); font-weight: 600; font-size: clamp(1.7rem,4.4vw,3.9rem); line-height: 1.16; letter-spacing: -0.025em; max-width: 20ch; margin: 1.6rem 0 0; }
.intro__statement .word__inner { opacity: 0.12; }
.intro__foot { display: flex; align-items: baseline; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.intro__quote { font-family: var(--font); font-weight: 500; font-style: italic; font-size: clamp(1.1rem,2vw,1.5rem); color: var(--accent); }
.intro__by { font-family: var(--font); font-weight: 600; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* =============================================================
   About (editorial / asymmetric)
   ============================================================= */
.about { position: relative; padding: clamp(3rem,7vh,6rem) var(--pad) clamp(5rem,10vh,9rem); max-width: var(--maxw); margin: 0 auto; }
.about__head { max-width: 60ch; margin-bottom: clamp(3rem,7vw,6rem); }
.about__heading { font-family: var(--font); font-weight: 600; font-size: clamp(1.7rem,3.4vw,3rem); line-height: 1.12; letter-spacing: -0.02em; margin-top: 1.4rem; }
.about__row { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem,3vw,3rem); align-items: center; }
.about__row + .about__row { margin-top: clamp(3rem,7vw,7rem); }
.about__media { grid-column: span 7; }
.about__media .media { aspect-ratio: 16/11; }
.about__media--small { grid-column: span 5; }
.about__media--small .media { aspect-ratio: 4/5; }
.about__copy { grid-column: span 5; display: flex; flex-direction: column; gap: 1.1rem; }
.about__copy--wide { grid-column: span 6; }
.about__row--reverse .about__media { order: 2; }
.about__num { font-family: var(--font); font-weight: 700; font-size: 13px; color: var(--accent); letter-spacing: .04em; }
.about__copy p { font-size: clamp(1rem,1.35vw,1.2rem); line-height: 1.6; color: var(--ink-2); max-width: 42ch; }
.about__copy em { font-style: italic; color: var(--ink); font-weight: 500; }
@media (max-width: 820px) {
  .about__row { grid-template-columns: 1fr; }
  .about__media, .about__media--small, .about__copy, .about__copy--wide { grid-column: 1 / -1; }
  .about__row--reverse .about__media { order: 0; }
}

/* =============================================================
   Stats (elevation profile)
   ============================================================= */
/* ---- By the Numbers: stylish stat cards w/ scroll highlight ---- */
.stats { position: relative; padding: clamp(5rem,11vh,9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; overflow: hidden; }
.stats__contour { position: absolute; left: -8%; bottom: -34%; width: 56vh; aspect-ratio: 1; color: var(--accent); opacity: .07; z-index: 0; }
.stats__contour svg { width: 100%; height: 100%; }
.stats__contour ellipse { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.stats__head { position: relative; z-index: 1; max-width: 30ch; margin-bottom: clamp(2.5rem,5vw,4rem); }
.stats__title { font-family: var(--font); font-weight: 700; font-size: clamp(1.8rem,3.4vw,3rem); letter-spacing: -0.025em; line-height: 1.08; margin-top: 1.1rem; }
.stats__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,1.6vw,1.4rem); }
.stat { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(1.5rem,2.2vw,2rem); border-radius: 22px; background: var(--paper-2); border: 1px solid var(--line); box-shadow: 0 1px 0 rgba(43,58,54,.04); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease); }
.stat__step { display: inline-flex; align-items: center; font-family: var(--font); font-weight: 600; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); background: rgba(62,111,94,.1); padding: .38rem .75rem; border-radius: 100px; margin-bottom: 1.3rem; transition: background .4s var(--ease); }
.stat__icon { width: 50px; height: 50px; color: var(--accent); margin-bottom: 1.2rem; border-radius: 14px; background: rgba(62,111,94,.1); display: grid; place-items: center; transition: transform .5s var(--ease), background .5s var(--ease), color .5s var(--ease); }
.stat__icon svg { width: 26px; height: 26px; display: block; }
.stat__icon svg :where(path,circle,line,polygon) { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.stat__icon svg .fill { fill: currentColor; stroke: none; }
.stat__num { display: flex; align-items: baseline; gap: .14em; font-family: var(--font); font-weight: 800; font-size: clamp(2.6rem,4.4vw,3.6rem); line-height: 1; letter-spacing: -0.04em; color: var(--ink); font-variant-numeric: tabular-nums; margin-bottom: .65rem; transition: color .4s var(--ease); }
.stat__num small { font-size: 0.36em; font-weight: 700; color: var(--accent); letter-spacing: 0; }
.stat__label { font-size: clamp(.9rem,1.05vw,1rem); color: var(--ink-2); line-height: 1.55; flex: 1; }
.stat__rule { align-self: stretch; height: 2px; margin-top: 1.3rem; border-radius: 2px; background: var(--line); position: relative; overflow: hidden; }
.stat__rule::after { content: ''; position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
/* highlight — scroll-driven .is-active (and hover) */
.stat.is-active { transform: translateY(-10px); background: var(--cream); border-color: rgba(62,111,94,.45); box-shadow: 0 34px 60px -30px rgba(43,58,54,.4); }
.stat.is-active .stat__icon { background: var(--accent); color: var(--cream); transform: scale(1.06) rotate(-4deg); }
.stat.is-active .stat__step { background: rgba(62,111,94,.18); }
.stat.is-active .stat__num { color: var(--accent); }
.stat.is-active .stat__rule::after { transform: scaleX(1); }
@media (max-width: 900px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats__grid { grid-template-columns: 1fr; } }

/* =============================================================
   Pillars (horizontal, dark)
   ============================================================= */
.pillars { position: relative; overflow: hidden; background: var(--dark); color: var(--cream); }
.pillars__contour { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 120vh; aspect-ratio: 1; color: var(--sage); opacity: .07; z-index: 0; }
.pillars__contour svg { width: 100%; height: 100%; }
.pillars__contour ellipse { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.pillars__track { position: relative; z-index: 1; display: flex; align-items: stretch; height: 100vh; height: 100dvh; will-change: transform; }
.panel { flex: 0 0 auto; height: 100%; padding: var(--pad); display: flex; flex-direction: column; justify-content: center; }
.pillars__intro { width: clamp(320px,42vw,640px); border-right: 1px solid var(--line-light); }
.pillars__title { font-family: var(--font); font-weight: 700; font-size: clamp(2.4rem,5.5vw,5rem); line-height: 0.98; letter-spacing: -0.03em; margin: 1.4rem 0; }
.pillars__hint { font-family: var(--font); font-weight: 600; font-size: 12px; letter-spacing: .04em; color: var(--sage); }
.pillar { width: clamp(340px,40vw,580px); border-right: 1px solid var(--line-light); justify-content: flex-end; gap: 1.1rem; position: relative; transition: background .5s var(--ease); }
.pillar:hover { background: rgba(243,240,232,.03); }
.pillar__index { position: absolute; top: var(--pad); left: var(--pad); font-family: var(--font); font-weight: 700; font-size: 12px; color: var(--cream-dim); }
.pillar__alt { position: absolute; top: var(--pad); right: var(--pad); font-family: var(--font); font-weight: 600; font-size: 11px; letter-spacing: .08em; color: var(--sage); }
.pillar__name { font-family: var(--font); font-weight: 700; font-size: clamp(2.2rem,6vw,4.4rem); letter-spacing: -0.03em; line-height: 1; transition: color .3s var(--ease); }
.pillar:hover .pillar__name { color: var(--sage); }
.pillar__desc { font-size: clamp(1rem,1.4vw,1.2rem); line-height: 1.55; color: var(--cream-dim); max-width: 34ch; }
.pillar__tag { font-family: var(--font); font-weight: 600; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--sage); }
@media (max-width: 860px) {
  .pillars__track { height: auto; flex-direction: column; }
  .panel { height: auto; min-height: 68vh; }
  .pillars__intro, .pillar { width: 100%; border-right: none; border-bottom: 1px solid var(--line-light); }
}

/* =============================================================
   People (staggered)
   ============================================================= */
.people { padding: clamp(5rem,11vh,9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.people__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: clamp(2.5rem,5vw,4rem); flex-wrap: wrap; }
.people__title { font-family: var(--font); font-weight: 700; font-size: clamp(2.2rem,5vw,4.4rem); line-height: 0.98; letter-spacing: -0.03em; margin-top: 1rem; }
.people__lead { max-width: 32ch; color: var(--ink-2); font-size: clamp(1rem,1.3vw,1.15rem); }
.people__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem,2.4vw,2rem) clamp(1.2rem,2vw,1.8rem); }
.person { display: flex; flex-direction: column; gap: .8rem; }
.person:nth-child(even) { margin-top: clamp(0px, 4vw, 3rem); }
.person__avatar { aspect-ratio: 4/5; border-radius: 16px; position: relative; overflow: hidden; display: grid; place-items: center; border: 1px solid var(--line); background: var(--paper-2); transition: background .5s var(--ease); }
.person:nth-child(3n+1) .person__avatar { background: linear-gradient(160deg, #DDE7E1, #CcdAd2); }
.person:nth-child(3n+2) .person__avatar { background: linear-gradient(160deg, #E0E4DE, #CFDAD9); }
.person:nth-child(3n) .person__avatar { background: linear-gradient(160deg, #E4E0D4, #D5CFC0); }
.person__avatar .p-contour { position: absolute; left: 50%; top: 54%; transform: translate(-50%,-50%); width: 150%; aspect-ratio: 1; color: var(--ink); opacity: .07; }
.person__avatar .p-contour ellipse { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.avatar { position: relative; width: 52%; color: var(--ink-2); transition: transform .6s var(--ease), color .4s var(--ease); }
.avatar path, .avatar circle { fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.person:hover .person__avatar { background: linear-gradient(160deg, var(--sage), var(--accent)); }
.person:hover .avatar { color: var(--cream); transform: translateY(-4px); }
.person__name { font-family: var(--font); font-weight: 700; font-size: clamp(1.1rem,1.5vw,1.4rem); letter-spacing: -0.01em; }
.person__role { font-family: var(--font); font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
@media (max-width: 820px) { .people__grid { grid-template-columns: repeat(2, 1fr); } }

/* =============================================================
   Journal (editorial: feature + list)
   ============================================================= */
.journal { padding: clamp(5rem,11vh,9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.journal__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: clamp(2.5rem,5vw,4rem); flex-wrap: wrap; }
.journal__title { font-family: var(--font); font-weight: 700; font-size: clamp(2.2rem,5vw,4.4rem); line-height: 0.98; letter-spacing: -0.03em; margin-top: 1rem; }
.journal__all { font-family: var(--font); font-weight: 600; font-size: 13px; border: 1px solid var(--ink); border-radius: 100px; padding: .65rem 1.35rem; transition: background .35s var(--ease), color .35s var(--ease); }
.journal__all:hover { background: var(--ink); color: var(--paper); }
.journal__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(2rem,4vw,4.5rem); align-items: start; }
.journal__feature .media { aspect-ratio: 5/4; margin-bottom: 1.4rem; }
.journal__feature .feature__title { font-family: var(--font); font-weight: 700; font-size: clamp(1.5rem,2.6vw,2.4rem); line-height: 1.1; letter-spacing: -0.02em; max-width: 18ch; transition: color .3s var(--ease); }
.journal__feature:hover .feature__title { color: var(--accent); }
.feature__meta, .entry__meta { display: flex; gap: 1.2rem; font-family: var(--font); font-weight: 600; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.journal__list { display: flex; flex-direction: column; }
.entry { display: grid; grid-template-columns: 88px 1fr; gap: 1.2rem; padding: 1.5rem 0; border-top: 1px solid var(--line); align-items: center; transition: padding-left .4s var(--ease); }
.entry:last-child { border-bottom: 1px solid var(--line); }
.entry:hover { padding-left: .6rem; }
.entry__thumb { aspect-ratio: 1; border-radius: 10px; }
.entry__body { display: flex; flex-direction: column; gap: .5rem; }
.entry__title { font-family: var(--font); font-weight: 600; font-size: clamp(1.05rem,1.6vw,1.35rem); line-height: 1.15; letter-spacing: -0.01em; transition: color .3s var(--ease); }
.entry:hover .entry__title { color: var(--accent); }
.entry__arrow { justify-self: end; color: var(--muted); opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s; }
.entry:hover .entry__arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 820px) { .journal__grid { grid-template-columns: 1fr; } }

/* =============================================================
   CTA (Start the climb)
   ============================================================= */
.cta { position: relative; padding: clamp(6rem,15vh,12rem) var(--pad); text-align: center; overflow: hidden; color: var(--cream); background: var(--dark); }
.cta__contour { position: absolute; left: 50%; top: 60%; transform: translate(-50%,-50%); width: 150vh; aspect-ratio: 1; color: var(--sage); opacity: .1; }
.cta__contour svg { width: 100%; height: 100%; }
.cta__contour ellipse { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.cta__flag { position: relative; z-index: 1; display: inline-flex; margin-bottom: 1.4rem; color: var(--sage); }
.cta .field-label { justify-content: center; color: var(--cream-dim); position: relative; z-index: 1; }
.cta .field-label::before { background: var(--sage); }
.cta__title { position: relative; z-index: 1; font-family: var(--font); font-weight: 800; font-size: clamp(3rem,10vw,8.5rem); line-height: 0.92; letter-spacing: -0.045em; margin: 1.2rem 0; }
.cta__lead { position: relative; z-index: 1; max-width: 44ch; margin: 0 auto 2.6rem; font-size: clamp(1rem,1.5vw,1.25rem); color: var(--cream-dim); }
.cta__form { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
.cta__field { display: flex; gap: .5rem; border-bottom: 1.5px solid var(--cream); padding-bottom: .8rem; align-items: center; }
.cta__field input { flex: 1; background: none; border: none; outline: none; color: var(--cream); font-family: var(--font); font-weight: 500; font-size: clamp(1.05rem,2.2vw,1.5rem); cursor: none; }
.cta__field input::placeholder { color: rgba(243,240,232,.55); }
.cta__submit { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font); font-weight: 600; font-size: 14px; padding: .7rem 1.4rem; border: 1px solid var(--cream); border-radius: 100px; white-space: nowrap; transition: background .35s var(--ease), color .35s var(--ease); }
.cta__submit:hover { background: var(--cream); color: var(--dark); }
.cta__msg { position: relative; z-index: 1; margin-top: 1.2rem; font-family: var(--font); font-weight: 500; font-size: 13px; color: var(--sage); min-height: 1.2em; }
@media (max-width: 540px) { .cta__field { flex-direction: column; align-items: stretch; border: none; gap: 1rem; } .cta__field input { border-bottom: 1.5px solid var(--cream); padding-bottom: .6rem; } }

/* =============================================================
   Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding: clamp(3rem,6vw,5rem) var(--pad) 2rem; overflow: hidden; background: var(--paper-2); }
.footer__top { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: clamp(3rem,8vw,5rem); }
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__col a { color: var(--ink-2); font-size: 15px; width: fit-content; transition: color .3s var(--ease); display: inline-flex; align-items: center; gap: .55rem; }
.footer__col a:hover { color: var(--accent); }
.footer__label { font-family: var(--font); font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: .4rem; }
.footer__col--help p { font-size: 13px; color: var(--muted); max-width: 30ch; margin-top: .4rem; }
.footer__help { font-family: var(--font); font-weight: 600; font-size: clamp(1.2rem,2vw,1.55rem); color: var(--accent) !important; }
.footer__mark { text-align: center; line-height: 0.8; padding: 1rem 0; }
.footer__mark-text { font-family: var(--font); font-weight: 800; font-size: clamp(3.5rem,22vw,21rem); letter-spacing: -0.045em; color: transparent; -webkit-text-stroke: 1px var(--line); display: inline-block; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.5rem; font-family: var(--font); font-weight: 500; font-size: 12.5px; color: var(--muted); }
.footer__top-link { transition: color .3s var(--ease); }
.footer__top-link:hover { color: var(--accent); }
@media (max-width: 700px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__col--help { grid-column: 1 / -1; } }

/* =============================================================
   Reveal helpers / reduced motion
   ============================================================= */
.word, .char { display: inline-block; overflow: hidden; vertical-align: top; }
.word__inner, .char__inner, .reveal-word { display: inline-block; will-change: transform; }
[data-clip] { clip-path: inset(0 0 100% 0); }

/* =============================================================
   Detail pages (journal entry / team member / journal index)
   ============================================================= */
.doc-page { opacity: 0; transition: opacity .6s var(--ease); cursor: auto; }
.doc-page.is-in { opacity: 1; }
.dochead { display: flex; justify-content: space-between; align-items: center; padding: clamp(1rem,2.2vw,1.5rem) var(--pad); border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--paper); z-index: 10; }
.dochead__logo { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font); font-weight: 700; letter-spacing: .02em; font-size: 1.05rem; color: var(--ink); }
.dochead__mark { width: 22px; height: 22px; color: var(--accent); display: inline-block; }
.dochead__mark svg { width: 100%; height: 100%; }
.dochead__back { font-family: var(--font); font-weight: 600; font-size: 13px; color: var(--muted); transition: color .3s var(--ease); }
.dochead__back:hover { color: var(--accent); }
.doc { max-width: 760px; margin: 0 auto; padding: clamp(2.5rem,6vh,4.5rem) var(--pad) clamp(5rem,10vh,8rem); }
.doc--index { max-width: var(--maxw); }
.doc__back { display: inline-block; font-family: var(--font); font-weight: 600; font-size: 13px; color: var(--accent); margin-bottom: 2rem; }
.doc__back:hover { text-decoration: underline; }
.doc__meta { display: flex; gap: 1.2rem; font-family: var(--font); font-weight: 600; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.doc__title { font-family: var(--font); font-weight: 800; font-size: clamp(2rem,5vw,3.6rem); line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 2rem; }
.doc__hero { aspect-ratio: 16/9; margin-bottom: 2.6rem; }
.doc__body { font-size: clamp(1.05rem,1.4vw,1.2rem); line-height: 1.75; color: var(--ink-2); }
.doc__body p + p { margin-top: 1.4rem; }
.doc__foot { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.doc__foot p { font-family: var(--font); font-weight: 600; color: var(--ink); }
.doc__cta { font-family: var(--font); font-weight: 600; font-size: 14px; padding: .72rem 1.45rem; border: 1px solid var(--ink); border-radius: 100px; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.doc__cta:hover { background: var(--accent); border-color: var(--accent); color: var(--cream); }
.person-doc { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.person-doc__avatar { aspect-ratio: 4/5; border-radius: 22px; background: linear-gradient(160deg, var(--sage), var(--accent)); display: grid; place-items: center; }
.person-doc__avatar svg { width: 54%; color: var(--cream); }
.person-doc__avatar svg :where(path,circle) { fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.person-doc .doc__meta { color: var(--accent); }
.person-doc .doc__title { margin-bottom: 1.4rem; }
.person-doc .doc__cta { margin-top: 2rem; display: inline-block; }
.doc--index .journal__list { margin-top: clamp(2rem,4vw,3rem); }
@media (max-width: 640px) { .person-doc { grid-template-columns: 1fr; } .person-doc__avatar { max-width: 200px; } }

/* =============================================================
   In-page detail overlay (journal / team)
   ============================================================= */
.overlay { position: fixed; inset: 0; z-index: 78; visibility: hidden; }
.overlay.is-open { visibility: visible; }
.overlay__backdrop { position: absolute; inset: 0; background: rgba(20,30,28,.55); opacity: 0; transition: opacity .4s var(--ease); cursor: pointer; }
.overlay.is-open .overlay__backdrop { opacity: 1; }
.overlay__panel { position: absolute; left: 50%; top: clamp(70px, 9vh, 104px); transform: translate(-50%, 28px); width: min(820px, 94vw); max-height: calc(100dvh - clamp(70px,9vh,104px) - 1.2rem); background: var(--paper); border-radius: 24px; box-shadow: 0 40px 90px -28px rgba(20,30,28,.5); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transition: opacity .45s var(--ease), transform .45s var(--ease); }
.overlay.is-open .overlay__panel { opacity: 1; transform: translate(-50%, 0); }
.overlay__bar { display: flex; justify-content: flex-end; padding: 1rem 1rem .3rem; flex: 0 0 auto; }
.overlay__close { font-family: var(--font); font-weight: 600; font-size: 13px; padding: .5rem 1.1rem; border: 1px solid var(--line); border-radius: 100px; background: var(--paper-2); color: var(--ink); transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.overlay__close:hover { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.overlay__content { overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 0 clamp(1.5rem,4vw,3.4rem) clamp(2.5rem,5vw,3.5rem); }
.overlay__content .doc__title { margin-bottom: 1.6rem; }
.overlay__content .doc__hero { aspect-ratio: 16/9; margin-bottom: 2.2rem; }

/* =============================================================
   Mini-game: build a cairn
   ============================================================= */
.game { position: relative; padding: clamp(5rem,11vh,9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.game__head { max-width: 52ch; margin-bottom: clamp(2rem,4vw,3rem); }
.game__title { font-family: var(--font); font-weight: 700; font-size: clamp(1.8rem,3.4vw,3rem); letter-spacing: -0.025em; line-height: 1.08; margin: 1.1rem 0 .8rem; }
.game__sub { color: var(--ink-2); font-size: clamp(1rem,1.2vw,1.15rem); line-height: 1.6; max-width: 58ch; }
.game__stage { position: relative; border-radius: 24px; overflow: hidden; background: linear-gradient(180deg, #DDE7E1, #CFDCD5); border: 1px solid var(--line); aspect-ratio: 16/9; max-height: 72vh; }
.game__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; cursor: pointer; touch-action: manipulation; }
.game__hud { position: absolute; top: 1rem; left: 1.3rem; pointer-events: none; }
.game__score { display: block; font-family: var(--font); font-weight: 800; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.game__best { font-family: var(--font); font-weight: 600; font-size: 12px; letter-spacing: .04em; color: var(--accent); }
.game__hint { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); font-family: var(--font); font-weight: 600; font-size: 12px; letter-spacing: .03em; color: var(--ink-2); background: rgba(243,240,232,.8); padding: .42rem .95rem; border-radius: 100px; pointer-events: none; transition: opacity .4s var(--ease); white-space: nowrap; }
.game__over { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 1.1rem; text-align: center; background: rgba(20,30,28,.5); color: var(--cream); z-index: 2; }
.game__over[hidden] { display: none; }
.game__over p { font-family: var(--font); font-weight: 700; font-size: clamp(1.3rem,3vw,1.9rem); }
.game__btn { font-family: var(--font); font-weight: 600; font-size: 14px; padding: .85rem 1.8rem; border-radius: 100px; background: var(--cream); color: var(--ink); border: none; box-shadow: 0 12px 30px -12px rgba(20,30,28,.5); transition: transform .3s var(--ease); }
.game__btn:hover { transform: translateY(-2px); }
.game__start { position: absolute; inset: 0; display: grid; place-content: center; z-index: 4; background: rgba(20,30,28,.28); }
.game__start[hidden] { display: none; }
/* ---- The great peaks: interactive photo album ---- */
.album { position: relative; padding: clamp(5rem,11vh,9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.album__head { max-width: 52ch; margin-bottom: clamp(2rem,4vw,3rem); }
.album__title { font-family: var(--font); font-weight: 700; font-size: clamp(1.8rem,3.4vw,3rem); letter-spacing: -0.025em; line-height: 1.08; margin: 1.1rem 0 .8rem; }
.album__sub { color: var(--ink-2); font-size: clamp(1rem,1.2vw,1.15rem); line-height: 1.6; }
.album__stage { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16/9; max-height: 78vh; background: var(--dark); box-shadow: 0 40px 80px -40px rgba(20,30,28,.5); }
@media (max-width: 700px) { .album__stage { aspect-ratio: 4/5; } }
.album__viewer { position: absolute; inset: 0; }
.album__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s var(--ease); will-change: opacity; }
.album__img.is-active { opacity: 1; }
.album__img.is-active.kb { animation: kenburns 13s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.15); } }
.album__grad { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(18,26,24,.82), rgba(18,26,24,.15) 42%, transparent 62%), linear-gradient(90deg, rgba(18,26,24,.45), transparent 42%); }
.album__info { position: absolute; left: clamp(1.2rem,3vw,2.8rem); bottom: clamp(4.6rem,9vw,6rem); z-index: 2; max-width: 42ch; color: var(--cream); }
.album__count { font-family: var(--font); font-weight: 600; font-size: 12px; letter-spacing: .16em; color: rgba(243,240,232,.8); }
.album__name { font-family: var(--font); font-weight: 800; font-size: clamp(2rem,5vw,3.6rem); line-height: 1; letter-spacing: -0.03em; margin: .4rem 0 .55rem; text-shadow: 0 2px 26px rgba(18,26,24,.55); }
.album__meta { font-family: var(--font); font-weight: 600; font-size: clamp(.85rem,1.3vw,1rem); color: var(--sage); }
.album__blurb { margin-top: .7rem; font-size: clamp(.95rem,1.3vw,1.1rem); line-height: 1.5; color: rgba(243,240,232,.92); }
.album__credit { display: block; margin-top: .85rem; font-family: var(--font); font-weight: 500; font-size: 10.5px; letter-spacing: .02em; color: rgba(243,240,232,.55); }
.album__arrow { position: absolute; top: 42%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(243,240,232,.4); background: rgba(18,26,24,.32); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: var(--cream); font-size: 17px; display: grid; place-items: center; transition: background .3s var(--ease), border-color .3s var(--ease); }
.album__arrow:hover { background: rgba(18,26,24,.55); border-color: var(--cream); }
.album__arrow--prev { left: 1rem; } .album__arrow--next { right: 1rem; }
.album__rail { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: flex; gap: .5rem; padding: .7rem clamp(1rem,3vw,1.6rem); overflow-x: auto; background: linear-gradient(to top, rgba(18,26,24,.6), transparent); scrollbar-width: none; }
.album__rail::-webkit-scrollbar { display: none; }
.album__thumb { flex: 0 0 auto; width: 76px; height: 50px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; opacity: .55; padding: 0; background: none; transition: opacity .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.album__thumb img { width: 100%; height: 100%; object-fit: cover; }
.album__thumb:hover { opacity: .85; }
.album__thumb.is-active { opacity: 1; border-color: var(--cream); transform: translateY(-2px); }
@media (max-width: 700px) { .game__stage { aspect-ratio: 3/4; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .char__inner, .word__inner, .reveal-word { transform: none !important; opacity: 1 !important; }
  [data-clip] { clip-path: none !important; }
}
