:root {
  --bg: #f3f3ef;
  --panel: #ffffff;
  --text: #161719;
  --muted: rgba(22, 23, 25, 0.62);
  --accent: #8f9399;
  --line: rgba(22, 23, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #f7f7f4 0%, #efefea 100%);
}

.page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

.hero {
  display: block;
  min-height: calc(100vh - 96px);
}

.hero-photo {
  width: min(100%, 680px);
  min-height: 82vh;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(17, 18, 20, 0.2)),
    url("https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=1200&q=80");
  background-position: center 40%;
  background-size: cover;
  filter: grayscale(1);
  box-shadow: 0 24px 70px rgba(24, 27, 31, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .page {
    width: min(100% - 20px, 1200px);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    width: 100%;
    min-height: 64vh;
  }
}
