/* itinera.life — minimal splash: full-bleed photo, centred logomark above wordmark.
   Lockup proportions are locked to ratios measured from the design. */

:root {
  --navy: #1c3958;
  --teal: #4f9f99;
  --paper: #e6edec;
  --word-size: clamp(1.6rem, 7.16vw, 23vh);
  --mark-h: calc(var(--word-size) * 1.59);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100%;
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.stage {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: max(7vmin, env(safe-area-inset-top)) 6vw max(7vmin, env(safe-area-inset-bottom));
}
@supports (min-height: 100dvh) { .stage { min-height: 100dvh; } }

.stage__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
  z-index: 0;
}

.lockup {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: calc(var(--word-size) * 0.19);
  transform: translateY(-3.9vh);
}
.lockup__mark {
  height: var(--mark-h); width: auto;
  filter: drop-shadow(0 8px 22px rgba(20, 45, 60, 0.18));
}
.lockup__word {
  font-weight: 700;
  font-size: var(--word-size);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  white-space: nowrap;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.35);
}
.word__a { color: var(--navy); }
.word__b { color: var(--teal); }
