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

/* ── Base ── */
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #000;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header / Nav ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links a { transition: opacity .2s; }
.nav-links a:hover { opacity: .5; text-decoration: none; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #000;
  min-width: 160px;
  padding: 8px 0;
  list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.dropdown-menu li a:hover { background: #f5f5f5; text-decoration: none; }
.dropdown:hover .dropdown-menu { display: block; }

/* Social icons in nav */
.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-social a svg { width: 16px; height: 16px; transition: opacity .2s; }
.nav-social a:hover svg { opacity: .5; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #000;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #000;
  padding: 24px 40px;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px 80px;
  border-bottom: 1px solid #000;
}
.hero h1 {
  font-size: clamp(60px, 10vw, 120px);
  letter-spacing: -.02em;
}
.hero .subtitle {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: .6;
}

/* ── Two Passions ── */
.passions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #000;
}
.passion-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -.01em;
  transition: background .2s;
  border-right: 1px solid #000;
  cursor: pointer;
}
.passion-item:last-child { border-right: none; }
.passion-item:hover { background: #000; color: #fff; text-decoration: none; }

/* ── Bio strip ── */
.bio-strip {
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.bio-strip h2 {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 16px;
}
.bio-strip p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

/* ── Page Header ── */
.page-header {
  padding: 80px 40px 60px;
  border-bottom: 1px solid #000;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(60px, 9vw, 110px);
  letter-spacing: -.02em;
}
.page-header .tagline {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: .55;
}

/* ── Content sections ── */
.section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}
.section:last-child { border-bottom: none; }

.section-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
  opacity: .5;
}

/* Experience list */
.exp-list { display: flex; flex-direction: column; gap: 40px; }

.exp-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 2px;
}
.exp-item .role {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}
.exp-item .dates {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}
.exp-item ul {
  padding-left: 20px;
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #eee;
}
.portfolio-item {
  padding: 28px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.portfolio-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid #eee; }
.portfolio-item:nth-child(even) { padding-left: 40px; }

.portfolio-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
}
.portfolio-item h4 a:hover { text-decoration: underline; }
.portfolio-item .year {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  letter-spacing: .05em;
}

/* ── About page ── */
.fabulous-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  border-bottom: 1px solid #000;
  gap: 4px;
}
.fabulous-list h2 {
  font-size: clamp(24px, 4vw, 44px);
  text-align: center;
  font-style: italic;
  font-weight: 400;
}

.about-bio {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 40px;
}
.about-bio h2 {
  font-size: 32px;
  margin-bottom: 24px;
}
.about-bio p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 16px;
}

/* Skills grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.skill-tag {
  padding: 10px 16px;
  border: 1px solid #000;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}

/* Certifications */
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.cert-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Published page ── */
.published-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.article-item {
  padding: 36px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-item:nth-child(odd) { padding-right: 48px; border-right: 1px solid #eee; }
.article-item:nth-child(even) { padding-left: 48px; }
.article-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
}
.article-item h3 a:hover { text-decoration: underline; }
.article-item .tag {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
}

/* ── Footer ── */
footer {
  border-top: 1px solid #000;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-social { display: flex; gap: 20px; }
.footer-social a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-social { display: none; }
  .nav-hamburger { display: flex; }

  .passions { grid-template-columns: 1fr; }
  .passion-item { border-right: none; border-bottom: 1px solid #000; padding: 60px 24px; }
  .passion-item:last-child { border-bottom: none; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .portfolio-item:nth-child(even) { padding-left: 0; }

  .published-grid { grid-template-columns: 1fr; }
  .article-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .article-item:nth-child(even) { padding-left: 0; }

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

  .hero { padding: 70px 24px 60px; }
  .page-header { padding: 60px 24px 40px; }
  .bio-strip, footer { padding: 40px 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }

  .mobile-nav { padding: 24px; }
}
