/* ── Option A: Editorial Stack ───────────────────────────────────
   3-area grid: left text | right photo strip | bottom stats bar
──────────────────────────────────────────────────────────────── */

#page-home {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "left  right"
    "stats stats";
  min-height: calc(100vh - 58px);
  overflow: hidden;
}

/* ── Left: text content ─────────────────────────────────────── */
.hero-left {
  grid-area: left;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px;
  background: var(--warm-white);
  overflow: hidden;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,79,82,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Eyebrow ─────────────────────────────────────────────────── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--forest-light);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--forest-light);
  flex-shrink: 0;
}

/* ── Name ────────────────────────────────────────────────────── */
.hero-name {
  margin-bottom: 10px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero-name em {
  font-style: italic;
  color: var(--forest-mid);
}

/* ── Title ───────────────────────────────────────────────────── */
.hero-title {
  margin-bottom: 22px;
  color: var(--forest-light);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Bio ─────────────────────────────────────────────────────── */
.hero-bio {
  max-width: 420px;
  margin-bottom: 36px;
  color: var(--forest-deep);
  font-size: 14px;
  line-height: 1.85;
}

/* ── CTA buttons ─────────────────────────────────────────────── */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary {
  border: none;
  background: var(--forest-deep);
  color: #fff;
}
.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--stone);
  background: transparent;
  color: var(--forest-deep);
  font-weight: 400;
}
.btn-outline:hover {
  border-color: var(--forest-mid);
  color: var(--forest-mid);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px dashed var(--stone);
  background: transparent;
  color: var(--forest-mid);
}
.btn-ghost:hover {
  border-color: var(--forest-mid);
  border-style: solid;
  color: var(--forest-mid);
  transform: translateY(-1px);
}

/* ── Right: photo strip ──────────────────────────────────────── */
.hero-right {
  grid-area: right;
  position: relative;
  background: var(--forest-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

/* Subtle radial glow top-right */
.hero-right::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,121,111,0.22) 0%, transparent 60%);
  pointer-events: none;
}

/* Pill-shaped photo container — grows from bottom */
.hero-photo-pill {
  position: relative;
  width: 220px;
  height: 300px;
  border-radius: 110px 110px 0 0;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--forest-mid);
}

.hero-photo-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Fallback tint if no photo */
.hero-photo-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,74,64,0.3) 0%, transparent 60%);
  pointer-events: none;
}

/* Vertical links pinned to right edge */
.hero-vertical-links {
  position: absolute;
  top: 40px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.hero-link {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(181,203,168,0.45);
  text-decoration: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color 0.2s;
}

.hero-link:hover {
  color: rgba(181,203,168,0.9);
}

.hero-link-sep {
  width: 1px;
  height: 16px;
  background: rgba(181,203,168,0.15);
}

/* ── Stats bar: full width across bottom ─────────────────────── */
.hero-stats-bar {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(181,203,168,0.12);
  background: var(--forest-deep);
}

.hero-stat {
  padding: 22px 24px;
  text-align: center;
  border-right: 1px solid rgba(181,203,168,0.08);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(181,203,168,0.4);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  #page-home {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "left"
      "right"
      "stats";
  }

  /* Left: normal text layout, tighter padding */
  .hero-left {
    padding: 40px 28px 36px;
  }

  /* Right: horizontal band, links left + photo right */
  .hero-right {
    min-height: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 15px 0 0 28px;
    gap: 0;
  }

  .hero-right::before {
    display: none;
  }

  /* Smaller pill that sits in the band */
  .hero-photo-pill {
    width: 80px;
    height: 110px;
    border-radius: 40px 40px 0 0;
    flex-shrink: 0;
  }

  /* Links: single line with dot separators, on the left */
  .hero-vertical-links {
    position: static;
    flex-direction: row;
    writing-mode: horizontal-tb;
    align-items: center;
    gap: 10px;
    padding-bottom: 24px;
    flex-wrap: nowrap;
    order: 1;
  }

  .hero-photo-pill {
    order: 2;
    margin-right: 28px;
  }

  .hero-link {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 10px;
    color: rgba(181,203,168,0.6);
  }

  .hero-link-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(181,203,168,0.3);
  }

  /* Stats: 2×2 grid */
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { border-top: 1px solid rgba(181,203,168,0.08); }
  .hero-stat:nth-child(4) { border-top: 1px solid rgba(181,203,168,0.08); }
}