@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,500;9..144,700&family=Space+Grotesk:wght@300;400;500;600&display=swap");

:root {
  --bg: #f7f6f2;
  --ink: #0f0f10;
  --muted: #5f5f63;
  --line: #e1e1dc;
  --accent: #111;
  --card: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
  --font-sans: "Space Grotesk", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(0, 0, 0, 0.06), transparent 70%),
    linear-gradient(180deg, #f4f3ee 0%, #f7f6f2 100%);
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  margin: 12px 0 8px;
}

.subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 16px;
}

.intro {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: #2a2a2c;
}

.meta {
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero-photo {
  margin: 0;
  background: var(--card);
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 20px 60px var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: grayscale(100%) contrast(1.05);
}

.hero-photo figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

.section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  animation: rise 0.6s ease both;
}

.section:first-of-type {
  border-top: none;
  padding-top: 36px;
}

.section h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 12px;
}

.section p {
  margin: 0 0 12px;
  line-height: 1.65;
  color: #2a2a2c;
}

.list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 8px;
}

.list li {
  position: relative;
  padding-left: 18px;
  color: #2a2a2c;
}

.list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
}

.closing {
  padding-bottom: 0;
}

.cta {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.cta a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    order: -1;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 48px 18px 64px;
  }

  .intro {
    font-size: 16px;
  }
}
