:root {
  --bg: #0f1419;
  --paper: #eef2f6;
  --ink: #12151a;
  --mute: #5c6570;
  --accent: #1857b6;
  --line: #cfd8e3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Literata", serif;
  background: var(--bg);
  color: var(--paper);
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 5vw, 4rem);
  font-family: "Fraunces", serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0.75;
  animation: fade 1s ease both;
}

.nav a {
  color: var(--paper);
  text-decoration: none;
}

.hero {
  padding: 2rem clamp(1.25rem, 5vw, 4rem) 3rem;
  max-width: 900px;
  animation: rise 1s ease both;
}

.brand {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(4rem, 15vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--paper);
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  line-height: 1.2;
  max-width: 16ch;
  margin-bottom: 1rem;
  font-style: italic;
}

.sub {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 38ch;
  opacity: 0.72;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  font-family: "Fraunces", serif;
  color: #6ea8ff;
  text-decoration: none;
  font-size: 1.05rem;
  border-bottom: 1px solid #6ea8ff;
  padding-bottom: 0.15rem;
  transition: opacity 0.25s ease;
}

.cta:hover {
  opacity: 0.65;
}

.banner {
  margin: 0 clamp(1.25rem, 5vw, 4rem);
  height: clamp(200px, 32vw, 340px);
  overflow: hidden;
  animation: rise 1.1s 0.15s ease both;
}

.photo {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, transparent 30%, rgba(15, 20, 25, 0.35)),
    linear-gradient(120deg, #1a2433 0%, #2f4a6a 40%, #1f6feb 78%, #5ec8ff 100%);
  transform: scale(1.05);
  animation: ken 18s ease-in-out infinite alternate;
}

.essay {
  margin: 0;
  padding: 3.5rem clamp(1.25rem, 5vw, 4rem) 5rem;
  background: var(--paper);
  color: var(--ink);
}

.essay h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.drop {
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 62ch;
  margin-bottom: 1.25rem;
}

.cap {
  font-family: "Fraunces", serif;
  font-size: 3.4rem;
  float: left;
  line-height: 0.8;
  padding: 0.15rem 0.45rem 0 0;
  color: var(--accent);
}

.essay p {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 62ch;
  margin-bottom: 1.25rem;
  color: #2a3038;
}

blockquote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.35;
  max-width: 28ch;
  margin: 2.5rem 0 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent);
  color: var(--ink);
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 0.75; }
}

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

@keyframes ken {
  from { transform: scale(1.05) translateX(0); }
  to { transform: scale(1.12) translateX(-2%); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
