/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
}

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

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

/* ===== HEADER / NAV ===== */
.site-header {
  padding: 4vw 6vw 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title a {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-nav a:hover {
  opacity: 0.6;
}

.site-nav .social-link {
  display: flex;
  align-items: center;
}

.site-nav .social-link svg {
  width: 16px;
  height: 16px;
}

/* Hamburger menu (mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000;
  font-family: inherit;
}

.mobile-nav {
  display: none;
}

/* ===== HOME PAGE: MAIN CONTENT ===== */
.home-content {
  padding: 0 6vw;
}

/* Bio section: small photo + text side by side */
.bio-section {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.headshot {
  width: 160px;
}

.headshot img {
  width: 100%;
  height: auto;
}

.bio {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #000;
}

.bio p {
  margin-bottom: 1rem;
}

.bio em {
  font-style: italic;
}

.section-heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.awards-list {
  font-size: 0.9375rem;
  line-height: 2;
  color: #000;
}

/* Magazine covers: full-width standalone grid */
.covers-section {
  margin: 3rem 0;
}

.article-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.article-image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.article-image-link img {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.3s;
  object-fit: cover;
}

.article-image-link:hover img {
  opacity: 0.75;
}

/* Articles text below covers */
.articles-text {
  margin-top: 2rem;
}

.articles-text p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 1rem;
}

.articles-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.articles-text a:hover {
  opacity: 0.6;
}

.articles-text em {
  font-style: italic;
}

/* ===== SELECTED WORK PAGE ===== */
.page-content {
  padding: 2vw 6vw 6vw;
  max-width: 800px;
}

.work-list {
  list-style: none;
}

.work-item {
  margin-bottom: 1.25rem;
}

.work-item a {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}

.work-item a:hover {
  opacity: 0.6;
}

.work-title {
  font-style: italic;
}

.work-pub {
  font-style: normal;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
  padding: 2vw 6vw 6vw;
  max-width: 600px;
}

.contact-info {
  font-size: 0.9375rem;
  line-height: 2;
  color: #000;
}

.contact-info a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-info a:hover {
  opacity: 0.6;
}

.subscribe-section {
  margin-top: 3rem;
}

.subscribe-section h2 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.subscribe-section p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 1rem;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
}

.subscribe-form input[type="email"] {
  font-family: inherit;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  outline: none;
  width: 250px;
}

.subscribe-form input[type="email"]:focus {
  border-color: #000;
}

.subscribe-form button {
  font-family: inherit;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: opacity 0.2s;
}

.subscribe-form button:hover {
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header {
    padding: 6vw 6vw 3vw;
  }

  .site-nav .nav-link {
    display: none;
  }

  .site-nav .social-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 6vw 2rem;
    border-bottom: 1px solid #eee;
  }

  .mobile-nav a {
    font-size: 0.9375rem;
    color: #000;
    text-decoration: none;
  }

  .bio-section {
    display: block;
  }

  .headshot {
    float: left;
    width: 120px;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
  }

  .article-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input[type="email"] {
    width: 100%;
  }
}
