/* Design H — Dew & Moss
   Cool dewy palette: mist blue, dew white, fern green.
   Cormorant Garamond italic display + Inter body.
   Layout: asymmetric grid with circular image crops on alternating cards. */

:root {
  --mist:      #b8d4d4;
  --mist-deep: #92b8b8;
  --dew:       #f4f7f5;
  --dew-deep:  #e6ede9;
  --fern:      #4a6b56;
  --fern-dark: #2d4234;
  --ink:       #1f2622;
  --ink-soft:  #4a544c;
  --ink-faint: #8a948e;
  --line:      rgba(74, 107, 86, 0.18);
  --line-soft: rgba(74, 107, 86, 0.10);
  --display:   'Cormorant Garamond', Georgia, serif;
  --body:      'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--dew);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.wrap { max-width: 1260px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 740px; margin: 0 auto; padding: 0 40px; }

/* Header */
.site-header {
  padding: 24px 0;
  background: var(--dew);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background-color: rgba(244, 247, 245, 0.92);
}
.site-header .wrap {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--fern-dark);
  line-height: 1;
}
.brand-sub {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
  font-weight: 500;
}
.site-nav { display: flex; gap: 24px; align-items: center; }
.site-nav a {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}
.site-nav a:hover { color: var(--fern); }
.site-nav .issue {
  font-family: var(--display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 16px;
  color: var(--fern);
}

/* Home hero — asymmetric: text left, big circular image right */
.home-hero {
  padding: 80px 0 60px;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-hero .kicker {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 26px;
}
.home-hero h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 76px;
  line-height: 1.04;
  letter-spacing: -0.3px;
  color: var(--fern-dark);
  margin-bottom: 26px;
}
.home-hero .tagline {
  font-family: var(--display);
  font-style: normal;
  font-size: 21px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 36px;
  font-weight: 500;
}
.home-hero .scroll-hint {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.home-hero .hero-circle {
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin-left: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 70px -36px rgba(45, 66, 52, 0.5);
  background: var(--mist);
}
.home-hero .hero-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(1.04);
}

.cat-nav {
  background: var(--dew-deep);
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cat-nav .wrap {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 28px;
}
.cat-nav a {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fern);
  padding: 4px 0;
  position: relative;
}
.cat-nav a::after {
  content: ""; display: block;
  width: 0; height: 1px;
  background: var(--fern);
  transition: width 0.3s ease;
  margin-top: 4px;
}
.cat-nav a:hover::after { width: 100%; }

/* Category sections */
.cat-section { padding: 80px 0; }
.cat-section:nth-child(even of .cat-section) { background: rgba(184, 212, 212, 0.08); }

.cat-header {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 36px;
  align-items: end;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.cat-header .cat-number {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fern);
  font-weight: 600;
  align-self: end;
}
.cat-header .cat-header-text { text-align: center; }
.cat-header h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.06;
  color: var(--fern-dark);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.cat-header .cat-lede {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-style: italic;
  max-width: 520px;
  margin: 0 auto;
}
.cat-header .cat-see-all {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fern);
  border-bottom: 1px solid var(--fern);
  padding-bottom: 4px;
  font-weight: 600;
  align-self: end;
  text-align: right;
}

/* Asymmetric card grid — alternating round/square crops */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 50px;
}
.card {
  display: block;
  transition: transform 0.35s ease;
}
.card:hover { transform: translateY(-4px); }

.card-image {
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--mist);
}
.card:nth-child(odd) .card-image {
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.card:nth-child(odd) .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:nth-child(even) .card-image {
  border-radius: 4px;
}
.card:nth-child(even) .card-image img {
  width: 100%; height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-image img { transform: scale(1.04); }

.card-meta {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 10px;
  font-weight: 600;
}
.card:nth-child(odd) .card-meta { text-align: center; }
.card-meta .dot { color: var(--ink-faint); margin: 0 6px; }
.card-meta .date { color: var(--ink-faint); font-weight: 400; }

.card-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.14;
  color: var(--fern-dark);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.card:nth-child(odd) .card-title { text-align: center; }
.card-subhead {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.card:nth-child(odd) .card-subhead { text-align: center; max-width: 460px; margin: 0 auto; }

/* Article page */
.article-hero {
  padding: 70px 0 0;
  text-align: center;
}
.article-hero .badge-row {
  display: flex; justify-content: center; gap: 14px; align-items: center;
  margin-bottom: 26px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.article-hero .cat-badge {
  background: var(--fern);
  color: var(--dew);
  padding: 5px 14px;
  font-weight: 600;
}
.article-hero .date-badge { color: var(--ink-faint); }
.article-hero h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: -0.4px;
  max-width: 920px;
  margin: 0 auto 24px;
  color: var(--fern-dark);
}
.article-hero .subhead {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 22px;
  color: var(--ink-soft);
}
.article-hero .byline {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 50px;
}
.article-hero .byline .name { color: var(--fern); font-weight: 600; }

.article-hero-image {
  max-width: 880px;
  margin: 0 auto 60px;
  padding: 0 40px;
}
.article-hero-image figure {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 30px 80px -36px rgba(45, 66, 52, 0.5);
  background: var(--mist);
}
.article-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(1.04);
}

.article-body {
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.86;
  color: var(--ink);
}
.article-body p { margin-bottom: 24px; }
.article-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  float: left;
  font-size: 86px;
  line-height: 0.82;
  padding: 10px 16px 0 0;
  color: var(--fern);
  font-weight: 500;
}
.article-body h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.16;
  color: var(--fern-dark);
  margin: 54px 0 22px;
  letter-spacing: -0.3px;
}
.article-body blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.36;
  color: var(--fern);
  border: none;
  padding: 30px 0 30px 36px;
  margin: 44px 0;
  border-left: 2px solid var(--mist);
  position: relative;
}
.article-body figure { margin: 50px 0; text-align: center; }
.article-body figure img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.95) brightness(1.02);
}

.article-end {
  text-align: center;
  margin: 60px 0 20px;
  color: var(--mist-deep);
  font-size: 18px;
  letter-spacing: 14px;
}
.article-signoff {
  display: flex; align-items: center; gap: 22px;
  padding: 36px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin: 60px 0;
}
.article-signoff img {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-signoff .name {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--fern-dark);
}
.article-signoff .role {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-faint);
}

.related {
  padding: 70px 0 50px;
  border-top: 1px solid var(--line-soft);
  background: var(--dew-deep);
  margin-top: 50px;
}
.related-label {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fern);
  text-align: center;
  margin-bottom: 36px;
  font-weight: 600;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.related-card .related-image {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 240px;
  margin: 0 auto 16px;
  background: var(--mist);
}
.related-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.4s ease;
}
.related-card:hover img { transform: scale(1.04); }
.related-card .related-cat {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--fern);
  text-align: center;
  margin-bottom: 6px;
  font-weight: 600;
}
.related-card h4 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.22;
  color: var(--fern-dark);
  text-align: center;
  padding: 0 14px;
}

/* About */
.about-wrap { padding: 80px 0 90px; }
.about-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.about-hero .portrait {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 22px 60px -32px rgba(45, 66, 52, 0.5);
  background: var(--mist);
}
.about-hero .portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}
.about-hero .kicker {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 18px;
  font-weight: 600;
}
.about-hero h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.06;
  color: var(--fern-dark);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.about-hero .city {
  font-family: var(--body);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
}
.about-body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.84;
  color: var(--ink);
}
.about-body h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  margin: 44px 0 18px;
  color: var(--fern-dark);
  letter-spacing: -0.3px;
}
.about-body p { margin-bottom: 22px; }

/* Footer */
.site-footer {
  margin-top: 90px;
  padding: 60px 0 40px;
  border-top: 1px solid var(--line-soft);
  background: var(--dew);
  text-align: center;
}
.site-footer .footer-mark { margin: 0 auto 18px; width: 38px; height: 38px; }
.site-footer .footer-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--fern-dark);
}
.site-footer .footer-tagline {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-faint);
  margin: 8px 0 22px;
  font-style: italic;
}
.site-footer .footer-links {
  display: flex; justify-content: center; gap: 22px;
  margin-bottom: 18px;
}
.site-footer .footer-links a {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.site-footer .footer-links a:hover { color: var(--fern); }
.site-footer .copy {
  font-family: var(--body);
  font-size: 12px;
  color: var(--ink-faint);
  font-style: italic;
}

/* Responsive */
@media (max-width: 960px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-hero h1 { font-size: 50px; }
  .home-hero .hero-circle { max-width: 420px; margin: 0 auto; }
  .cat-header { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .cat-header .cat-see-all { text-align: center; justify-self: center; }
  .cat-header h2 { font-size: 40px; }
  .card-grid { grid-template-columns: 1fr; gap: 50px; }
  .card .card-image { max-width: 400px !important; }
  .article-hero h1 { font-size: 44px; }
  .article-hero-image figure { max-width: 480px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card .related-image { max-width: 280px; }
  .about-hero { grid-template-columns: 1fr; gap: 30px; }
  .about-hero .portrait { max-width: 320px; margin: 0 auto; }
  .about-hero h1 { font-size: 44px; }
}
@media (max-width: 600px) {
  .wrap, .wrap-narrow { padding: 0 22px; }
  .home-hero { padding: 50px 0 40px; }
  .home-hero h1 { font-size: 40px; }
  .home-hero .tagline { font-size: 18px; }
  .cat-section { padding: 60px 0; }
  .cat-header h2 { font-size: 34px; }
  .card-title { font-size: 26px; }
  .card:nth-child(even) .card-image img { height: 280px; }
  .article-hero h1 { font-size: 34px; }
  .article-hero .subhead { font-size: 18px; }
  .article-body { font-size: 16.5px; }
  .article-body h2 { font-size: 26px; }
  .article-body blockquote { font-size: 22px; padding-left: 22px; }
  .article-body p:first-of-type::first-letter { font-size: 64px; }
}
@media (max-width: 480px) {
  .home-hero h1 { font-size: 32px; }
  .cat-header h2 { font-size: 28px; }
  .article-hero h1 { font-size: 28px; }
  .article-hero .subhead { font-size: 17px; }
  .article-body h2 { font-size: 22px; }
  .site-nav { gap: 12px; }
  .site-nav a { font-size: 11px; letter-spacing: 1.2px; }
}
