:root {
  --gold: #c9944a;
  --gold-dark: #a87832;
  --cream: #f5f0e8;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --line: #e6dfd2;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.site-logo strong { color: var(--gold-dark); font-weight: normal; }
.site-cta {
  background: var(--gold);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.site-cta:hover { background: var(--gold-dark); color: #fff; }

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

main.wide {
  max-width: 960px;
}

.kicker {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: normal;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: normal;
  margin: 56px 0 20px;
  color: var(--ink);
}

h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 36px 0 16px;
}

p { margin: 0 0 20px; }

.lede {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

ul, ol { padding-left: 24px; margin: 0 0 24px; }
li { margin-bottom: 8px; }

blockquote {
  margin: 32px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--gold);
  background: #fff;
  font-style: italic;
  color: var(--ink-soft);
}

figure {
  margin: 32px 0;
  padding: 0;
}
figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: #eee;
}
figure figcaption {
  margin-top: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
}
figure figcaption .credit {
  font-style: normal;
  font-size: 12px;
  color: #888;
  display: block;
  margin-top: 4px;
}
figure figcaption .credit a { color: #888; }

.hero-figure {
  margin: 0 0 32px;
}
.hero-figure img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hero-figure.painting {
  text-align: center;
}
.hero-figure.painting img {
  aspect-ratio: auto;
  width: auto;
  max-width: 420px;
  max-height: 600px;
  margin: 0 auto;
  background: var(--cream);
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 64px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}
.article-nav a {
  display: block;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.article-nav a:hover {
  border-color: var(--gold);
  background: #fafafa;
}
.article-nav .nav-label {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.article-nav .nav-title {
  display: block;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
}
.article-nav .nav-next { text-align: right; }
@media (max-width: 600px) {
  .article-nav { grid-template-columns: 1fr; gap: 12px; }
  .article-nav .nav-next { text-align: left; }
}

.cta-block {
  margin: 56px 0 0;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
}
.cta-block h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-family: Georgia, serif;
  font-weight: normal;
}
.cta-block p { font-size: 16px; color: var(--ink-soft); margin: 0 0 20px; }
.cta-button {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.cta-button:hover { background: var(--gold-dark); color: #fff; }

.byline {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.sources {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}
.sources h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--ink);
}
.sources ol { padding-left: 20px; }
.sources li { margin-bottom: 8px; }

.share-block {
  margin-top: 56px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
}
.share-block h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--ink-soft);
}
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.share-btn:hover { background: var(--cream); border-color: var(--gold); color: var(--gold-dark); }
.share-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.share-btn.copied { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ─── OLD article list (kept for fallback) ─────────────────── */
.article-list { list-style: none; padding: 0; margin: 0; }
.article-list li {
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.article-list li:last-child { border-bottom: none; }
.article-list a { text-decoration: none; color: var(--ink); }
.article-list h3 {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: 24px;
  margin: 0 0 8px;
  line-height: 1.3;
}
.article-list a:hover h3 { color: var(--gold-dark); }
.article-list p { font-size: 16px; color: var(--ink-soft); margin: 0; }
.article-list .date {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

/* ─── PRESS INDEX — media room ───────────────────────────────── */

.masthead {
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 24px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.masthead-title {
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 6px;
  font-weight: normal;
}
.masthead-tagline {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: normal;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.masthead-meta {
  text-align: right;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.8;
  flex-shrink: 0;
}
.masthead-meta strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  margin-bottom: 2px;
}

.topics-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.topic-pill {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  text-decoration: none;
  cursor: default;
}
.topic-pill.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Featured story */
.featured-story {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
  transition: box-shadow 0.2s;
}
.featured-story:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); border-color: var(--gold); }
.featured-story img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}
.featured-story-body {
  padding: 28px 32px 32px;
}
.featured-story-kicker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.featured-story-kicker::before {
  content: "FEATURED";
  background: var(--gold);
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.featured-story h2 {
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.25;
  font-weight: normal;
  color: var(--ink);
  margin: 0 0 14px;
}
.featured-story p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 18px;
}
.featured-story-meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
}
.featured-story:hover h2 { color: var(--gold-dark); }

/* Article grid */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.article-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.article-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-color: var(--gold); }
.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.article-card-body {
  padding: 20px 22px 24px;
}
.article-card-tag {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: block;
}
.article-card h3 {
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.3;
  font-weight: normal;
  color: var(--ink);
  margin: 0 0 10px;
}
.article-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 14px;
}
.article-card-meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  color: #999;
}
.article-card:hover h3 { color: var(--gold-dark); }

/* ─── Reference guides strip ────────────────────────────────── */
.ref-section-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 32px 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ref-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.ref-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
}
.ref-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 20px 18px 22px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.ref-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: var(--gold); }
.ref-card-icon { font-size: 26px; margin-bottom: 10px; display: block; line-height: 1; }
.ref-card-title {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: normal;
  color: var(--ink);
  margin: 0 0 7px;
  line-height: 1.3;
}
.ref-card-desc {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.ref-card:hover .ref-card-title { color: var(--gold-dark); }
.ref-card-arrow {
  display: inline-block;
  margin-top: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .ref-strip {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ref-strip .ref-card {
    flex-shrink: 0;
    width: 210px;
    scroll-snap-align: start;
  }
}

/* Divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}

/* Syndication block */
.syndication-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 8px;
}
.syndication-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.syndication-intro {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 20px;
  line-height: 1.6;
}
.syndication-intro a { color: var(--gold-dark); }

.platform-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.platform-list li {
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.platform-list li:last-child { border-bottom: none; }
.platform-list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.15s;
}
.platform-list a:hover { color: var(--gold-dark); }
.pl-tag {
  flex-shrink: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,148,74,0.1);
  border: 1px solid rgba(201,148,74,0.3);
  border-radius: 3px;
  padding: 2px 7px;
  white-space: nowrap;
}
.pl-title {
  flex: 1;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.4;
}
.pl-arrow {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gold-dark);
  opacity: 0.5;
}
.platform-list a:hover .pl-arrow { opacity: 1; }

/* Inline float photos — editorial style */
.img-right {
  float: right;
  width: 260px;
  margin: 4px 0 24px 32px;
  clear: right;
}
.img-left {
  float: left;
  width: 240px;
  margin: 4px 32px 24px 0;
  clear: left;
}
.img-center {
  display: block;
  width: 360px;
  max-width: 100%;
  margin: 32px auto;
  clear: both;
}
.img-right img,
.img-left img,
.img-center img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #eee;
}
.img-right figcaption,
.img-left figcaption,
.img-center figcaption {
  margin-top: 7px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.4;
}
.clearfix::after { content: ""; display: table; clear: both; }

/* Hero and full-width article images */
.img-hero {
  display: block;
  width: 100%;
  margin: 28px 0 36px;
  clear: both;
}
.img-hero img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}
.img-hero figcaption {
  margin-top: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.4;
}
.img-full {
  display: block;
  width: 100%;
  margin: 32px 0;
  clear: both;
}
.img-full img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #eee;
}
.img-full figcaption {
  margin-top: 7px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .img-right, .img-left { float: none; width: 100%; margin: 24px 0; }
  .img-center { width: 100%; }
}

/* Collaboration card */
.collab-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.collab-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  background: var(--line);
}
.collab-img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #eee;
}
.collab-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.collab-img-wrap:hover img { transform: scale(1.03); }
.collab-body {
  padding: 24px 28px 28px;
}
.collab-tag {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px;
}
.collab-name {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  color: var(--ink);
  margin: 0 0 10px;
}
.collab-desc {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .collab-images { grid-template-columns: 1fr 1fr; }
  .collab-images .collab-img-wrap:last-child { display: none; }
  .collab-body { padding: 20px; }
}

/* Media inquiries */
.media-inquiries {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 32px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.media-inquiries-text h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  color: #fff;
  margin: 0 0 8px;
}
.media-inquiries-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.5;
}
.media-inquiries-cta {
  flex-shrink: 0;
  background: var(--gold);
  color: #fff;
  padding: 13px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.media-inquiries-cta:hover { background: var(--gold-dark); color: #fff; }

/* Author card */
.author-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 0 0 8px;
}
.author-name {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 12px;
}
.author-location { color: var(--ink-soft); }
.author-headline {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.35;
  margin: 0 0 12px;
  color: var(--ink);
}
.author-bio {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.author-link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
}
.author-link:hover { color: var(--gold); }

.section-desc {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.section-desc a { color: var(--gold-dark); }

.empty-state {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 32px 24px;
  margin-top: 80px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}
.site-footer a { color: var(--ink-soft); margin: 0 12px; }

@media (max-width: 700px) {
  body { font-size: 17px; }
  h1 { font-size: 30px; }
  h2 { font-size: 22px; }
  .lede { font-size: 19px; }
  main { padding: 32px 20px 60px; }
  .site-cta { padding: 8px 14px; font-size: 13px; }

  .masthead { flex-direction: column; align-items: flex-start; gap: 12px; }
  .masthead-tagline { font-size: 26px; }
  .masthead-meta { text-align: left; }

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

  .featured-story-body { padding: 20px 20px 24px; }
  .featured-story h2 { font-size: 24px; }

  .media-inquiries { flex-direction: column; align-items: flex-start; }

  .syndication-block { padding: 24px 20px; }
  .author-card { padding: 24px 20px; }

  .social-follow { flex-direction: column; gap: 10px; }
}

/* Language switcher — dropdown nell'header */
.lang-dropdown {
  position: relative;
  margin-right: 10px;
  flex-shrink: 0;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.lang-trigger:hover { background: rgba(0,0,0,0.05); color: var(--ink); border-color: rgba(0,0,0,0.2); }
.lang-flag { font-size: 17px; line-height: 1; }
.lang-code { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; }
.lang-chevron { width: 13px; height: 13px; flex-shrink: 0; transition: transform 0.18s; stroke: currentColor; }
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  min-width: 110px;
  z-index: 200;
  overflow: hidden;
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.1s;
  cursor: pointer;
}
.lang-option:hover { background: var(--paper); color: var(--ink); }
.lang-option.active { color: var(--ink); background: rgba(0,0,0,0.04); cursor: default; }

/* Social follow block — sotto ogni articolo */
.social-follow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 0;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.social-follow-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
  flex-shrink: 0;
}
.social-follow-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}
.social-btn:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.social-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Li Chun note */
.lichun-note {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  background: rgba(201,148,74,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  margin: 24px 0 32px;
  line-height: 1.6;
}
.lichun-note strong { color: var(--gold-dark); }

/* ─── Hamburger nav drawer ───────────────────────────────────── */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 12px;
}
.hamburger-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 99;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-drawer-backdrop.open { display: block; }

body.nav-open { overflow: hidden; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -4px 0 40px rgba(0,0,0,0.14);
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-inner {
  padding: 20px 28px 48px;
}
.nav-drawer-close {
  display: block;
  margin-left: auto;
  margin-bottom: 20px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav-drawer-close:hover { background: var(--cream); color: var(--ink); }

.nav-drawer-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 28px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.nav-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-drawer-list li { margin: 0; }
.nav-drawer-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-family: Georgia, serif;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
  line-height: 1.35;
}
.nav-drawer-list li:last-child a { border-bottom: none; }
.nav-drawer-list a:hover { color: var(--gold-dark); }
.nav-drawer-icon { font-size: 18px; flex-shrink: 0; }

.nav-drawer-cta {
  display: block;
  margin-top: 36px;
  background: var(--gold);
  color: #fff;
  padding: 15px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s;
}
.nav-drawer-cta:hover { background: var(--gold-dark); color: #fff; }
