/* Design F — Moss Balm Studio
   Forest-moss palette. Spectral display + DM Serif Text body.
   Layout: full-width vertical scroll feed with hero photos behind
   serif title overlays. Single-column reading flow, generous gaps. */

:root {
  --moss-deep:  #2d4a35;
  --moss-mid:   #4a6b56;
  --moss-pale:  #8aa792;
  --sage-cream: #e8e3d3;
  --bone:       #f5f1e3;
  --ink:        #1a1a1a;
  --ink-soft:   #3a3a35;
  --ink-faint:  #8a8270;
  --line:       rgba(45, 74, 53, 0.18);
  --line-soft:  rgba(45, 74, 53, 0.10);
  --display:    'Spectral', Georgia, serif;
  --body:       'DM Serif Text', Georgia, serif;
  --sans:       'Karla', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* Layout */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 40px; }

/* Header */
.site-header {
  padding: 26px 0;
  background: var(--moss-deep);
  color: var(--sage-cream);
  border-bottom: 1px solid rgba(232, 227, 211, 0.12);
}
.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; color: var(--sage-cream); }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand-text {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 1.1;
  color: var(--sage-cream);
}
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(232, 227, 211, 0.7);
  margin-top: 3px;
  font-weight: 500;
}
.site-nav { display: flex; gap: 24px; align-items: center; }
.site-nav a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(232, 227, 211, 0.82);
  transition: color 0.25s ease;
}
.site-nav a:hover { color: var(--bone); }
.site-nav .issue {
  font-family: var(--display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 14px;
  color: rgba(232, 227, 211, 0.6);
  font-weight: 400;
}

/* Home hero — full-bleed image with overlaid serif title */
.home-hero {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 560px;
  max-height: 820px;
  background: var(--moss-deep);
  overflow: hidden;
}
.home-hero .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.85);
}
.home-hero .hero-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 40px;
  color: var(--bone);
}
.home-hero .kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(245, 241, 227, 0.78);
  margin-bottom: 24px;
}
.home-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 74px;
  line-height: 1.04;
  letter-spacing: -0.6px;
  margin: 0 auto 22px;
  max-width: 920px;
}
.home-hero .tagline {
  font-family: var(--body);
  font-style: italic;
  font-size: 20px;
  max-width: 580px;
  margin: 0 auto;
  color: rgba(245, 241, 227, 0.85);
  line-height: 1.55;
}

/* Category nav strip */
.cat-nav {
  background: var(--sage-cream);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.cat-nav .wrap {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 28px;
}
.cat-nav a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--moss-deep);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.cat-nav a:hover { border-bottom-color: var(--moss-mid); }

/* Category sections — vertical scroll feed */
.cat-section { padding: 90px 0; }
.cat-section:nth-child(even of .cat-section) { background: var(--sage-cream); }

.cat-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  padding: 0 40px;
}
.cat-header .cat-number {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--moss-mid);
  margin-bottom: 16px;
}
.cat-header h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.08;
  color: var(--moss-deep);
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}
.cat-header .cat-lede {
  font-family: var(--body);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Card grid — single column scroll feed with full-width feature cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}
.card {
  display: block;
  transition: transform 0.4s ease;
}
.card:hover { transform: translateY(-3px); }
.card-image {
  margin-bottom: 26px;
  overflow: hidden;
  background: var(--moss-deep);
}
.card-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.card:hover .card-image img { transform: scale(1.03); }
.card-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--moss-mid);
  margin-bottom: 14px;
  font-weight: 600;
}
.card-meta .dot { margin: 0 8px; color: var(--ink-faint); }
.card-meta .date { color: var(--ink-faint); font-weight: 400; letter-spacing: 1.5px; }
.card-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: -0.3px;
  color: var(--moss-deep);
  margin-bottom: 14px;
}
.card-subhead {
  font-family: var(--body);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 640px;
}

/* Article page */
.article-hero {
  background: var(--moss-deep);
  color: var(--bone);
  padding: 70px 0 80px;
  text-align: center;
}
.article-hero .badge-row {
  display: flex; justify-content: center; gap: 14px; align-items: center;
  margin-bottom: 26px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}
.article-hero .cat-badge {
  background: var(--sage-cream);
  color: var(--moss-deep);
  padding: 5px 14px;
  font-weight: 600;
}
.article-hero .date-badge { color: rgba(245, 241, 227, 0.7); }
.article-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: -0.5px;
  max-width: 920px;
  margin: 0 auto 24px;
  padding: 0 40px;
}
.article-hero .subhead {
  font-family: var(--body);
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 22px;
  color: rgba(245, 241, 227, 0.88);
  padding: 0 40px;
}
.article-hero .byline {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(245, 241, 227, 0.7);
}
.article-hero .byline .name { color: var(--bone); font-weight: 500; }

.article-hero-image {
  width: 100%;
  margin-bottom: 60px;
}
.article-hero-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.article-body {
  font-family: var(--body);
  font-size: 18.5px;
  line-height: 1.92;
  color: var(--ink);
}
.article-body p { margin-bottom: 26px; }
.article-body p:first-of-type::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 82px;
  line-height: 0.82;
  padding: 10px 16px 0 0;
  color: var(--moss-deep);
  font-weight: 500;
}
.article-body h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.3px;
  color: var(--moss-deep);
  margin: 56px 0 24px;
}
.article-body h2::before {
  content: "❦";
  display: block;
  color: var(--moss-mid);
  font-size: 18px;
  margin-bottom: 18px;
  opacity: 0.7;
}
.article-body blockquote {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  line-height: 1.42;
  color: var(--moss-deep);
  border-left: 3px solid var(--moss-mid);
  background: var(--sage-cream);
  padding: 26px 30px;
  margin: 44px 0;
}
.article-body figure { margin: 50px 0; text-align: center; }
.article-body figure img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-end {
  text-align: center;
  margin: 60px 0 20px;
  color: var(--moss-mid);
  font-size: 18px;
  letter-spacing: 14px;
  opacity: 0.6;
}
.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;
  object-fit: cover;
  flex-shrink: 0;
}
.article-signoff .name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--moss-deep);
}
.article-signoff .role {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-faint);
}

.related {
  background: var(--sage-cream);
  padding: 70px 0 50px;
  margin-top: 50px;
}
.related-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss-mid);
  text-align: center;
  margin-bottom: 36px;
  font-weight: 600;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.related-card img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.4s ease;
}
.related-card:hover img { transform: scale(1.04); }
.related-card .related-cat {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--moss-mid);
  margin: 14px 0 6px;
  font-weight: 600;
}
.related-card h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.22;
  color: var(--moss-deep);
}

/* About page */
.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 img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-hero .kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--moss-mid);
  margin-bottom: 18px;
  font-weight: 600;
}
.about-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 54px;
  line-height: 1.1;
  color: var(--moss-deep);
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}
.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: 18px;
  line-height: 1.88;
  color: var(--ink);
}
.about-body h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 30px;
  margin: 44px 0 18px;
  color: var(--moss-deep);
}
.about-body h2::before {
  content: "❦";
  display: block;
  color: var(--moss-mid);
  font-size: 16px;
  margin-bottom: 14px;
  opacity: 0.7;
}
.about-body p { margin-bottom: 22px; }

/* Footer */
.site-footer {
  background: var(--moss-deep);
  color: var(--sage-cream);
  padding: 60px 0 36px;
  text-align: center;
  margin-top: 90px;
}
.site-footer .footer-mark { margin: 0 auto 18px; width: 36px; height: 36px; }
.site-footer .footer-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--bone);
}
.site-footer .footer-tagline {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: rgba(232, 227, 211, 0.7);
  margin: 8px 0 22px;
}
.site-footer .footer-links {
  display: flex; justify-content: center; gap: 22px;
  margin-bottom: 18px;
}
.site-footer .footer-links a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(232, 227, 211, 0.82);
  font-weight: 500;
}
.site-footer .footer-links a:hover { color: var(--bone); }
.site-footer .copy {
  font-family: var(--body);
  font-style: italic;
  font-size: 12px;
  color: rgba(232, 227, 211, 0.55);
}

/* Responsive */
@media (max-width: 960px) {
  .home-hero h1 { font-size: 48px; }
  .home-hero { height: 64vh; min-height: 460px; }
  .card-image img { height: 340px; }
  .card-title { font-size: 28px; }
  .cat-header h2 { font-size: 36px; }
  .article-hero h1 { font-size: 42px; }
  .article-hero-image img { height: 380px; }
  .related-grid { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; gap: 30px; }
  .about-hero h1 { font-size: 40px; }
}
@media (max-width: 600px) {
  .wrap, .wrap-narrow { padding: 0 22px; }
  .home-hero { height: 56vh; min-height: 380px; }
  .home-hero h1 { font-size: 36px; }
  .home-hero .tagline { font-size: 17px; }
  .cat-section { padding: 60px 0; }
  .card-grid { padding: 0 22px; gap: 50px; }
  .card-image img { height: 260px; }
  .card-title { font-size: 24px; }
  .article-hero h1 { font-size: 32px; }
  .article-hero .subhead { font-size: 18px; }
  .article-hero-image img { height: 280px; }
  .article-body { font-size: 17px; }
  .article-body p:first-of-type::first-letter { font-size: 60px; }
}
@media (max-width: 480px) {
  .home-hero h1 { font-size: 30px; }
  .cat-header h2 { font-size: 30px; }
  .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; }
}
