/* =============================================================
   NAV — nav.css
   ============================================================= */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--space-lg);
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  height: var(--nav-h);
}

.nav-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}

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

/* Hamburger — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 22px;
  height: 1px;
  background: var(--gray);
  display: block;
  transition: all 0.3s;
}

/* Mobile dropdown */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 99;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  flex-direction: column;
  padding: 16px 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 14px var(--space-md);
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--accent);
}


/* =============================================================
   HERO — hero.css
   ============================================================= */

.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}

/* Left column */
.hero-l {
  padding: var(--space-xl) var(--space-lg);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(60px, 7.5vw, 116px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
}

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

.hero-foot {
  padding-top: 56px;
}

.hero-bio {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-bio span {
  color: var(--accent);
  font-weight: 600;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--rule);
  color: var(--gray);
  transition: border-color 0.2s, color 0.2s;
}

.pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Right column — photo fills the full column */
.hero-r {
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-photo-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(10%);
}

/* CTA bar pinned below photo */
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 40px;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
