:root {
  --bg: #f7f6f2;
  --ink: #141414;
  --muted: #5c5c56;
  --olive: #3f4a2e;
  --stage: #1a1a1a;
  --white: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Nav */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  justify-self: start;
}

.links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.links a {
  transition: color 0.2s var(--ease);
}

.links a:hover {
  color: var(--ink);
}

.cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #141414;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.2s var(--ease);
}

.cta:hover {
  transform: translateY(-1px);
  background: #000;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 1.25rem 0;
}

.hero h1 {
  font-family: "Newsreader", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(3.25rem, 8.5vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin: 0 auto 2.75rem;
  animation: rise 0.8s var(--ease) both;
}

.stage {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0 2.5rem;
  animation: rise 0.9s 0.12s var(--ease) both;
}

.stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  background: var(--stage);
  border-radius: 2rem;
  z-index: 0;
}

.photo {
  position: relative;
  z-index: 1;
  width: min(660px, 92%);
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(20, 20, 20, 0.28);
}

.photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 38%;
}

.caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  font-family: "Newsreader", "Times New Roman", serif;
  font-size: clamp(2.1rem, 5.5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: center;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.55),
    0 0 28px rgba(255, 255, 255, 0.35),
    0 0 48px rgba(255, 255, 255, 0.2),
    0 2px 12px rgba(0, 0, 0, 0.45);
}

/* About */
.about {
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.25rem;
  text-align: center;
  animation: rise 0.8s 0.2s var(--ease) both;
}

.label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.copy {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  padding: 1.85rem 1.5rem 2.35rem;
  margin-top: 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-brand {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}

.footer a:hover {
  color: var(--olive);
}

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

@media (max-width: 720px) {
  .nav {
    grid-template-columns: 1fr auto;
    row-gap: 0.85rem;
  }

  .links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: center;
    gap: 1.25rem;
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    margin-bottom: 1.75rem;
  }

  .stage::before {
    border-radius: 1.25rem;
  }

  .photo {
    border-radius: 1rem;
  }
}

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