/* =========================================================================
   DEFINE HANGANG — Cinematic Opening  ·  styles
   ========================================================================= */

html, body, #root {
  margin: 0; padding: 0;
  height: 100%; width: 100%;
  background: #000;
  color: #fff;
  font-family: var(--font-sans);
  overflow: hidden;                  /* scroll-locked — we drive stage advance */
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: border-box; }
img, svg { display: block; max-width: 100%; }
button { border: 0; background: transparent; cursor: pointer; font: inherit; color: inherit; }

/* =========================================================================
   STAGE ROOT
   ========================================================================= */
.hg-stage {
  position: fixed; inset: 0;
  background: #000;
  overflow: hidden;
  --accent: #b79a7d;
  --speed: 1;
}

/* each stage layer is fixed, fades/clips in on active */
.hg-layer {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity calc(1.2s * var(--speed)) cubic-bezier(.6,0,.2,1),
              visibility 0s linear calc(1.2s * var(--speed));
}
.hg-layer.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity calc(1.2s * var(--speed)) cubic-bezier(.6,0,.2,1),
              visibility 0s linear 0s;
}

/* =========================================================================
   CHROME  — fixed UI that persists across stages
   ========================================================================= */
.hg-chrome-top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 44px;
  pointer-events: none;
}
.hg-chrome-top > * { pointer-events: auto; }

.hg-brandmark {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.34em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.hg-brandmark::before {
  content: ''; width: 6px; height: 6px; background: var(--accent);
  display: inline-block;
}

.hg-chrome-right {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--font-latin); font-size: 11px; letter-spacing: 0.24em;
  color: rgba(255,255,255,.7); text-transform: uppercase;
}
.hg-chrome-right .divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* sound toggle */
.hg-sound {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-latin); font-size: 10px; letter-spacing: 0.28em;
  color: rgba(255,255,255,.75);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.22);
  text-transform: uppercase;
  transition: all .4s;
}
.hg-sound:hover { border-color: var(--accent); color: #fff; }
.hg-sound .sw {
  display: inline-flex; gap: 2px; align-items: flex-end;
  height: 10px; width: 14px;
}
.hg-sound .sw i {
  display: block; width: 2px; background: currentColor;
  animation: bars 1.1s ease-in-out infinite;
}
.hg-sound .sw i:nth-child(1){ height: 30%; animation-delay: 0s;}
.hg-sound .sw i:nth-child(2){ height: 70%; animation-delay: .15s;}
.hg-sound .sw i:nth-child(3){ height: 50%; animation-delay: .3s;}
.hg-sound .sw i:nth-child(4){ height: 90%; animation-delay: .45s;}
.hg-sound.off .sw i { animation: none; height: 30%; }
@keyframes bars { 0%,100%{ transform: scaleY(.4);} 50%{ transform: scaleY(1);} }

/* bottom chrome — stage rail + copyright */
.hg-chrome-bot {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 20px 44px 26px;
  pointer-events: none;
}
.hg-chrome-bot > * { pointer-events: auto; }

.hg-stage-rail {
  display: flex; gap: 4px; align-items: center;
  font-family: var(--font-latin); font-size: 10px; letter-spacing: .28em;
  color: rgba(255,255,255,.5); text-transform: uppercase;
}
.hg-stage-rail .labels { display: flex; gap: 22px; }
.hg-stage-rail .lbl {
  cursor: pointer;
  transition: color .3s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.hg-stage-rail .lbl.active { color: #fff; border-bottom-color: var(--accent); }
.hg-stage-rail .lbl:hover { color: rgba(255,255,255,.9); }

.hg-progress {
  position: fixed; left: 0; right: 0; bottom: 0; height: 1.5px;
  z-index: 60; background: rgba(255,255,255,.08);
  pointer-events: none;
}
.hg-progress::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--pct, 0%); background: var(--accent);
  transition: width .6s cubic-bezier(.6,0,.2,1);
}

.hg-counter {
  font-family: var(--font-latin); font-size: 10px; letter-spacing: .3em;
  color: rgba(255,255,255,.45); text-transform: uppercase;
}
.hg-counter b { color: #fff; font-weight: 600; }

.hg-scroll-hint {
  position: fixed; left: 50%; bottom: 48px; transform: translateX(-50%);
  z-index: 55; pointer-events: none;
  font-family: var(--font-latin); font-size: 10px; letter-spacing: .4em;
  color: rgba(255,255,255,.6); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; transition: opacity .6s ease .4s;
}
.hg-scroll-hint.visible { opacity: 1; }
.hg-scroll-hint::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,0));
  animation: drop 2.2s cubic-bezier(.6,0,.2,1) infinite;
}
@keyframes drop {
  0%   { height: 0;    opacity: 0; transform: translateY(0); }
  40%  { height: 40px; opacity: 1; }
  100% { height: 40px; opacity: 0; transform: translateY(14px); }
}

/* =========================================================================
   STAGE 0 — VEIL  (black with vertical slit)
   ========================================================================= */
.hg-veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 60%, #0d0704 0%, #000 70%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 44px;
}
.hg-slit {
  position: relative;
  width: 1px; height: 46vh;
  background: linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(183,154,125,.95) 12%,
    rgba(255,235,210,1) 50%,
    rgba(183,154,125,.95) 88%,
    rgba(255,255,255,0) 100%);
  box-shadow:
    0 0 12px rgba(183,154,125,.85),
    0 0 48px rgba(183,154,125,.45),
    0 0 120px rgba(183,154,125,.25);
  animation: slitPulse 4s ease-in-out infinite;
}
.hg-slit::before, .hg-slit::after {
  content: ''; position: absolute;
  width: 160px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,154,125,.3) 50%, transparent);
  top: 50%;
}
.hg-slit::before { right: 100%; }
.hg-slit::after  { left: 100%; }

@keyframes slitPulse {
  0%,100% { opacity: .85; filter: blur(0); }
  50%     { opacity: 1;   filter: blur(.3px); }
}

.hg-veil-copy {
  position: absolute; left: 0; right: 0; bottom: 18vh;
  text-align: center;
  display: flex; flex-direction: column; gap: 26px; align-items: center;
}
.hg-veil-copy .eyebrow {
  font-family: var(--font-latin); font-size: 10px; letter-spacing: .5em;
  color: rgba(183,154,125,.85); text-transform: uppercase;
  opacity: 0; animation: fadeUp 1.6s cubic-bezier(.6,0,.2,1) .8s forwards;
}
.hg-veil-copy .title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 13px; letter-spacing: .7em;
  color: rgba(255,255,255,.88);
  text-transform: uppercase;
  opacity: 0; animation: fadeUp 1.6s cubic-bezier(.6,0,.2,1) 1.3s forwards;
}
.hg-enter-btn {
  margin-top: 10px;
  font-family: var(--font-latin); font-size: 10px; letter-spacing: .4em;
  color: #fff; text-transform: uppercase;
  padding: 14px 38px;
  border: 1px solid rgba(255,255,255,.35);
  transition: all .5s cubic-bezier(.6,0,.2,1);
  opacity: 0; animation: fadeUp 1.6s cubic-bezier(.6,0,.2,1) 1.9s forwards;
  position: relative; overflow: hidden;
}
.hg-enter-btn:hover {
  border-color: var(--accent);
  background: rgba(183,154,125,.12);
  letter-spacing: .48em;
}
.hg-enter-btn::after {
  content: ''; position: absolute; left: 50%; top: 100%;
  width: 1px; height: 32px; background: rgba(255,255,255,.3);
  transform: translateX(-50%);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   STAGE 1 — REVEAL  (slit opens, image appears)
   ========================================================================= */
.hg-reveal-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  transform: scale(1.06);
  clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  transition:
    clip-path calc(2.4s * var(--speed)) cubic-bezier(.6,0,.2,1),
    transform calc(6s * var(--speed)) cubic-bezier(.6,0,.2,1);
}
.hg-reveal.is-active .hg-reveal-bg {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: scale(1.02);
}
.hg-reveal-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 140% 100% at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 70%),
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.5) 100%);
}
.hg-reveal-copy {
  position: absolute; left: 0; right: 0; bottom: 22vh;
  text-align: center;
  display: flex; flex-direction: column; gap: 22px; align-items: center;
  opacity: 0;
  transition: opacity 1.4s ease calc(1.6s * var(--speed));
}
.hg-reveal.is-active .hg-reveal-copy { opacity: 1; }
.hg-reveal-copy .mood {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 22px; line-height: 1.7; color: rgba(255,255,255,.92);
  letter-spacing: .02em;
  text-shadow: 0 0 20px rgba(0,0,0,.6);
}
.hg-reveal-copy .mood em {
  font-style: normal; color: var(--accent);
}

/* =========================================================================
   STAGE 2 — TYPOGRAPHY  (letters assemble into wordmark)
   ========================================================================= */
.hg-typo {
  background: radial-gradient(ellipse 80% 60% at 50% 55%, rgba(30,20,12,1) 0%, #000 80%);
}
.hg-typo-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 30px;
}
.hg-typo-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  filter: drop-shadow(0 0 30px rgba(183,154,125,.15));
}
.hg-typo-word .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(var(--ty, -60px)) translateX(var(--tx, 0)) rotate(var(--rot, 0deg));
  transition:
    opacity calc(1.1s * var(--speed)) cubic-bezier(.6,0,.2,1),
    transform calc(1.4s * var(--speed)) cubic-bezier(.6,0,.2,1);
  transition-delay: var(--dly, 0s);
}
.hg-typo.is-active .hg-typo-word .ltr {
  opacity: 1;
  transform: translateY(0) translateX(0) rotate(0deg);
}
.hg-typo-word .space { width: .4em; }

.hg-typo-subline {
  font-family: var(--font-latin); font-size: 11px; letter-spacing: .5em;
  color: var(--accent); text-transform: uppercase;
  opacity: 0;
  transition: opacity 1.2s ease calc(1.6s * var(--speed));
}
.hg-typo.is-active .hg-typo-subline { opacity: 1; }

.hg-typo-underline {
  width: 0; height: 1px; background: var(--accent);
  transition: width calc(1.6s * var(--speed)) cubic-bezier(.6,0,.2,1) calc(1.8s * var(--speed));
}
.hg-typo.is-active .hg-typo-underline { width: 180px; }

/* background "ghost letters" that settle behind the wordmark */
.hg-typo-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(180px, 32vw, 520px);
  letter-spacing: 0;
  color: rgba(183,154,125,.055);
  text-transform: uppercase;
  pointer-events: none;
  transform: scale(1.15);
  opacity: 0;
  transition: all 2.6s cubic-bezier(.6,0,.2,1);
}
.hg-typo.is-active .hg-typo-bg { opacity: 1; transform: scale(1); }

/* =========================================================================
   STAGE 3 — TOWER  (3D rotating mass + skyline parallax)
   ========================================================================= */
.hg-tower {
  background: linear-gradient(180deg, #0a0704 0%, #1a1108 40%, #2a1d10 100%);
  perspective: 1800px;
  perspective-origin: 50% 45%;
}
.hg-skyline {
  position: absolute; left: -5%; right: -5%; bottom: 0;
  height: 48%;
  background: url('assets/img/skyline.jpg') center bottom / cover no-repeat;
  filter: grayscale(.5) brightness(.55) contrast(1.15) sepia(.2);
  opacity: 0;
  transform: translateY(40px);
  transition: all calc(2.2s * var(--speed)) cubic-bezier(.6,0,.2,1);
}
.hg-tower.is-active .hg-skyline { opacity: .55; transform: translateY(0); }
.hg-skyline::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,7,4,1) 0%,
    rgba(10,7,4,.5) 30%,
    rgba(10,7,4,0) 60%,
    rgba(10,7,4,.8) 100%);
}

/* sun / haze disc behind tower */
.hg-haze {
  position: absolute; left: 50%; top: 48%;
  width: 520px; height: 520px;
  margin: -260px 0 0 -260px;
  background: radial-gradient(circle, rgba(215,180,140,.55) 0%, rgba(183,154,125,.2) 30%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.8);
  transition: all calc(3s * var(--speed)) cubic-bezier(.6,0,.2,1);
  filter: blur(6px);
}
.hg-tower.is-active .hg-haze { opacity: 1; transform: scale(1); }

/* photographic tower — replaces SVG */
.hg-tower-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 0 2vh;
}
.hg-tower-photo {
  position: relative;
  height: 90vh;
  max-width: 56vw;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity calc(1.6s * var(--speed)) ease calc(.4s * var(--speed)),
    transform calc(2.6s * var(--speed)) cubic-bezier(.6,0,.2,1) calc(.4s * var(--speed));
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7));
}
.hg-tower.is-active .hg-tower-photo {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hg-tower-photo img {
  height: 100%; width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter:
    contrast(1.08)
    brightness(0.92)
    saturate(0.85)
    drop-shadow(0 25px 50px rgba(0,0,0,0.55))
    drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

/* tower copy — appears right of tower */
.hg-tower-copy {
  position: absolute; right: 10vw; top: 50%; transform: translateY(-50%);
  text-align: right;
  opacity: 0;
  transition: opacity 1.5s ease calc(1.8s * var(--speed)),
              transform 1.5s cubic-bezier(.6,0,.2,1) calc(1.8s * var(--speed));
  transform: translate(30px, -50%);
  max-width: 380px;
}
.hg-tower.is-active .hg-tower-copy {
  opacity: 1; transform: translate(0, -50%);
}
.hg-tower-copy .eyebrow {
  font-family: var(--font-latin); font-size: 10px; letter-spacing: .4em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 16px; display: block;
}
.hg-tower-copy h2 {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.4vw, 62px); line-height: .95;
  color: #fff; letter-spacing: -.005em;
}
.hg-tower-copy h2 em {
  font-style: normal; color: var(--accent);
}
.hg-tower-copy p {
  margin: 22px 0 0;
  font-family: var(--font-serif); font-weight: 400;
  font-size: 15px; line-height: 1.9;
  color: rgba(255,255,255,.7);
}
.hg-tower-copy .coord {
  margin-top: 28px;
  font-family: var(--font-latin); font-size: 10px; letter-spacing: .28em;
  color: rgba(255,255,255,.4); text-transform: uppercase;
  display: flex; justify-content: flex-end; gap: 18px;
}
.hg-tower-copy .coord span::before { content: '·'; margin-right: 10px; color: var(--accent); }
.hg-tower-copy .coord span:first-child::before { display: none; }

/* =========================================================================
   STAGE 4 — NUMBERS  (final hero with counters)
   ========================================================================= */
.hg-numbers {
  background: #000;
}
.hg-numbers-bg {
  position: absolute; inset: 0;
  background: url('assets/img/tower.jpg') center/cover no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity calc(2s * var(--speed)) ease,
              transform calc(10s * var(--speed)) cubic-bezier(.6,0,.2,1);
}
.hg-numbers.is-active .hg-numbers-bg { opacity: .65; transform: scale(1); }
.hg-numbers-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 30%, rgba(0,0,0,.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 60%);
}

.hg-numbers-copy {
  position: absolute; left: 7vw; top: 50%; transform: translateY(-50%);
  max-width: 620px;
  opacity: 0;
  transition: opacity 1.4s ease calc(.8s * var(--speed)),
              transform 1.4s cubic-bezier(.6,0,.2,1) calc(.8s * var(--speed));
  transform: translate(-20px, -50%);
}
.hg-numbers.is-active .hg-numbers-copy { opacity: 1; transform: translate(0, -50%); }
.hg-numbers-copy .kicker {
  font-family: var(--font-latin); font-size: 10px; letter-spacing: .4em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 22px; display: flex; align-items: center; gap: 12px;
}
.hg-numbers-copy .kicker::before {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
.hg-numbers-copy h1 {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(42px, 5.6vw, 84px); line-height: .95;
  color: #fff; letter-spacing: -.01em;
}
.hg-numbers-copy .lede {
  margin: 26px 0 0;
  font-family: var(--font-serif); font-weight: 400;
  font-size: 16px; line-height: 2;
  color: rgba(255,255,255,.78);
  max-width: 480px;
}

/* counter rail — bottom */
.hg-counters {
  position: absolute; left: 0; right: 0; bottom: 110px;
  display: flex; gap: 0;
  padding: 0 7vw;
  opacity: 0;
  transition: opacity 1.4s ease calc(1.6s * var(--speed));
}
.hg-numbers.is-active .hg-counters { opacity: 1; }

.hg-counter-cell {
  flex: 1;
  padding: 24px 28px;
  border-left: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; gap: 8px;
}
.hg-counter-cell:first-child { border-left: 0; padding-left: 0; }
.hg-counter-cell .lbl {
  font-family: var(--font-latin); font-size: 10px; letter-spacing: .32em;
  color: rgba(255,255,255,.55); text-transform: uppercase;
}
.hg-counter-cell .big {
  font-family: var(--font-latin); font-weight: 600;
  font-size: clamp(34px, 4vw, 54px); line-height: 1;
  color: #fff; letter-spacing: -.01em;
  display: flex; align-items: baseline; gap: 4px;
}
.hg-counter-cell .big .unit {
  font-size: .38em; font-weight: 400; color: var(--accent);
  letter-spacing: .1em; margin-left: 4px;
}
.hg-counter-cell .sub {
  font-family: var(--font-sans); font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* CTA */
.hg-cta-row {
  display: flex; gap: 12px;
  margin-top: 42px;
}
.hg-cta {
  font-family: var(--font-latin); font-size: 11px; letter-spacing: .34em;
  color: #fff; text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,.3);
  transition: all .4s cubic-bezier(.6,0,.2,1);
  display: inline-flex; align-items: center; gap: 14px;
}
.hg-cta.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1108;
}
.hg-cta:hover {
  background: #fff; color: #1a1108; border-color: #fff;
  letter-spacing: .42em;
}
.hg-cta.primary:hover { background: #fff; }
.hg-cta .arrow {
  width: 16px; height: 1px; background: currentColor; position: relative;
  transition: width .4s;
}
.hg-cta .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.hg-cta:hover .arrow { width: 24px; }

/* =========================================================================
   PARTICLES (canvas)
   ========================================================================= */
.hg-particles {
  position: fixed; inset: 0; pointer-events: none;
  z-index: 40; mix-blend-mode: screen;
}

/* cursor dot */
.hg-cursor {
  position: fixed; top: 0; left: 0; z-index: 70; pointer-events: none;
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
  mix-blend-mode: difference;
}
.hg-cursor.on-button {
  width: 56px; height: 56px;
  border-color: var(--accent);
}
.hg-cursor::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 3px; height: 3px; border-radius: 50%;
  background: #fff;
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .hg-layer, .hg-reveal-bg, .hg-tower-3d, .hg-typo-word .ltr,
  .hg-numbers-bg, .hg-skyline, .hg-haze {
    transition-duration: .4s !important;
    animation: none !important;
  }
}

/* =========================================================================
   MOBILE
   ========================================================================= */
@media (max-width: 720px) {
  .hg-chrome-top, .hg-chrome-bot { padding: 18px 22px; }
  .hg-chrome-right { gap: 10px; }
  .hg-chrome-right .divider, .hg-chrome-right .lang { display: none; }
  .hg-veil-copy { bottom: 12vh; padding: 0 20px; }
  .hg-veil-copy .title { font-size: 11px; letter-spacing: .5em; }
  .hg-reveal-copy { padding: 0 20px; bottom: 18vh; }
  .hg-reveal-copy .mood { font-size: 16px; }
  .hg-typo-word { font-size: 44px; letter-spacing: .04em; }
  .hg-tower-copy {
    right: 0; left: 0; top: auto; bottom: 18vh; transform: none;
    padding: 0 24px; text-align: left;
  }
  .hg-tower.is-active .hg-tower-copy { transform: none; }
  .hg-tower-copy .coord { justify-content: flex-start; }
  .hg-tower-photo { height: 60vh; }
  .hg-numbers-copy { left: 22px; right: 22px; max-width: none; top: 28%; transform: none; }
  .hg-numbers.is-active .hg-numbers-copy { transform: none; }
  .hg-numbers-copy h1 { font-size: 40px; }
  .hg-numbers-copy .lede { font-size: 14px; }
  .hg-counters { bottom: 90px; padding: 0 22px; flex-wrap: wrap; }
  .hg-counter-cell { flex: 1 1 50%; padding: 14px 14px; border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1); }
  .hg-counter-cell:first-child, .hg-counter-cell:nth-child(2) { border-top: 0; }
  .hg-stage-rail .labels { gap: 10px; }
  .hg-cursor { display: none; }
}
