:root {
  color-scheme: light;
  --ink: #1a1d23;
  --muted: #6b7280;
  --accent: #2f6f5e;
  --accent-hover: #245a4b;
  --accent-ink: #ffffff;
  --border: #e5e7eb;
  --bg: #fafaf8;
  --card: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ─────────────────────────────────────────────── */

.hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
}

.hero-content {
  order: 2;
}

.hero-image {
  order: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 5rem 4rem;
    text-align: left;
  }

  .hero-content {
    order: 1;
    flex: 1;
    max-width: 34rem;
  }

  .hero-image {
    order: 2;
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .hero-photo {
    width: 320px;
    height: 400px;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  }
}

@media (min-width: 1100px) {
  .hero-photo {
    width: 380px;
    height: 475px;
  }
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.hero h1 {
  margin: 0.75rem 0 0.5rem;
  font-size: 2.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

@media (min-width: 860px) {
  .hero h1 {
    font-size: 3.25rem;
  }
}

.lede {
  font-size: 1.15rem;
  margin: 0 auto 0.75rem;
  max-width: 30rem;
  color: var(--muted);
}

@media (min-width: 860px) {
  .lede {
    margin-left: 0;
  }
}

.byline {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 2rem;
}

.cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s;
}

.cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cta-fallback {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.cta-fallback a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 2px;
}

.cta-fallback a:hover {
  color: var(--accent);
}

/* ── Sections ─────────────────────────────────────────── */

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 860px) {
  main {
    padding: 0 2rem;
  }
}

.section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.section h2 {
  font-size: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.section p {
  color: var(--ink);
}

.subtitle {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0 0 1.25rem;
}

.meta {
  font-size: 0.88rem;
  color: var(--muted);
}

.downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s;
}

.button:hover {
  background: var(--accent-hover);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.button.secondary:hover {
  background: rgba(47, 111, 94, 0.06);
}

.link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ── Press list ───────────────────────────────────────── */

.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.press-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--muted);
  margin: 1.75rem 0 0.75rem;
}

.press-heading:first-of-type {
  margin-top: 0;
}

.press-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.press-list li:last-child {
  border-bottom: none;
}

.press-list a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.press-list a:hover {
  text-decoration: underline;
  color: var(--accent);
}

.press-meta {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.press-empty {
  color: var(--muted);
  font-style: italic;
}

/* ── Contact & Form ───────────────────────────────────── */

.contact a {
  color: var(--accent);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 28rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 111, 94, 0.1);
}

.field textarea {
  resize: vertical;
}

.field-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

#contact-form button[type='submit'] {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  margin-top: 0.25rem;
}

.contact-status {
  margin: 0;
  font-size: 0.9rem;
}

.contact-status--success {
  color: var(--accent);
}

.contact-status--error {
  color: #b3261e;
}

/* ── Footer ───────────────────────────────────────────── */

footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 2.5rem 1.5rem 3rem;
}

footer a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 2px;
}

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