@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #FAF8F5;
  --text: #1C1C1A;
  --text-secondary: #6B6866;
  --accent: #C4975A;
  --surface: #F0EDE8;
  --border: #E5E0D8;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1100px;
  --nav-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Typography ── */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; }

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── Layout ── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* ── Navigation ── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent);
  transition: width 0.25s ease;
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--text); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--text);
  transition: all 0.3s ease;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  z-index: 99;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-mobile .nav-link {
  font-size: 0.95rem;
}

/* ── Buttons ── */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
}

.btn-primary:hover { background-color: #b5863f; }

.btn-outline {
  background-color: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

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

/* ── Hero ── */

.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.hero-name {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.hero-intro {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrap img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 3px;
}

/* ── Event Banner ── */

.event-section { padding: 0 0 5rem; }

.event-banner {
  background-color: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 3px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.event-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.event-meta {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ── Snapshot Cards ── */

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.snapshot-card {
  background-color: var(--surface);
  border-radius: 3px;
  padding: 2rem;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.snapshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.snapshot-card h3 { margin-bottom: 0.75rem; }

.snapshot-card p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.snapshot-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.snapshot-card:hover .snapshot-link { gap: 0.7rem; }

/* ── Page Header ── */

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

.page-header h1 { margin: 0.5rem 0 1rem; }

.page-header p {
  max-width: 520px;
  font-size: 1.05rem;
}

/* ── About ── */

.about-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  border-radius: 3px;
  margin-bottom: 4rem;
}

.about-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
}

.about-sidebar {
  border-top: 2px solid var(--accent);
  padding-top: 1.5rem;
}

.about-sidebar h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

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

.fact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}

.fact-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-text p:last-child { margin-bottom: 0; }

/* ── Work ── */

.work-list {
  margin-top: 3rem;
}

.work-entry {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.work-entry:first-child { border-top: 1px solid var(--border); }

.work-period {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.work-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.work-badge.current {
  background-color: #e8f4e8;
  color: #3d7a3d;
}

.work-badge.past {
  background-color: var(--surface);
  color: var(--text-secondary);
}

.work-badge.learning {
  background-color: #e8eef8;
  color: #2d52a0;
}

.work-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.work-body p {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

/* ── Ventures ── */

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.venture-card {
  background-color: var(--surface);
  border-radius: 3px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.venture-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.venture-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
}

.status-badge {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.status-badge.pivoting {
  background-color: #fef3e2;
  color: #a06b00;
}

.status-badge.upcoming {
  background-color: #e8eef8;
  color: #2d52a0;
}

.venture-card > p {
  font-size: 0.95rem;
  line-height: 1.8;
  flex: 1;
}

.venture-detail {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.venture-detail strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Contact ── */

.contact-body {
  max-width: 540px;
  margin-top: 3rem;
}

.contact-body > p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--surface);
  border-radius: 3px;
  transition: background-color 0.2s, transform 0.2s;
}

.contact-item:hover {
  background-color: #e8e3dc;
  transform: translateX(5px);
}

.contact-icon {
  width: 42px;
  height: 42px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* ── Footer ── */

footer {
  background-color: var(--surface);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

/* ── Responsive ── */

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

  .hero-intro {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions { justify-content: center; }

  .hero-image-wrap {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }

  .snapshot-grid { grid-template-columns: 1fr; }

  .about-body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .work-entry {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ventures-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 3rem 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links { justify-content: center; }
}
