/*
Theme Name: Charles Blain
Theme URI: https://charlesjblain.com
Author: Charles Blain
Author URI: https://charlesjblain.com
Description: Personal site for Charles Blain — writer, analyst, and civic watchdog.
Version: 1.0.0
License: Private
Text Domain: charlesjblain
*/

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #FAFAF8;
  color: #111;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── Typography ──────────────────────────────────────────────── */
.font-serif { font-family: 'EB Garamond', serif; }
.font-sans { font-family: 'Inter', -apple-system, system-ui, sans-serif; }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.container--mid { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.container--wide { max-width: 1000px; margin: 0 auto; padding: 0 40px; }

/* ── Navigation ──────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.35s;
}
.site-header.scrolled {
  background: rgba(250,250,248,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.site-header__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.site-header__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.site-header__brand img { height: 28px; width: auto; }
.site-header__brand span {
  font-family: 'EB Garamond', serif; font-size: 22px; font-weight: 500;
  color: #111; transition: color 0.3s;
}
.site-header__nav { display: flex; gap: 28px; }
.site-header__nav a {
  font-family: 'Inter'; font-size: 13px; font-weight: 400;
  color: #888; transition: color 0.2s;
}
.site-header__nav a:hover,
.site-header__nav a.active { color: #111; }
.site-header__hamburger {
  display: none; background: none; border: none;
  font-size: 22px; cursor: pointer; color: #111; transition: color 0.3s;
}
.site-header__mobile {
  display: none;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(24px);
  padding: 8px 40px 28px;
}
.site-header__mobile.open { display: block; }
.site-header__mobile a {
  display: block; font-family: 'Inter'; font-size: 16px; color: #888;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-header__mobile a.active { color: #111; }

/* Hero on home — nav text should be white */
body.page-home .site-header:not(.scrolled) .site-header__brand span {
  color: #fff; font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5), 0 0 2px rgba(0,0,0,0.3);
}
body.page-home .site-header:not(.scrolled) .site-header__nav a { color: rgba(255,255,255,0.8); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
body.page-home .site-header:not(.scrolled) .site-header__nav a.active { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
body.page-home .site-header:not(.scrolled) .site-header__hamburger { color: #fff; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.85);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(17,43,75,0.35) 55%, rgba(0,0,0,0.28) 100%);
}
.hero__content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 0 40px 72px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
}
.hero__content.visible { opacity: 1; transform: none; }
.hero__title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(40px, 6vw, 76px); font-weight: 500;
  color: #fff; line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 20px; max-width: 700;
}
.hero__subtitle {
  font-family: 'Inter'; font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.7); line-height: 1.6;
  max-width: 480px; margin: 0 0 32px;
}
.hero__buttons { display: flex; gap: 12px; }
.btn-primary {
  font-family: 'Inter'; font-size: 14px; font-weight: 500;
  padding: 14px 32px; background: #fff; color: #111;
  border: none; cursor: pointer; display: inline-block;
}
.btn-outline {
  font-family: 'Inter'; font-size: 14px; font-weight: 500;
  padding: 14px 32px; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.35); cursor: pointer;
  display: inline-block;
}

/* ── Publications Strip ──────────────────────────────────────── */
.pub-strip {
  padding: 32px 40px; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pub-strip__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.pub-strip__name + .pub-strip__name::before {
  content: '\00b7'; margin-right: 32px; color: #ccc;
}
.pub-strip__name {
  font-family: 'EB Garamond', serif; font-size: 17px;
  font-weight: 400; color: #aaa; font-style: italic;
}

/* ── Section Headers ─────────────────────────────────────────── */
.section-label {
  font-family: 'Inter'; font-size: 13px; font-weight: 400;
  color: #999; margin: 0 0 8px;
}
.section-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 500;
  color: #111; margin: 0;
}

/* ── Clothesline Timeline ────────────────────────────────────── */
.clothesline { position: relative; max-width: 900px; margin: 0 auto; }
.clothesline__line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: rgba(0,0,0,0.08);
  transform: translateX(-50%);
}
.clothesline__item {
  display: grid; grid-template-columns: 1fr 40px 1fr;
  gap: 0; position: relative; align-items: center;
}
.clothesline__item--featured { margin-bottom: 64px; }
.clothesline__item--regular { margin-bottom: 48px; }
.clothesline__photo {
  transition: transform 0.4s ease; cursor: pointer;
  transform-origin: top center;
}
.clothesline__photo--left { transform: rotate(-1.5deg); }
.clothesline__photo--right { transform: rotate(1.5deg); }
.clothesline__photo:hover {
  animation: clothesline-swing 1.2s ease-in-out;
}
@keyframes clothesline-swing {
  0% { transform: rotate(-1.5deg); }
  20% { transform: rotate(3deg); }
  40% { transform: rotate(-2.5deg); }
  60% { transform: rotate(1.8deg); }
  80% { transform: rotate(-1deg); }
  100% { transform: rotate(-1.5deg); }
}
.clothesline__pin-wire {
  width: 2px; height: 28px; background: rgba(0,0,0,0.25);
  margin: 0 auto 0;
}
.clothesline__pin-head {
  width: 10px; height: 10px; border-radius: 50%;
  background: #c43; border: 2px solid #a32;
  margin: -5px auto 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.clothesline__photo-frame {
  background: #fff; padding: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
}
.clothesline__photo-frame img {
  width: 100%; object-fit: cover; display: block;
}
.clothesline__photo-frame--featured img { height: 260px; }
.clothesline__photo-frame--regular img { height: 180px; }
.clothesline__placeholder {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e2 100%);
  text-align: center; padding: 24px 16px;
}
.clothesline__photo-frame--featured .clothesline__placeholder { height: 260px; }
.clothesline__photo-frame--regular .clothesline__placeholder { height: 180px; }
.clothesline__placeholder-pub {
  font-family: 'EB Garamond', serif; font-size: 18px; font-weight: 600; color: #555;
  letter-spacing: 0.02em;
}
.clothesline__placeholder-type {
  font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: #999; margin-top: 6px;
}
.clothesline__dot {
  display: flex; justify-content: center; align-items: center;
}
.clothesline__dot-inner {
  width: 10px; height: 10px; border-radius: 50%;
  z-index: 2;
}
.clothesline__dot-inner--featured {
  background: #111;
}
.clothesline__dot-inner--regular {
  background: rgba(0,0,0,0.12);
  border: 2px solid rgba(0,0,0,0.06);
}
.clothesline__meta {
  padding: 0 24px;
}
.clothesline__date {
  font-family: 'Inter'; font-size: 11px; font-weight: 400;
  color: #bbb; margin: 0 0 6px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.clothesline__pub {
  font-family: 'Inter'; font-size: 11px; font-weight: 500;
  color: #999; margin: 0 0 8px; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.clothesline__title {
  font-family: 'EB Garamond', serif; font-weight: 500;
  color: #111; line-height: 1.3; margin: 0 0 8px;
}
.clothesline__title--featured { font-size: 26px; }
.clothesline__title--regular { font-size: 20px; }
.clothesline__excerpt {
  font-family: 'Inter'; font-size: 13px; font-weight: 300;
  color: #888; line-height: 1.55; margin: 0;
}

/* ── Photo Break ─────────────────────────────────────────────── */
.photo-break {
  position: relative; height: 50vh; min-height: 320px; overflow: hidden;
}
.photo-break img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Media Reel ──────────────────────────────────────────────── */
.media-reel { background: #111; color: #fff; }
.media-reel__inner { max-width: 1200px; margin: 0 auto; }
.media-reel__slideshow {
  position: relative; overflow: hidden; height: 380px;
}
.media-reel__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.media-reel__slide.active { opacity: 1; }
.media-reel__slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; filter: brightness(0.7);
}
/* Legacy fallback */
.media-reel__hero {
  position: relative; overflow: hidden; height: 380px;
}
.media-reel__hero img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.7; display: block;
}
.media-reel__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5), transparent 50%);
}
.media-reel__hero-content {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.media-reel__play {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
}
.media-reel__play span { font-size: 20px; margin-left: 3px; color: #111; }
.media-reel__label {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px;
}
.media-reel__heading {
  font-family: 'EB Garamond', serif; font-size: 28px; font-weight: 500; color: #fff; line-height: 1.2;
}
.media-reel__wyp {
  padding: 20px 48px; border: 1px solid rgba(255,255,255,0.1);
  margin: 0 48px 40px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.media-reel__wyp-label {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 6px;
}
.media-reel__wyp-title {
  font-family: 'EB Garamond', serif; font-size: 24px; font-weight: 500; margin: 0;
}
.media-reel__wyp-sub {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.5); margin-top: 4px;
}
.media-reel__wyp-since {
  font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.35);
}
.media-reel__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.06);
}
.media-reel__hit {
  background: #111; padding: 28px 24px; transition: background 0.2s;
}
.media-reel__hit:hover { background: rgba(255,255,255,0.03); }
.media-reel__hit-meta {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.3); letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 10px;
}
.media-reel__hit-show {
  font-family: 'EB Garamond', serif; font-size: 20px; font-weight: 500; line-height: 1.3; margin: 0 0 6px;
}
.media-reel__hit-net {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.4); margin: 0;
}
@media (max-width: 640px) {
  .media-reel__grid { grid-template-columns: 1fr; }
  .media-reel__hero-content { left: 50%; }
  .media-reel__wyp { margin: 0 24px 40px; padding: 20px 24px; }
}

/* ── Video Links ────────────────────────────────────────────── */
.video-links { padding: 80px 40px; background: #FAFAF8; }
.video-links__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.video-links__item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none; color: inherit;
  transition: all 0.2s ease;
}
.video-links__item:hover {
  background: #111; color: #fff;
  border-color: #111;
}
.video-links__item:hover .video-links__meta { color: rgba(255,255,255,0.5); }
.video-links__icon {
  font-size: 14px; color: #c43;
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s;
}
.video-links__item:hover .video-links__icon { color: #fff; }
.video-links__show {
  font-family: 'EB Garamond', serif; font-size: 18px;
  font-weight: 500; margin: 0 0 2px; line-height: 1.3;
}
.video-links__meta {
  font-family: 'Inter'; font-size: 12px; font-weight: 300;
  color: #999; margin: 0; transition: color 0.2s;
}

/* ── About Page — Photo Mural ──────────────────────────────── */
.about-mural {
  position: relative; min-height: 420px;
  margin: 60px 0 40px; overflow: visible;
}
.about-mural__photo {
  position: absolute;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  border: 4px solid #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.about-mural__photo:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  z-index: 10;
}
.about-mural__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-mural__photo:nth-child(1) {
  width: 300px; height: 220px; top: 0; left: 5%;
  transform: rotate(-3deg); z-index: 3;
}
.about-mural__photo:nth-child(2) {
  width: 260px; height: 180px; top: 20px; left: 38%;
  transform: rotate(2deg); z-index: 2;
}
.about-mural__photo:nth-child(3) {
  width: 280px; height: 200px; top: 40px; right: 5%;
  transform: rotate(-1.5deg); z-index: 4;
}
.about-mural__photo:nth-child(4) {
  width: 240px; height: 170px; top: 220px; left: 15%;
  transform: rotate(3.5deg); z-index: 1;
}
.about-mural__photo:nth-child(5) {
  width: 270px; height: 190px; top: 200px; right: 20%;
  transform: rotate(-2.5deg); z-index: 2;
}
@media (max-width: 768px) {
  .about-mural {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; min-height: auto;
  }
  .about-mural__photo {
    position: relative !important; top: auto !important;
    left: auto !important; right: auto !important;
    width: 100% !important; height: 180px !important;
    transform: none !important;
  }
}

/* ── Book Section ────────────────────────────────────────────── */
.book-section {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.book-section__cover {
  width: clamp(160px, 18vw, 240px); aspect-ratio: 2/3;
  background: linear-gradient(165deg, #2a2720, #1a1915);
  box-shadow: 12px 16px 48px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.06);
}
.book-section__cover-inner {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; height: 100%; padding: 28px; text-align: center;
}
.book-section__cover-title {
  font-family: 'EB Garamond', serif; font-size: clamp(18px, 2vw, 26px);
  font-weight: 500; color: #e8e0d0; line-height: 1.2; margin-bottom: 12px;
}
.book-section__cover-line {
  width: 32px; height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 12px;
}
.book-section__cover-author {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase;
}
.book-section__pub-info {
  font-family: 'Inter', sans-serif; font-size: 12px; color: #999;
  margin: 0 0 16px; letter-spacing: 0.06em; text-transform: uppercase;
}
.book-section__title {
  font-family: 'EB Garamond', serif; font-size: clamp(30px, 4vw, 50px);
  font-weight: 500; margin: 0 0 20px; line-height: 1.1; color: #111;
}
.book-section__desc {
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 300;
  color: #666; line-height: 1.7; max-width: 480px; margin: 0 0 32px;
}
.book-section__btn {
  display: inline-block; font-family: 'Inter', sans-serif; font-size: 14px;
  font-weight: 500; padding: 14px 32px; background: #111; color: #fff;
  border: none; cursor: pointer; text-decoration: none;
}
.book-section__btn:hover { background: #333; }
@media (max-width: 640px) {
  .book-section { grid-template-columns: 140px 1fr; gap: 28px; }
}

/* ── Newsletter ──────────────────────────────────────────────── */
.newsletter { padding: 80px 40px; background: #f3f2ee; }
.newsletter__inner {
  max-width: 560px; margin: 0 auto; text-align: center;
}
.newsletter__title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 500;
  color: #111; margin: 0 0 12px;
}
.newsletter__desc {
  font-family: 'Inter'; font-size: 15px; font-weight: 300;
  color: #666; line-height: 1.6; margin: 0 0 28px;
}
.newsletter__form {
  display: flex; gap: 0; max-width: 420px; margin: 0 auto;
}
.newsletter__input {
  flex: 1; padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.1); border-right: none;
  background: #fff; font-family: 'Inter'; font-size: 14px;
  font-weight: 300; color: #111; outline: none;
}
.newsletter__btn {
  font-family: 'Inter'; font-size: 14px; font-weight: 500;
  padding: 14px 24px; background: #111; color: #fff;
  border: none; cursor: pointer;
}

/* ── Page Headers (inner pages) ──────────────────────────────── */
.page-header {
  padding-top: 120px; margin-bottom: 48px;
}
.page-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 500;
  color: #111; margin: 0 0 8px;
}
.page-subtitle {
  font-family: 'Inter'; font-size: 15px; font-weight: 300;
  color: #999; margin: 0;
}
.page-subtitle a {
  color: #111; border-bottom: 1px solid #111; font-weight: 500;
}

/* ── Writing Page ────────────────────────────────────────────── */
.writing-item {
  padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.writing-item__meta {
  font-family: 'Inter'; font-size: 12px; font-weight: 400;
  color: #999; margin: 0 0 8px; letter-spacing: 0.03em;
  text-transform: uppercase;
}
.writing-item__title {
  font-family: 'EB Garamond', serif; font-size: 26px; font-weight: 500;
  color: #111; line-height: 1.3; margin: 0;
}
.writing-item__title a { color: #111; }
.writing-item__title a:hover { color: #333; }

/* ── Media Page ──────────────────────────────────────────────── */
.media-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.media-item__show {
  font-family: 'EB Garamond', serif; font-size: 22px; font-weight: 500;
  color: #111; margin: 0 0 4px;
}
.media-item__network {
  font-family: 'Inter'; font-size: 13px; font-weight: 300;
  color: #999; margin: 0;
}
.media-item__date {
  font-family: 'Inter'; font-size: 13px; font-weight: 300; color: #ccc;
}

/* ── About Page ──────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 48; align-items: start;
}
.about-bio p {
  font-family: 'Inter'; font-size: 17px; font-weight: 300;
  line-height: 1.8; color: #333; margin: 0 0 20px;
}
.about-bio em {
  font-family: 'EB Garamond', serif; font-weight: 500;
}
.about-citations {
  border-top: 1px solid rgba(0,0,0,0.06); padding-top: 32px;
  margin-top: 20px;
}
.about-citations__label {
  font-family: 'Inter'; font-size: 12px; font-weight: 400;
  color: #999; margin: 0 0 20px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-citation {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.about-citation__title {
  font-family: 'EB Garamond', serif; font-size: 18px; font-weight: 500;
  color: #111;
}
.about-citation__source {
  font-family: 'Inter'; font-size: 13px; font-weight: 300; color: #999;
}
.about-gallery {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.about-gallery img {
  width: 100%; height: 240px; object-fit: cover;
}

/* ── Contact Page ────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64;
}
.contact-intro {
  font-family: 'Inter'; font-size: 17px; font-weight: 300;
  line-height: 1.8; color: #555; margin: 0 0 36px;
}
.contact-links { display: flex; flex-direction: column; gap: 20; }
.contact-link {
  display: flex; gap: 16px; text-decoration: none;
}
.contact-link__label {
  font-family: 'Inter'; font-size: 13px; font-weight: 400;
  color: #bbb; width: 56px;
}
.contact-link__value {
  font-family: 'Inter'; font-size: 15px; font-weight: 400; color: #111;
}
.contact-form label {
  font-family: 'Inter'; font-size: 13px; font-weight: 400;
  color: #999; display: block; margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 0;
  border: none; border-bottom: 1px solid rgba(0,0,0,0.12);
  background: transparent; font-family: 'Inter'; font-size: 16px;
  font-weight: 300; color: #111; outline: none; box-sizing: border-box;
}
.contact-form textarea { resize: vertical; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form .form-group--message { margin-bottom: 28px; }
.btn-submit {
  font-family: 'Inter'; font-size: 14px; font-weight: 500;
  padding: 14px 40px; background: #111; color: #fff;
  border: none; cursor: pointer;
}

/* ── Archive Page ────────────────────────────────────────────── */
.archive-intro {
  font-family: 'Inter'; font-size: 16px; font-weight: 300;
  color: #888; margin: 0 0 56px; line-height: 1.6;
}
.archive-timeline {
  margin-bottom: 56px;
}
.archive-bars {
  display: flex; align-items: flex-end; gap: 3px;
  height: 140px; padding: 0 0 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.archive-bar {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  cursor: pointer; position: relative;
}
.archive-bar__count {
  position: absolute; top: -24px;
  font-family: 'Inter'; font-size: 12px; font-weight: 500;
  display: none;
}
.archive-bar:hover .archive-bar__count,
.archive-bar.active .archive-bar__count { display: block; }
.archive-bar.active .archive-bar__count { color: #111; }
.archive-bar:hover .archive-bar__count { color: #888; }
.archive-bar__fill {
  width: 100%; max-width: 60px;
  background: rgba(0,0,0,0.06); transition: all 0.2s ease;
}
.archive-bar:hover .archive-bar__fill { background: rgba(0,0,0,0.15); }
.archive-bar.active .archive-bar__fill { background: #111; }
.archive-years {
  display: flex; gap: 3px; margin-top: 8px;
}
.archive-year {
  flex: 1; text-align: center;
  font-family: 'Inter'; font-size: 11px; font-weight: 300;
  color: #bbb; cursor: pointer;
}
.archive-year.active { font-weight: 600; color: #111; }

/* Archive filters */
.archive-filters {
  display: flex; gap: 24px; margin-bottom: 40px;
  flex-wrap: wrap; align-items: center;
}
.archive-filter {
  display: flex; gap: 8px; align-items: center;
}
.archive-filter__label {
  font-family: 'Inter'; font-size: 12px; font-weight: 400; color: #999;
}
.archive-filter select {
  font-family: 'Inter'; font-size: 13px; font-weight: 400; color: #111;
  border: 1px solid rgba(0,0,0,0.1); background: #fff;
  padding: 8px 12px; outline: none;
}
.archive-clear {
  font-family: 'Inter'; font-size: 13px; font-weight: 500;
  color: #111; cursor: pointer; border-bottom: 1px solid #111;
  background: none; border-top: none; border-left: none; border-right: none;
  padding: 0;
}
.archive-count {
  font-family: 'Inter'; font-size: 13px; font-weight: 300;
  color: #bbb; margin-left: auto;
}

/* Archive results */
.archive-result {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
  cursor: pointer; transition: background 0.15s;
}
.archive-result:hover { background: rgba(0,0,0,0.02); }
.archive-result__year {
  font-family: 'Inter'; font-size: 12px; font-weight: 300; color: #ccc;
}
.archive-result__title {
  font-family: 'EB Garamond', serif; font-size: 18px; font-weight: 500;
  color: #111;
}
.archive-result__type {
  font-family: 'Inter'; font-size: 11px; font-weight: 400;
  color: #bbb; white-space: nowrap;
}
.archive-result__pub {
  font-family: 'Inter'; font-size: 11px; font-weight: 400;
  color: #ddd; white-space: nowrap; margin-left: 16px;
}
.archive-more {
  padding: 24px 0; text-align: center;
  font-family: 'Inter'; font-size: 14px; font-weight: 300; color: #999;
}

/* ── Single Work ─────────────────────────────────────────────── */
.single-work { padding-top: 60px; }
.single-work__hero {
  max-width: 900px; margin: 0 auto; padding: 0 40px;
}
.single-work__hero img {
  width: 100%; max-height: 480px; object-fit: cover;
}
.single-work__container {
  max-width: 720px; margin: 0 auto; padding: 48px 40px 80px;
}
.single-work__meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.single-work__pub {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: #111; letter-spacing: 0.06em; text-transform: uppercase;
}
.single-work__type {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 400;
  color: #999; letter-spacing: 0.04em; text-transform: uppercase;
  padding-left: 16px; border-left: 1px solid rgba(0,0,0,0.1);
}
.single-work__date {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 300;
  color: #bbb;
}
.single-work__title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(32px, 5vw, 48px); font-weight: 500;
  color: #111; line-height: 1.15; margin: 0 0 20px;
}
.single-work__original {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
  color: #999; margin: 0 0 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.single-work__original a {
  color: #111; font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  transition: border-color 0.2s;
}
.single-work__original a:hover { border-color: #111; }
.single-work__content p {
  font-family: 'EB Garamond', serif; font-size: 20px; font-weight: 400;
  line-height: 1.75; color: #222; margin: 0 0 24px;
}
.single-work__content blockquote {
  border-left: 3px solid #111; padding-left: 24px; margin: 32px 0;
  font-style: italic; color: #555;
}
.single-work__content h2, .single-work__content h3 {
  font-family: 'EB Garamond', serif; font-weight: 500;
  color: #111; margin: 40px 0 16px;
}
.single-work__cta {
  margin: 48px 0; padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
.single-work__cta-link {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  color: #111; display: inline-block; padding: 14px 36px;
  border: 1px solid #111; transition: all 0.2s;
}
.single-work__cta-link:hover { background: #111; color: #fff; }
.single-work__bio {
  margin: 48px 0; padding: 32px;
  background: #f5f5f0;
}
.single-work__bio p {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
  line-height: 1.7; color: #555; margin: 0;
}
.single-work__bio strong { font-weight: 600; color: #111; }
.single-work__nav {
  display: flex; justify-content: space-between; gap: 24px;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.single-work__nav-link {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400;
  color: #999; max-width: 45%; line-height: 1.5;
  transition: color 0.2s;
}
.single-work__nav-link:hover { color: #111; }
.single-work__nav-link--next { text-align: right; margin-left: auto; }
@media (max-width: 768px) {
  .single-work__hero { padding: 0; }
  .single-work__container { padding: 32px 24px 60px; }
  .single-work__content p { font-size: 18px; }
  .single-work__nav { flex-direction: column; }
  .single-work__nav-link { max-width: 100%; }
  .single-work__nav-link--next { text-align: left; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  padding: 32px 40px; border-top: 1px solid rgba(0,0,0,0.06);
}
.site-footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.site-footer__copy {
  font-family: 'Inter'; font-size: 12px; font-weight: 300; color: #bbb;
}
.site-footer__links { display: flex; gap: 24px; }
.site-footer__links a {
  font-family: 'Inter'; font-size: 12px; font-weight: 300;
  color: #bbb; text-decoration: none;
}
.site-footer__links a:hover { color: #111; }

/* ── Inner Page Sections ─────────────────────────────────────── */
.inner-section {
  padding-top: 120px; padding-bottom: 100px; min-height: 100vh;
}
.inner-section--short { min-height: auto; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header__nav { display: none; }
  .site-header__hamburger { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
  .clothesline__line { left: 24px !important; }
  .clothesline__item {
    grid-template-columns: 24px 24px 1fr !important;
  }
  .clothesline__item > div:first-child { display: none !important; }
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-right: 1px solid rgba(0,0,0,0.1); }
}

