:root {
  --bg: #F5F1EE;
  --fg: #23201F;
  --accent: #EA0752;
  --accent-hover: #B4053F;
  --muted: #6B6462;
  --border: rgba(35, 32, 31, .12);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  color: var(--fg);
  font-family: 'Instrument Sans', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--fg);
  color: var(--bg);
}

.page {
  min-height: 100vh;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
}

/* Nav */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 28px clamp(20px, 5vw, 72px) 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Main */

.main {
  flex: 1;
  padding: clamp(48px, 10vh, 130px) clamp(20px, 5vw, 72px) clamp(40px, 7vh, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(48px, 8vh, 100px);
}

.intro {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 36px);
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: poru-fade .8s .6s both;
}

.logo {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-stretch: 125%;
  font-weight: 900;
  font-size: clamp(96px, 23.5vw, 440px);
  line-height: .82;
  letter-spacing: -0.05em;
  color: var(--accent);
  display: flex;
  white-space: nowrap;
}

.logo .letter,
.logo .dot {
  display: inline-block;
}

.logo .letter {
  animation: poru-drop .7s cubic-bezier(.2, .8, .2, 1) both;
}

.logo .letter:nth-child(2) { animation-delay: .07s; }
.logo .letter:nth-child(3) { animation-delay: .14s; }
.logo .letter:nth-child(4) { animation-delay: .21s; }

.logo .dot {
  animation: poru-dot .9s .5s cubic-bezier(.3, .9, .3, 1) both;
}

.tagline-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  animation: poru-fade .8s .8s both;
}

.tagline {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-stretch: 112%;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.word {
  display: inline-block;
  color: var(--accent);
  animation: poru-word .5s cubic-bezier(.2, .8, .2, 1) both;
}

/* Footer */

.footer {
  padding: 26px clamp(20px, 5vw, 72px) 34px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer .brand {
  font-family: 'Archivo', sans-serif;
  font-stretch: 118%;
  font-weight: 900;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.03em;
}

/* Animations */

@keyframes poru-drop {
  from { opacity: 0; transform: translateY(.35em); }
  to { opacity: 1; transform: none; }
}

@keyframes poru-dot {
  0% { transform: translateY(-1.2em); }
  60% { transform: translateY(0); }
  75% { transform: translateY(-.12em); }
  100% { transform: translateY(0); }
}

@keyframes poru-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes poru-word {
  from { opacity: 0; transform: translateY(.25em); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow,
  .logo .letter,
  .logo .dot,
  .tagline-row,
  .word {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
